diff --git a/.all-contributorsrc b/.all-contributorsrc
index 1ed6c640862..0eb99269a34 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -5596,7 +5596,8 @@
"profile": "https://kevinjones.engineer",
"contributions": [
"code",
- "bug"
+ "bug",
+ "content"
]
},
{
@@ -5839,6 +5840,24 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "MiConnell",
+ "name": "Michael Connell",
+ "avatar_url": "https://avatars.githubusercontent.com/u/14168559?v=4",
+ "profile": "https://github.com/MiConnell",
+ "contributions": [
+ "content"
+ ]
+ },
+ {
+ "login": "amm98d",
+ "name": "Ahmed Mustafa Malik",
+ "avatar_url": "https://avatars.githubusercontent.com/u/39633205?v=4",
+ "profile": "https://github.com/amm98d",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/.github/ISSUE_TEMPLATE/suggest_wallet.md b/.github/ISSUE_TEMPLATE/suggest_wallet.md
index 384f76afbd8..85647b9a4ef 100644
--- a/.github/ISSUE_TEMPLATE/suggest_wallet.md
+++ b/.github/ISSUE_TEMPLATE/suggest_wallet.md
@@ -40,6 +40,14 @@ If it does complete the following information which we need to accurately list t
+**Does the wallet support layer 2 networks?**
+
+
+
+**Can the wallet be used with arbitrary Ethereum RPC endpoint?**
+
+
+
**Does the wallet have fiat on-ramps?**
diff --git a/README.md b/README.md
index cec4f34e4ea..e3ea0ec794f 100644
--- a/README.md
+++ b/README.md
@@ -1258,7 +1258,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Franco Victorio 📖 🐛
- Kevin Jones 💻 🐛
+ Kevin Jones 💻 🐛 🖋
Shubhankar Kanchan Gupta 🐛 💻
Vishvanathan K 📖
Alexander Gryaznov 🤔
@@ -1291,6 +1291,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Patrick Aljord 📖
decifer 🤔
aghArdeshir 💻
+ Michael Connell 🖋
+
+
+ Ahmed Mustafa Malik 💻
diff --git a/gatsby-config.js b/gatsby-config.js
index 5c1d4fc2251..83d7bb98bc2 100644
--- a/gatsby-config.js
+++ b/gatsby-config.js
@@ -59,28 +59,6 @@ module.exports = {
// dev: true,
},
},
- {
- resolve: `gatsby-plugin-lodash`,
- options: {
- disabledFeatures: [
- `shorthands`,
- `currying`,
- `caching`,
- `collections`,
- `exotics`,
- `guards`,
- `metadata`,
- `deburring`,
- `unicode`,
- `chaining`,
- `momoizing`,
- `coercions`,
- `flattening`,
- `paths`,
- `placeholders`,
- ],
- },
- },
// Sitemap generator (ethereum.org/sitemap.xml)
{
resolve: `gatsby-plugin-sitemap`,
diff --git a/gatsby-node.js b/gatsby-node.js
index a0fe6e79712..f4e7e4194f8 100644
--- a/gatsby-node.js
+++ b/gatsby-node.js
@@ -179,7 +179,7 @@ exports.onCreateNode = async ({ node, getNode, actions }) => {
}
const absolutePath = node.fileAbsolutePath
- const relativePathStart = absolutePath.indexOf("src/")
+ const relativePathStart = absolutePath.lastIndexOf("src/")
const relativePath = absolutePath.substring(relativePathStart)
// Boolean if page is outdated (most translated files are)
diff --git a/package.json b/package.json
index d9a24d201d7..feca6d0d60a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ethereum-org-website",
- "version": "3.1.1",
+ "version": "3.2.0",
"description": "Website of ethereum.org",
"main": "index.js",
"repository": "git@github.com:ethereum/ethereum-org-website.git",
@@ -25,7 +25,6 @@
"gatsby-plugin-gatsby-cloud": "^4.3.0",
"gatsby-plugin-image": "^2.0.0",
"gatsby-plugin-intl": "^0.3.3",
- "gatsby-plugin-lodash": "^5.0.0",
"gatsby-plugin-manifest": "^4.0.0",
"gatsby-plugin-matomo": "^0.9.0",
"gatsby-plugin-mdx": "^2.0.1",
diff --git a/src/components/Callout.js b/src/components/Callout.js
index 3e07a8c525c..1d0e36c77c0 100644
--- a/src/components/Callout.js
+++ b/src/components/Callout.js
@@ -1,7 +1,11 @@
+// Libraries
import React from "react"
import styled from "styled-components"
import { GatsbyImage } from "gatsby-plugin-image"
+// Components
+import Emoji from "../components/Emoji"
+
const StyledCard = styled.div`
display: flex;
flex-direction: column;
@@ -41,11 +45,20 @@ const Content = styled.div`
height: 100%;
`
-const Callout = ({ image, alt, title, description, children, className }) => (
+const Callout = ({
+ image,
+ emoji,
+ alt,
+ title,
+ description,
+ children,
+ className,
+}) => (
-
+ {image && }
+ {emoji && }
{title}
{description}
diff --git a/src/components/DeveloperDocsLinks.js b/src/components/DeveloperDocsLinks.js
index 3497e008e3a..874e1b20284 100644
--- a/src/components/DeveloperDocsLinks.js
+++ b/src/components/DeveloperDocsLinks.js
@@ -7,11 +7,11 @@ import docLinks from "../data/developer-docs-links.yaml"
const DeveloperDocsLinks = ({ headerId }) =>
docLinks
.filter(({ id }) => id.includes(headerId))
- .map(({ items }) => (
-
+ .map(({ items, id }) => (
+
{items &&
items.map(({ id, to, path, description, items }) => (
-
+
{to || path ? (
@@ -26,7 +26,7 @@ const DeveloperDocsLinks = ({ headerId }) =>
{items &&
items.map(({ id, to, path }) => (
-
+
diff --git a/src/components/Footer.js b/src/components/Footer.js
index 7e1c66200ac..7e89749259c 100644
--- a/src/components/Footer.js
+++ b/src/components/Footer.js
@@ -188,6 +188,10 @@ const Footer = () => {
text: "ethereum-governance",
to: "/governance/",
},
+ {
+ text: "energy-consumption",
+ to: "/energy-consumption/",
+ },
{
to: "/eips/",
text: "eips",
diff --git a/src/components/Layout.js b/src/components/Layout.js
index 52b767c44ae..820048edf59 100644
--- a/src/components/Layout.js
+++ b/src/components/Layout.js
@@ -20,6 +20,7 @@ import { ZenModeContext } from "../contexts/ZenModeContext"
import { useKeyPress } from "../hooks/useKeyPress"
import { isLangRightToLeft } from "../utils/translations"
+import { isMobile } from "../utils/isMobile"
const ContentContainer = styled.div`
position: relative;
@@ -77,13 +78,7 @@ const Layout = (props) => {
setShouldShowSideNav(true)
if (localStorage.getItem("zen-mode") !== null) {
- let isMobile = false
- if (typeof window !== undefined) {
- isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
- window.navigator.userAgent
- )
- }
- setIsZenMode(localStorage.getItem("zen-mode") === "true" && !isMobile)
+ setIsZenMode(localStorage.getItem("zen-mode") === "true" && !isMobile())
}
} else {
// isZenMode and shouldShowSideNav only applicable in /docs pages
diff --git a/src/components/MeetupList.js b/src/components/MeetupList.js
index 3c4b83f08c3..90283b11229 100644
--- a/src/components/MeetupList.js
+++ b/src/components/MeetupList.js
@@ -1,11 +1,13 @@
// Libraries
import React, { useState } from "react"
import styled from "styled-components"
+import { sortBy } from "lodash"
// Components
import Emoji from "./Emoji"
import InfoBanner from "./InfoBanner"
import Link from "./Link"
+import Translation from "../components/Translation"
// Data
import meetups from "../data/community-meetups.json"
@@ -78,11 +80,11 @@ const StyledInput = styled.input`
`
const filterMeetups = (query) => {
- if (!query) return meetups
+ if (!query) return sortedMeetups
const lowercaseQuery = query.toLowerCase()
- return meetups.filter((meetup) => {
+ return sortedMeetups.filter((meetup) => {
return (
meetup.title.toLowerCase().includes(lowercaseQuery) ||
meetup.location.toLowerCase().includes(lowercaseQuery)
@@ -90,6 +92,9 @@ const filterMeetups = (query) => {
})
}
+// sort meetups by country and then by city
+const sortedMeetups = sortBy(meetups, ["emoji", "location"])
+
// TODO create generalized CardList / TableCard
// TODO prop if ordered list or unordered
const MeetupList = () => {
@@ -120,9 +125,9 @@ const MeetupList = () => {
))
) : (
- We don't have any meetups matching this search. Know of one?{" "}
+ {" "}
- Please add it to this page!
+
)}
diff --git a/src/components/Nav/index.js b/src/components/Nav/index.js
index a565c020367..fa4f2daab1a 100644
--- a/src/components/Nav/index.js
+++ b/src/components/Nav/index.js
@@ -230,6 +230,10 @@ const Nav = ({ handleThemeChange, isDarkTheme, path }) => {
text: "ethereum-governance",
to: "/governance/",
},
+ {
+ text: "energy-consumption",
+ to: "/energy-consumption/",
+ },
{
text: "eips",
to: "/eips/",
diff --git a/src/components/StablecoinAccordion.js b/src/components/StablecoinAccordion.js
index bc88a6c1b5c..c901aff3b36 100644
--- a/src/components/StablecoinAccordion.js
+++ b/src/components/StablecoinAccordion.js
@@ -21,6 +21,7 @@ import {
} from "./SharedStyledComponents"
import { translateMessageId } from "../utils/translations"
+import { isMobile } from "../utils/isMobile"
const Card = styled.div`
border-radius: 2px;
@@ -543,8 +544,7 @@ const StablecoinAccordion = () => {
} else {
setOpenSection(selectedSection)
}
- const isMobile = document && document.documentElement.clientWidth < 1024
- if (isMobile) {
+ if (isMobile()) {
navigate(`/stablecoins/#${selectedSection}`)
}
}
diff --git a/src/components/StablecoinBoxGrid.js b/src/components/StablecoinBoxGrid.js
index 3b851a5d9a4..58421e825a2 100644
--- a/src/components/StablecoinBoxGrid.js
+++ b/src/components/StablecoinBoxGrid.js
@@ -4,6 +4,7 @@ import styled from "styled-components"
import Link from "./Link"
import Emoji from "./Emoji"
import Translation from "./Translation"
+import { isMobile } from "../utils/isMobile"
const OpenTitle = styled.h3`
font-size: 40px;
@@ -237,8 +238,7 @@ const StablecoinBoxGrid = ({ items }) => {
// TODO generalize
const handleSelect = (idx) => {
setOpenIndex(idx)
- const isMobile = document && document.documentElement.clientWidth < 1024
- if (isMobile) {
+ if (isMobile()) {
navigate(`/stablecoins/#type-${idx}`)
}
}
diff --git a/src/components/StatsBoxGrid.js b/src/components/StatsBoxGrid.js
index 65e1e56840e..b6cbc31361c 100644
--- a/src/components/StatsBoxGrid.js
+++ b/src/components/StatsBoxGrid.js
@@ -9,12 +9,13 @@ import Tooltip from "./Tooltip"
import Link from "./Link"
import Icon from "./Icon"
+import { isLangRightToLeft } from "../utils/translations"
import { getData } from "../utils/cache"
-const Value = styled.h3`
+const Value = styled.span`
position: absolute;
bottom: 8%;
- font-size: min(4.4vw, 64px);
+ font-size: min(4.4vw, 4rem);
font-weight: 600;
margin-top: 0rem;
margin-bottom: 1rem;
@@ -113,7 +114,7 @@ const Lines = styled.div`
const ButtonContainer = styled.div`
position: absolute;
- right: 20px;
+ ${({ dir }) => (dir === "rtl" ? "left:" : "right:")} 20px;
bottom: 20px;
font-family: ${(props) => props.theme.fonts.monospace};
`
@@ -145,7 +146,7 @@ const ButtonToggle = styled(Button)`
const ranges = ["30d", "90d"]
-const GridItem = ({ metric }) => {
+const GridItem = ({ metric, dir }) => {
const { title, description, state, buttonContainer, range } = metric
const isLoading = !state.value
const value = state.hasError ? (
@@ -213,7 +214,7 @@ const GridItem = ({ metric }) => {
{!state.hasError && !isLoading && (
<>
{chart}
- {buttonContainer}
+ {buttonContainer}
>
)}
{value}
@@ -496,11 +497,11 @@ const StatsBoxGrid = () => {
range: selectedRangeNodes,
},
]
-
+ const dir = isLangRightToLeft(intl.locale) ? "rtl" : "ltr"
return (
{metrics.map((metric, idx) => (
-
+
))}
)
diff --git a/src/components/Tooltip.js b/src/components/Tooltip.js
index 3bc7b03107f..08f8ff072a3 100644
--- a/src/components/Tooltip.js
+++ b/src/components/Tooltip.js
@@ -1,5 +1,6 @@
import React, { useState } from "react"
import styled from "styled-components"
+import * as utils from "../utils/isMobile"
const Container = styled.div`
position: relative;
@@ -54,13 +55,7 @@ const ModalReturn = styled.div`
// TODO add `position` prop
const Tooltip = ({ content, children }) => {
const [isVisible, setIsVisible] = useState(false)
- let isMobile = false
-
- if (typeof window !== "undefined") {
- isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
- window.navigator.userAgent
- )
- }
+ const isMobile = utils.isMobile()
return (
<>
diff --git a/src/components/TranslationLeaderboard.js b/src/components/TranslationLeaderboard.js
index c398a76a145..6b4d8b1134e 100644
--- a/src/components/TranslationLeaderboard.js
+++ b/src/components/TranslationLeaderboard.js
@@ -1,6 +1,7 @@
// Libraries
import React, { useState } from "react"
import styled from "styled-components"
+import { reverse, sortBy } from "lodash"
// Components
import Emoji from "./Emoji"
@@ -118,9 +119,13 @@ const Flex = styled.div`
const TranslationLeaderboard = () => {
const leaderboardData = {
- monthData,
- quarterData,
- allTimeData,
+ monthData: reverse(sortBy(monthData.data, ({ user }) => user.totalCosts)),
+ quarterData: reverse(
+ sortBy(quarterData.data, ({ user }) => user.totalCosts)
+ ),
+ allTimeData: reverse(
+ sortBy(allTimeData.data, ({ user }) => user.totalCosts)
+ ),
}
const [filterAmount, updateFilterAmount] = useState(10)
const [dateRangeType, updateDateRangeType] = useState("monthData")
@@ -173,16 +178,21 @@ const TranslationLeaderboard = () => {
- {leaderboardData[dateRangeType].data
+ {leaderboardData[dateRangeType]
.filter(
(item) =>
item.user.username !== "ethdotorg" &&
!item.user.username.includes("LQS_") &&
- !item.user.username.includes("REMOVED_USER")
+ !item.user.username.includes("REMOVED_USER") &&
+ !item.user.username.includes("Aco_")
)
.filter((item, idx) => idx < filterAmount)
.map((item, idx) => {
- const { user, translated, languages } = item
+ const { user, languages } = item
+ const sortedLanguages = reverse(
+ sortBy(languages, ({ language }) => language.totalCosts)
+ )
+
let emoji = null
if (idx === 0) {
emoji = ":trophy:"
@@ -205,18 +215,13 @@ const TranslationLeaderboard = () => {
{user.username}
-
- {languages
- .slice(0, 3)
- .map((language) => language.name)
- .join(", ")}
-
+ {sortedLanguages[0].language.name}
- {translated}
+ {user.totalCosts}
)
diff --git a/src/components/UpcomingEventsList.js b/src/components/UpcomingEventsList.js
index 0c13c52e6de..015a51e832a 100644
--- a/src/components/UpcomingEventsList.js
+++ b/src/components/UpcomingEventsList.js
@@ -6,6 +6,7 @@ import styled from "styled-components"
import EventCard from "../components/EventCard"
import InfoBanner from "../components/InfoBanner"
import Link from "../components/Link"
+import Translation from "../components/Translation"
// Data
import events from "../data/community-events.json"
@@ -68,10 +69,9 @@ const UpcomingEventsList = () => {
if (orderedUpcomingEvents?.length === 0) {
return (
- {" "}
- We're not aware of any upcoming events. Know of one?{" "}
+ {" "}
- Please add it to this page!
+
)
diff --git a/src/content/community/get-involved/index.md b/src/content/community/get-involved/index.md
index f4e98cb9863..de9af3f30e9 100644
--- a/src/content/community/get-involved/index.md
+++ b/src/content/community/get-involved/index.md
@@ -85,12 +85,15 @@ The Ethereum ecosystem is on a mission to fund public goods and impactful projec
**Want to find a job working in Ethereum?**
+- [ethereum.org jobs](/about/#open-jobs)
+- [Ethereum Foundation jobs](https://ethereum.bamboohr.com/jobs/)
- [Cryptocurrency Jobs](https://cryptocurrencyjobs.co/ethereum/)
- [Crypto.jobs](https://crypto.jobs/)
- [Careers at ConsenSys](https://consensys.net/careers/)
- [Crypto Jobs List](https://cryptojobslist.com/ethereum-jobs)
- [Bankless jobs board](https://pallet.xyz/list/bankless/jobs)
- [useWeb3 Jobs](https://www.useweb3.xyz/jobs)
+- [Web3 Jobs](https://web3.career)
## Join a DAO {#decentralized-autonomous-organizations-daos}
diff --git a/src/content/community/online/index.md b/src/content/community/online/index.md
index 92c7a3e6c3f..925e917016f 100644
--- a/src/content/community/online/index.md
+++ b/src/content/community/online/index.md
@@ -39,4 +39,13 @@ Hundreds of thousands of Ethereum enthusiasts gather in these online forums to s
-
+
+
+
+ Learn more about DAOs
+
+
+
diff --git a/src/content/contributing/style-guide/index.md b/src/content/contributing/style-guide/index.md
index 40fd45fe93b..61d73d35acd 100644
--- a/src/content/contributing/style-guide/index.md
+++ b/src/content/contributing/style-guide/index.md
@@ -246,6 +246,22 @@ This site uses **sentence casing** for header names as a convention. Only the fi
### Getting Enough Ether
```
+### Article authors {#authors}
+
+When citing articles from a specific author or organization, use the article's name as a link, followed by a dash, then the author's name italicized.
+
+```md
+<--- Good --->
+
+- [A rollup-centric ethereum roadmap](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) — _Vitalik Buterin_
+- [Oracles](https://docs.ethhub.io/built-on-ethereum/oracles/what-are-oracles/) – _EthHub_
+
+<--- Bad--->
+
+- [A rollup-centric ethereum roadmap by Vitalik Buterin](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698)
+- [EthHub on Oracles](https://docs.ethhub.io/built-on-ethereum/oracles/what-are-oracles/) – _EthHub_
+```
+
## Anything else? {#anything-else}
Like all content on ethereum.org, this style guide is an open-source work-in-progress with room for improvement. If there is anything you think should be added to improve this document please [suggest an edit on GitHub](https://github.com/ethereum/ethereum-org-website/blob/dev/src/content/contributing/style-guide/index.md).
diff --git a/src/content/contributing/translation-program/translation-guide/index.md b/src/content/contributing/translation-program/translation-guide/index.md
index d942e9bc2c8..4ba73129662 100644
--- a/src/content/contributing/translation-program/translation-guide/index.md
+++ b/src/content/contributing/translation-program/translation-guide/index.md
@@ -87,6 +87,14 @@ Here is what we suggest, when you find a term that's unfamiliar to you:
We recommend you leave names of brands, companies, and personnel untranslated as a translation might cause unnecessary confusion and SEO difficulties.
+## How do I add content in my language? {#adding-foreign-language-content}
+
+Currently, all non-English content is translated directly from the English source content, and any content that does not exist in English cannot be added to other languages.
+
+To suggest new content for ethereum.org, you can [create an issue](https://github.com/ethereum/ethereum-org-website/issues) on GitHub. If added, the content will be written in English and translated to other languages using Crowdin.
+
+We plan to add support for non-English content additions in the near future.
+
## Get in touch {#contact}
-Thank you for reading through all of these. We hope this helps you to onboard our program. Feel free to join our [Discord translation channel](https://discord.gg/TkJFaewsaM) to ask questions and collaborate with other translators!
+Thank you for reading through all of these. We hope this helps you to onboard our program. Feel free to join our [Discord translation channel](https://discord.gg/XVepFu7sqR) to ask questions and collaborate with other translators, or reach out to us at translations@ethereum.org!
diff --git a/src/content/developers/docs/accounts/index.md b/src/content/developers/docs/accounts/index.md
index 2416e246910..a07f611ea7f 100644
--- a/src/content/developers/docs/accounts/index.md
+++ b/src/content/developers/docs/accounts/index.md
@@ -41,9 +41,9 @@ Both account types have the ability to:
Ethereum accounts have four fields:
-- `nonce` – a counter that indicates the number of transactions sent from the account. This ensures transactions are only processed once. In a contract account, this number represents the number of contracts created by the account
-- `balance` – the number of wei owned by this address. Wei is a denomination of ETH and there are 1e+18 wei per ETH.
-- `codeHash` – this hash refers to the _code_ of an account on the Ethereum virtual machine (EVM). Contract accounts have code fragments programmed in that can perform different operations. This EVM code gets executed if the account gets a message call. It cannot be changed unlike the other account fields. All such code fragments are contained in the state database under their corresponding hashes for later retrieval. This hash value is known as a codeHash. For externally owned accounts, the codeHash field is the hash of an empty string.
+- `nonce` – A counter that indicates the number of transactions sent from the account. This ensures transactions are only processed once. In a contract account, this number represents the number of contracts created by the account.
+- `balance` – The number of wei owned by this address. Wei is a denomination of ETH and there are 1e+18 wei per ETH.
+- `codeHash` – This hash refers to the _code_ of an account on the Ethereum virtual machine (EVM). Contract accounts have code fragments programmed in that can perform different operations. This EVM code gets executed if the account gets a message call. It cannot be changed, unlike the other account fields. All such code fragments are contained in the state database under their corresponding hashes for later retrieval. This hash value is known as a codeHash. For externally owned accounts, the codeHash field is the hash of an empty string.
- `storageRoot` – Sometimes known as a storage hash. A 256-bit hash of the root node of a Merkle Patricia trie that encodes the storage contents of the account (a mapping between 256-bit integer values), encoded into the trie as a mapping from the Keccak 256-bit hash of the 256-bit integer keys to the RLP-encoded 256-bit integer values. This trie encodes the hash of the storage contents of this account, and is empty by default.

diff --git a/src/content/developers/docs/apis/backend/index.md b/src/content/developers/docs/apis/backend/index.md
index e87092e9af7..fd907d62d39 100644
--- a/src/content/developers/docs/apis/backend/index.md
+++ b/src/content/developers/docs/apis/backend/index.md
@@ -45,6 +45,11 @@ These libraries abstract away much of the complexity of interacting directly wit
- [cloudflare-eth.com](https://cloudflare-eth.com)
+**DataHub by Figment -** **_Web3 API services with Ethereum Mainnet and testnets._**
+
+- [DataHub](https://www.figment.io/datahub)
+- [Documentation](https://docs.figment.io/introduction/what-is-datahub)
+
**Nodesmith -** **_JSON-RPC API access to Ethereum Mainnet and testnets._**
- [nodesmith.io](https://nodesmith.io/network/ethereum/)
diff --git a/src/content/developers/docs/dapps/index.md b/src/content/developers/docs/dapps/index.md
index 797b6977761..d7f85d15f50 100644
--- a/src/content/developers/docs/dapps/index.md
+++ b/src/content/developers/docs/dapps/index.md
@@ -94,6 +94,7 @@ Tokens must be generated in order to prove the value nodes that contribute to th
## Further reading {#further-reading}
+- [The Architecture of a Web 3.0 application](https://www.preethikasireddy.com/post/the-architecture-of-a-web-3-0-application) - _Preethi Kasireddy_
- [A 2021 guide to decentralized applications](https://limechain.tech/blog/what-are-dapps-the-2021-guide/) - _LimeChain_
- [What Are Decentralized Apps?](https://www.gemini.com/cryptopedia/decentralized-applications-defi-dapps) - _Gemini_
diff --git a/src/content/developers/docs/ethereum-stack/index.md b/src/content/developers/docs/ethereum-stack/index.md
index e3cf9d50056..37e37e17fd8 100644
--- a/src/content/developers/docs/ethereum-stack/index.md
+++ b/src/content/developers/docs/ethereum-stack/index.md
@@ -57,4 +57,6 @@ Check out our guide to [set up a local development environment](/developers/loca
## Further reading {#further-reading}
+- [The Architecture of a Web 3.0 application](https://www.preethikasireddy.com/post/the-architecture-of-a-web-3-0-application) - _Preethi Kasireddy_
+
_Know of a community resource that helped you? Edit this page and add it!_
diff --git a/src/content/developers/docs/evm/index.md b/src/content/developers/docs/evm/index.md
index 9390a5ee9fd..e8a5e77acc8 100644
--- a/src/content/developers/docs/evm/index.md
+++ b/src/content/developers/docs/evm/index.md
@@ -11,7 +11,7 @@ The Ethereum protocol itself exists solely for the purpose of keeping the contin
## Prerequisites {#prerequisites}
-Some basic familiarity with common terminology in computer science such as [bytes](https://en.wikipedia.org/wiki/Byte), [memory](https://en.wikipedia.org/wiki/Computer_memory), and a [stack]() are necessary to understand the EVM. It would also be helpful to be comfortable with cryptography/blockchain concepts like [hash functions](https://en.wikipedia.org/wiki/Cryptographic_hash_function), [Proof-of-Work](https://en.wikipedia.org/wiki/Proof_of_work) and the [Merkle Tree](https://en.wikipedia.org/wiki/Merkle_tree).
+Some basic familiarity with common terminology in computer science such as [bytes](https://en.wikipedia.org/wiki/Byte), [memory](https://en.wikipedia.org/wiki/Computer_memory), and a [stack]() are necessary to understand the EVM. It would also be helpful to be comfortable with cryptography/blockchain concepts like [hash functions](https://en.wikipedia.org/wiki/Cryptographic_hash_function), [proof-of-work](https://en.wikipedia.org/wiki/Proof_of_work) and the [Merkle tree](https://en.wikipedia.org/wiki/Merkle_tree).
## From ledger to state machine {#from-ledger-to-state-machine}
diff --git a/src/content/developers/docs/scaling/index.md b/src/content/developers/docs/scaling/index.md
index 87d1d5514be..009f3966da2 100644
--- a/src/content/developers/docs/scaling/index.md
+++ b/src/content/developers/docs/scaling/index.md
@@ -83,6 +83,7 @@ _Note the explanation in the video uses the term "Layer 2" to refer to all off-c
## Further reading {#further-reading}
+- [A rollup-centric ethereum roadmap](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) _Vitalik Buterin_
- [Up-to-date analytics on Layer 2 scaling solutions for Ethereum](https://www.l2beat.com/)
- [Evaluating Ethereum layer 2 Scaling Solutions: A Comparison Framework](https://medium.com/matter-labs/evaluating-ethereum-l2-scaling-solutions-a-comparison-framework-b6b2f410f955)
- [An Incomplete Guide to Rollups](https://vitalik.ca/general/2021/01/05/rollup.html)
diff --git a/src/content/developers/docs/web2-vs-web3/index.md b/src/content/developers/docs/web2-vs-web3/index.md
index beff927231e..0804d298796 100644
--- a/src/content/developers/docs/web2-vs-web3/index.md
+++ b/src/content/developers/docs/web2-vs-web3/index.md
@@ -53,6 +53,7 @@ Note that these are general patterns that may not hold true in every network. Fu
## Further reading {#further-reading}
+- [The Architecture of a Web 3.0 application](https://www.preethikasireddy.com/post/the-architecture-of-a-web-3-0-application) - _Preethi Kasireddy_
- [The Meaning of Decentralization](https://medium.com/@VitalikButerin/the-meaning-of-decentralization-a0c92b76a274) _Feb 6, 2017 - Vitalik Buterin_
- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Feb 18, 2018 - Chris Dixon_
- [What Is Web 3.0 & Why It Matters](https://medium.com/fabric-ventures/what-is-web-3-0-why-it-matters-934eb07f3d2b) _Dec 31, 2019 - Max Mersch and Richard Muirhead_
diff --git a/src/content/developers/tutorials/calling-a-smart-contract-from-javascript/index.md b/src/content/developers/tutorials/calling-a-smart-contract-from-javascript/index.md
index b1f0fb81106..339c7f1807a 100644
--- a/src/content/developers/tutorials/calling-a-smart-contract-from-javascript/index.md
+++ b/src/content/developers/tutorials/calling-a-smart-contract-from-javascript/index.md
@@ -14,7 +14,7 @@ address: "0x19dE91Af973F404EDF5B4c093983a7c6E3EC8ccE"
In this tutorial we’ll see how to call a [smart contract](/developers/docs/smart-contracts/) function from JavaScript. First is reading the state of a smart contract (e.g. the balance of an ERC20 holder), then we’ll modify the state of the blockchain by making a token transfer. You should be already be familiar with [setting up a JS environment to interact with the blockchain](/developers/tutorials/set-up-web3js-to-use-ethereum-in-javascript/).
-For this examples we’ll play with the DAI token, for testing purpose we’ll fork the blockchain using ganache-cli and unlock an address that already has a lot of DAI:
+For this example we’ll play with the DAI token, for testing purpose we’ll fork the blockchain using ganache-cli and unlock an address that already has a lot of DAI:
```bash
ganache-cli -f https://mainnet.infura.io/v3/[YOUR INFURA KEY] -d -i 66 1 --unlock 0x4d10ae710Bd8D1C31bd7465c8CBC3add6F279E81
diff --git a/src/content/developers/tutorials/logging-events-smart-contracts/index.md b/src/content/developers/tutorials/logging-events-smart-contracts/index.md
index b80b7c94bea..cecc6085795 100644
--- a/src/content/developers/tutorials/logging-events-smart-contracts/index.md
+++ b/src/content/developers/tutorials/logging-events-smart-contracts/index.md
@@ -24,7 +24,7 @@ event Transfer(address indexed from, address indexed to, uint256 value);
The event signature are declared inside of the contract code and can be emitted with the emit keyword. For example the transfer event logs who sent the transfer (_from_), to who (_to_) and how much tokens were transferred (_value_).
-If we get back to our Counter smart contract and decide to log everytime the value is changed. As this contract is not meant to be deployed but serve as a base for building another contract by extending it: it’s called an abstract contract. In the case of our counter example it would look like this:
+If we get back to our Counter smart contract and decide to log every time the value is changed. As this contract is not meant to be deployed but serve as a base for building another contract by extending it: it’s called an abstract contract. In the case of our counter example it would look like this:
```solidity
pragma solidity 0.5.17;
@@ -60,4 +60,4 @@ If we now deploy the contract and call the increment function, we’ll see that

-Logs are really useful for debugging your smart contracts but they are also important if you build applications used by different people and make it easier to make analytics to track and understand how your smart contract is used. The logs generated by transactions are displayed in popular block explorers and you can also for example use them to create off chain scripts for listening to specific events and taking action when they occurs.
+Logs are really useful for debugging your smart contracts but they are also important if you build applications used by different people and make it easier to make analytics to track and understand how your smart contract is used. The logs generated by transactions are displayed in popular block explorers and you can also for example use them to create off chain scripts for listening to specific events and taking action when they occur.
diff --git a/src/content/developers/tutorials/run-node-raspberry-pi/index.md b/src/content/developers/tutorials/run-node-raspberry-pi/index.md
index 69479ac447f..d3883e32a2b 100644
--- a/src/content/developers/tutorials/run-node-raspberry-pi/index.md
+++ b/src/content/developers/tutorials/run-node-raspberry-pi/index.md
@@ -236,12 +236,12 @@ The first time, you need to create manually an account by running the “validat
We put a lot of work trying to setup the Raspberry Pi 4 as a full Ethereum node as we know the massive user base of this device may have a very positive impact in the network.
-Please, take into account that this is the first image based on Ubuntu 20.04 so there may be some bugs. If so, open an issue on [GitHub](https://github.com/diglos/pi-gen) or reach us on [Twitter](https://twitter.com/EthereumOnARM).
+Please, take into account that this is the first image based on Ubuntu 20.04 so there may be some bugs. If so, open an issue on [GitHub](https://github.com/diglos/ethereumonarm) or reach us on [Twitter](https://twitter.com/EthereumOnARM).
## References {#references}
1. [geth repeatedly crashes with SIGSEGV](https://github.com/ethereum/go-ethereum/issues/20190)
-2. [https://github.com/diglos/pi-gen](https://github.com/diglos/pi-gen)
+2. [https://github.com/diglos/ethereumonarm](https://github.com/diglos/ethereumonarm)
3. https://ubuntu.com/download/raspberry-pi
4. https://en.wikipedia.org/wiki/Port_forwarding
5. https://prometheus.io
diff --git a/src/content/energy-consumption/energy_use_per_transaction.png b/src/content/energy-consumption/energy_use_per_transaction.png
new file mode 100644
index 00000000000..671fbc5457b
Binary files /dev/null and b/src/content/energy-consumption/energy_use_per_transaction.png differ
diff --git a/src/content/energy-consumption/index.md b/src/content/energy-consumption/index.md
new file mode 100644
index 00000000000..db4d0005042
--- /dev/null
+++ b/src/content/energy-consumption/index.md
@@ -0,0 +1,93 @@
+---
+title: Ethereum Energy Consumption
+description: The basic information you need to understand Ethereum's energy consumption.
+lang: en
+sidebar: true
+---
+
+# Ethereum energy consumption {#introduction}
+
+Ethereum's current energy expenditure is too high and unsustainable. Resolving energy expenditure concerns without sacrificing security and decentralization is a significant technical challenge and has been a focus of research and development for years. Let's explore why building Ethereum has had a high environmental impact and how upcoming network upgrades will dramatically change this.
+
+## Energy secures the network {#energy-secures-the-network}
+
+Transactions on the Ethereum blockchain are validated by [miners](/developers/docs/consensus-mechanisms/pow/mining). Miners bundle together transactions into ordered blocks and add them to the Ethereum blockchain. The new blocks get broadcast to all the other node operators who run the transactions independently and verify that they are valid. Any dishonesty shows up as an inconsistency between different nodes. Honest blocks are added to the blockchain and become an immutable part of history.
+
+The ability for any miner to add new blocks only works if there is a cost associated with mining and unpredictability about which specific node submits the next block. These conditions are met by imposing proof-of-work (PoW). To be eligible to submit a block of transactions, a miner must solve an arbitrary computational puzzle faster than any other miner. Solving this puzzle creates competition between miners and costs in the form of energy expenditure. To successfully defraud the blockchain, a dishonest miner would have to consistently win the proof-of-work race, which is very unlikely and prohibitively expensive.
+
+Ethereum has used proof-of-work since genesis. Migrating off of proof-of-work has always been a fundamental goal of Ethereum. Still, it has been philosophically and technologically challenging because the viable alternatives all required to compromise Ethereum's core principles of security and decentralization.
+
+## Proof-of-work energy expenditure {#proof-of-work}
+
+Proof-of-work is a robust way to secure the network and enforce honest changes to the blockchain, but it is problematic for several reasons. Since the right to mine a block requires solving a computational puzzle, miners can increase their odds of success by investing in more powerful hardware. These incentives cause an arms race with miners acquiring increasingly power-hungry mining equipment. Ethereum's proof-of-work protocol currently has a total annualized power consumption approximately equal to that of Finland [^1] and carbon footprint similar to Switzerland[^1] .
+
+## Proof-of-stake {#proof-of-stake}
+
+A greener future for Ethereum is already being built in the form of a [**proof-of-stake (PoS)** chain](/eth2/beacon-chain/). Under [proof-of-stake](/developers/docs/consensus-mechanisms/pos/), arbitrary puzzle-solving is unnecessary. Removing puzzle-solving drastically reduces the energy expenditure required to secure the network. Miners get replaced by validators who perform the same function except that instead of expending their assets up-front in the form of computational work, they stake ETH as collateral against dishonest behavior. If the validator is lazy (offline when they are supposed to fulfill some validator duty) their staked ETH can slowly leak away, while provably dishonest behavior results in the the staked assets being "slashed". This strongly incentivizes active and honest participation in securing the network.
+
+Similarly to proof-of-work, a validator would require 51% of the total ETH staked in the network in order to maintain a fraudulent blockchain. However, unlike on proof-of-work, where the potential loss of a failed attack is only the cost of generating the hash power needed to mine, on proof-of-stake, the possible loss of an attack is the entire amount of ETH used as collateral. This disincentive structure allows for network security with proof-of-stake while eliminating the need to expend energy on arbitrary computations. Detailed explanations of the network security under proof-of-stake can be found [here](/developers/docs/consensus-mechanisms/pos/) and [here](https://vitalik.ca/general/2017/12/31/pos_faq.html).
+
+## The merge {#the-merge}
+
+There is a functional proof-of-stake chain called the [Beacon Chain](/eth2/beacon-chain/) that has been running since December 2020 that is demonstrating the viability of the proof-of-stake protocol. The merge refers to the point in time when Ethereum leaves proof-of-work behind and fully adopts proof-of-stake. The merge is expected to happen ~Q2 2022. [More on the merge](/eth2/merge/).
+
+## Proof-of-stake energy expenditure {#proof-of-stake-energy}
+
+As well as building confidence in the proof-of-stake mechanism, the Beacon Chain also enables estimates of Ethereum's post-merge energy usage. A recent [blog post on the ethereum.org blog](https://blog.ethereum.org/2021/05/18/country-power-no-more/) suggested that the merge to proof-of-stake could result in a 99.95% reduction in total energy use, with proof-of-stake being ~2000x more efficient than proof-of-work. The energy expenditure of Ethereum will be roughly equal to the cost of running a home computer for each node on the network.
+
+
+
+Estimate of PoW energy consumption per tx used in figure based on May 2021 data , at time of writing the same source suggested up to 175.56 Kwh
+
+Let's compare these numbers to a service such as Visa. 100,000 Visa transactions uses 149kWh of energy[^2] . Assuming sharding has been implemented, Ethereum's current transaction rate (15 transactions per second) will be increased by at least 64x (the number of shards), not accounting for additional optimization from rollups. A realistic estimate for post-merge, sharded Ethereum with rollups is [25,000 - 100,000](https://twitter.com/VitalikButerin/status/1312905884549300224?s=20) transactions per second. We can use this information to estimate a maximum and minimum energy expenditure per 100,000 transactions.
+
+- 25,000 transactions per second.
+- `100,000 / 25,000 = 4` seconds to process 100,000 transactions.
+
+We can also estimate Ethereum's energy expenditure per second, making a conservative estimate that 10,000 active validators are securing the network (there are over [250,000 validators on the Beacon Chain](https://beaconscan.com/) at the moment, but many validators can operate on a single node. Currently, there are estimated to be 3,000-4,000 individual nodes, so 10,000 is a conservative estimate for post-merge):
+
+`1.44kWh daily usage * 10,000 network nodes = 14,400kWh` per day.
+There are 86,400 seconds in a day, so `14,400 / 86,400 = 0.1667 kWh` per second.
+
+If we multiply that by the amount of time it takes to process 100,000 transaction: `0.1667 * 4 = 0.667 kWh`.
+
+This is ~0.4% of the energy used by Visa for the same number of transactions, or a reduction in energy expenditure by a factor of ~225 compared to Ethereum's current proof-of-work network.
+
+Repeating the calculation with the maximum transactions-per-second yields 0.1667 kWh per second which is about 0.1% of the energy expenditure of Visa, or a reduction of ~894x.
+
+_Note: it's not entirely accurate to compare based on number of transactions as Ethereum's energy usage is time-based. The energy usage of Ethereum is the same in 1 minute regardless if it does 1 or 1,000 transactions._
+
+_We must also consider that Ethereum isn't limited to simple financial transactions but is also a complete platform built for smart contracts and decentralized applications._
+
+## A greener Ethereum {#green-ethereum}
+
+While Ethereum's energy consumption has historically been substantial, there has been a major investment of developer time and intellect into transitioning from energy-hungry to energy-efficient block validation. To quote [Bankless](http://podcast.banklesshq.com/), the best way to conserve the energy consumed by proof-of-work is simply to "turn it off", which is the approach Ethereum has committed to take.
+
+
+ If you think these stats are incorrect or can be made more accurate, please raise an issue or PR. These are estimates by the ethereum.org team made using publicly accessible information and the current Ethereum roadmap. These statements don't represent an official promise from the Ethereum Foundation.
+
+
+## Further reading {#further-reading}
+
+- [A country's worth of power, no more](https://blog.ethereum.org/2021/05/18/country-power-no-more/) – _Carl Beekhuizen, May 18 2021_
+- [Ethereum Emissions: A Bottom-up Estimate](https://kylemcdonald.github.io/ethereum-emissions/) _ Kyle McDonald_
+- [Ethereum Energy Consumption Index](https://digiconomist.net/ethereum-energy-consumption/) – _Digiconomist_
+
+## Related topics {#related-topics}
+
+- [Ethereum's vision](/eth2/vision/)
+- [The Beacon Chain](/eth2/beacon-chain)
+- [The merge](/eth2/merge/)
+- [Sharding](/eth2/beacon-chain/)
+
+### Footnotes and sources {#footnotes-and-sources}
+
+#### 1. Ethereum proof-of-work energy consumption {#fn-1}
+
+[Energy Consumption by Country inc. Ethereum (Annualized TWh)](https://digiconomist.net/ethereum-energy-consumption)
+
+#### 2. Visa energy consumption {#fn-2}
+
+[Bitcoin network average energy consumption per transaction compared to VISA network as of 2020, Statista](https://www.statista.com/statistics/881541/bitcoin-energy-consumption-transaction-comparison-visa/)
+
+[Visa financials report Q4 2020](https://s1.q4cdn.com/050606653/files/doc_financials/2020/q4/Visa-Inc.-Q4-2020-Operational-Performance-Data.pdf)
diff --git a/src/content/security/index.md b/src/content/security/index.md
index 2cab37d2549..4652fb2ef2d 100644
--- a/src/content/security/index.md
+++ b/src/content/security/index.md
@@ -232,6 +232,20 @@ These fraudulent brokers find their targets by using fake accounts on YouTube to

+### Crypto mining pool scams {#mining-pool-scams}
+
+Mining pool scams involve people contacting you unsolicited, and claiming that you can make large returns by joining an Ethereum mining pool. The scammer will make claims and stay in contact with you for however long it takes. Essentially, the scammer will try and convince you that when you join an Ethereum mining pool, your cryptocurrency will be used to create ETH and that you will be paid dividends in the form of ETH. What will end up happening is, you will notice that your cryptocurrency is making small returns. This is simply to bait you into investing more. Eventually, all of your funds will be sent to an unknown address and the scammer will either disappear or in some cases will continue to stay in touch as has happened in a recent case.
+
+Bottom line, be wary of people who contact you on social media asking for you to be part of a mining pool. Once you lose your crypto, it is gone.
+
+Some things to remember:
+
+- Be wary of anyone contacting you about ways to make money off of your crypto
+- Do your research about staking, liquidity pools, or other ways of investing your crypto
+- Rarely, if ever, are such schemes legitimate. If they were, they would probably be mainstream and you will have heard of them.
+
+[Man loses $200k in mining pool scam](https://www.reddit.com/r/CoinBase/comments/r0qe0e/scam_or_possible_incredible_payout/)
+
## Further reading {#further-reading}
diff --git a/src/content/translations/ar/learn/index.md b/src/content/translations/ar/learn/index.md
deleted file mode 100644
index 2a1dc93fea8..00000000000
--- a/src/content/translations/ar/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: تعرف على إيثريوم
-description: مجموعة مقالات وإرشادات وموارد تقنية وغير تقنية للتعرف على إيثريوم.
-lang: ar
-sidebar: true
----
-
-# تعرف على إيثريوم {#learn-about-ethereum}
-
-**مرحبا بك في [ethereum.org/learn](/ar/learn/), مجموعة مصادر لمساعدتك في تعلم المزيد عن إيثيريوم.** هذه الصفحة تحتوي علي مقالات وإرشادات ومصادر تقنية **و** غير تقنية. إذا كنت جديد كليا في الإيثيريوم, [نقترح عليك أن تبدأ هنا](/ar/what-is-ethereum/).
-
-هنا بعض نقاط البدء الممتازة:
-
-- [لا مركزية كل شيء ](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 سبتمبر، 2017 - Vitalik Buterin (فيديو)_
-- [ما سبب لامركزية الأشياء](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 فبراير 2018 - Chris Dixon_
-- [عام فى إيثريوم ](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 يناير، 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [ إيثريوم حرفيًا تغير قواعد اللعبة التقنية ](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8)_ 29 مارس 2019 - Virgil Griffith_
-
-بالإضافة إلى المعلومات الواردة في هذه الصفحة، هناك العديد من الموارد التي أنشأها مجتمع إيثريوم والتي تستحق الاستكشاف:
-
-- [EthHub](https://docs.ethhub.io)_قاعدة معارف شاملة لكل ما يتعلق بإيثريوم_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/)_ مصدر تعليمي حول إيثريوم للمبتدئين_
-- [Ethereum.wiki](https://eth.wiki) _قاعدة بيانات معرفية (ويكي) مبنية من قبل مجتمع ايتيريوم حول هذه التقنية_
-- [Kauri](https://kauri.io) _المقالات الفنية والدروس الخاصة بإيثريوم والمشاريع ذات الصلة_
-- [ Ethereum Foundation YouTub](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g)_مقاطع فيديو ونقاشات حول إيثريوم _
-- [Week in Ethereum News ](https://weekinethereumnews.com/)_نشرة إخبارية أسبوعية تغطي التطورات الرئيسية في النظام البيئي لإيثريوم_
-- [ما الجديد في ETH 2.0](https://eth2.news)_ نشرة إخبارية منتظمة حول تطور ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _نقاشات فنية أعمق عن إيثريوم لـ ETH 2.0 وما بعده_
-- [ ETHGlobal](https://ethglobal.co)_ سلسلة مسابقات " هاكثون" خاصه بإيثريوم - شارك بالقريب منك_
-
-## أساسيات إيثريوم {#ethereum-basics}
-
-هل أنت جديد في إيثريوم؟ تعد هذه المقالات والموارد مساعدة جيدة للبدء.
-
-- [دليل إيثريوم للمبتدئين](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf)_ 23 فبراير،2017 - Linda Xie_
-- [فيديو: ما هو إيثر وإيثريوم؟](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 أبريل 2019 - CME Group_
-- [ما هو إيثريوم؟](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [ما هو إيثر؟](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _تُحدث دورياَ - EthHub_
-- [مقدمة كاملة عن إيثريوم للمبتدئين](https://www.mewtopia.com/absolute-beginners-guide/) _23 يوليو 2019_
-- [حالة إيثريوم](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 يناير 2018 - Elad Gil_
-- [سلاسل الكتل: كيف تعمل ولماذا سيغيرون العالم](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world)_28 سبتمبر،2017 - Morgan Peck_
-
-## كيفية عمل إيثريوم {#how-ethereum-works}
-
-تفسيرات عالية المستوى عن إيثريوم وتكنولوجيا سلاسل الكتل عمومًا.
-
-- [كيف يعمل إيثريوم؟](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27 سبتمبر، 2017 - Preethi Kasireddy_
-- [مقدمة مبسطه لإيثريوم ](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2 أكتوبر، 2016 - Antony Lewis_
-- [مقدمة فى سلاسل الكتل عبر اقتصاديات التشفير - الجزء اﻷول](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 يناير، 2018 - Zubin Koticha_
-- [مقدمة فى سلاسل الكتل عبر اقتصاديات التشفير - الجزء الثانى](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19 يوليو, 2018 - Zubin Koticha_
-
-## العقود الذكية {#smart-contracts}
-
-"العقد الذكي" هو مجرد مقطع من التعليمات البرمجية "كود" التي يتم تشغيلها على إيثريوم. يطلق عليه "عقد" لأن هذا الكود الذى يعمل على إيثريوم يمكنه التحكم في أشياء ثمينة مثل ETH أو غيرها من الأصول الرقمية.
-
-- أتريد أن تتعلم كيفية البرمجة على إيثريوم مع العقود الذكية؟ [ethereum.org/developers](/ar/developers/)
-- [ما هو العقد الذكي؟](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12 نوفمبر 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [ما هي العقود الذكية/التطبيقات اللامركزية؟](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _تُحدث دوريًا - Ethhub_
-
-## برهان العمل والتعدين {#proof-of-work-and-mining}
-
-يستخدم إيثريوم حاليًا نظامًا يسمى "برهان العمل". هذا يسمح لشبكة إيثريوم بالاتفاق على حالة جميع المعلومات المسجلة على سلسلة الكتل الخاصه بإيثريوم، ويمنع أنواعًا معينة من الهجمات الاقتصادية.
-
-- [ما معنى التعدين في إيثريوم؟](https://docs.ethhub.io/using-ethereum/mining/) _تُحدث دوريًا - Ethhub_
-
-في ETH 2.0، سيتم نقل إيثريوم إلى نظام مختلف يسمى "برهان الضمان المالى". [يمكنك قراءة المزيد عن ETH 2.0 أدناه.](#eth-2-0).
-
-## العملاء ونقاط الاتصال {#clients-and-nodes}
-
-تتكون شبكة إيثريوم من العديد من نقاط اﻻتصال،كل منها تدير برنامج عميل ملائم. هناك عميلان يتم استخدامهما بواسطة غالبية نقاط اﻻتصال: [ Geth ](https://geth.ethereum.org/)(مكتوب بلغة Go) و [Parity ](https://www.parity.io/ethereum/)(مكتوب بلغة Rust).
-
-- أتريد أن تتعلم كيفية تشغيل نقطة اﻻتصال خاصة بك؟ → [ethereum.org/developers](/ar/developers/#clients-running-your-own-node/)
-- [قائمة شاملة لجميع عملاء إيثريوم](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## إيثريوم للمؤسسات {#enterprise-ethereum}
-
-يشير إيثريوم للمؤسسات إلى تطبيقات خاصة وائتلافية وهجينة بقاعدة أكواد إيثريوم للتطبيقات التجارية. تستخدم الشركات في جميع أنحاء العالم إيثريوم للمؤسسات بالفعل لتنظيم السواق المالية وإدارة سلاسل الإمداد وإنشاء نماذج تجارية جديدة.
-
-قراءة المزيد عن [إيثريوم للمؤسسات](/ar/enterprise/).
-
-## تحسين قابلية إيثريوم للتوسع {#improving-ethereums-scalability}
-
-هناك العديد من الجهود الجارية لجعل إيثريوم أكثر "قابلية للتوسع" من خلال تحسين سرعتها وإنتاجيتها الإجمالية للمعاملات. بشكل عام، يتم فرزها في حلول "Layer 1" و "Layer 2".
-
-“Layer 1” تشير إلى تحسين بروتوكول إيثريوم الأساسي. المشروع الأساسي لتحسين بروتوكول إيثريوم الأساسي هو[ ETH 2.0.](#eth-2-0).
-
-تشير“Layer 2” إلى التقنيات التي تم إنشاؤها "في المقدمة" من بروتوكول إيثريوم الأساسي، مما يتيح قابلية أكبر للتوسع دون المساس بالأمن. هناك أيضًا تقنيات "off-chain”" مثل السلاسل الجانبية "side-chains" ، والتي تتيح قابلية أكبر للتوسع من خلال إنشاء مجموعة مختلفة من المفاضلات الأمنية.
-
-- [منطقية Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12 فبراير 2018 - Josh Stark_
-- [حالة قابلية إيثريوم للتوسع](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 يناير 2019 - Hunter Hillman, Steven McKie, وEric Olszewski_
-- [5 طرق لتوسيع تطبيق إيثريوم المركزي الخاص بك](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 أبريل 2019 - Andreas Wallendahl_
-
-### قنوات الدفع والحالة {#payment--state-channels}
-
-- [القنوات الحكومية - شرح](https://www.jeffcoleman.ca/state-channels/) _6 نوفمبر 2015 - Jeff Coleman_
-- [أساسيات القنوات الحكومية](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [القنوات الحكومية](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _تُحدث دوريًا - EthHub_
-
-### السلاسل الجانبية "Sidechains" {#sidechains}
-
-- [توسيع تطبيقات إيثريوم اللامركزية عن طريق السلاسل الجانبية](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8 فبراير 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [فهم Plasma، الجزء الأول: الأساسيات](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 فبراير 2019 - Daniel Goldman_
-- [فهم Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [تعلم Plasma - مصدر تعليمي لإطار Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-يشير ETH 2.0 (المعروف أيضًا باسم "Serenity") إلى الترقية الرئيسية التالية لبروتوكول إيثريوم الأساسي. فهو يجمع بين العديد من التحسينات على بروتوكول إيثريوم الأساسي، أو "Layer 1".
-
-- [خارطة طريق ومراحل ETH 2.0](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _تُحدث دوريًا - EthHub_
-- [ ٨ فرق تتسابق لبناء الجيل القادم من إيثريوم ](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0)_ ٩ ديسمبر، 2018 - Christine Kim_
-- [دليل الضمان المالي](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _تُحدث دورياَ - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _تُحدث دورياَ - EthHub_
-- [ETH 2.0 - الطريق إلى توسع إيثريوم - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(فيديو) نوفمبر, 2018 - YouTube_
-- [باحثو ETH 2.0 AMA الجزء الأول](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _24 يناير 2019 - EthHub_
-- [باحثو ETH 2.0 AMA الجزء الثاني](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15 يوليو 2019 - EthHub_
-- [9 اشياء لا تعرفها عن إيثريوم 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 يوليو 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH1.x هو اسم مجموعة من الترقيات فى بروتوكول إيثريوم الحالى. الهدف من ذلك هو مواصلة تحسين إيثريوم والحفاظ عليه بينما يتم تطوير ETH 2.0 وتنفيذه.
-
-لمزيد من المعلومات طالع [EthHub’s explainer page about ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## اقتصاديات التشفير {#cryptoeconomics}
-
-علم اقتصاديات التشفير "هو العلم العملي لبناء أنظمة موزعة، حيث يتم تأمين خصائص هذه الأنظمة بالحوافز المالية، وحيث يتم ضمان الآليات الاقتصادية من خلال التشفير. هذا هو المصطلح العام لممارسة تصميم وتوسع سلاسل الكتل مثل إيثريوم و بيتكوين.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [مقدمة إلى علم اقتصاديات التشفير](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(فيديو) 19 أغسطس 2018 - Karl Floersch_
-- [منطقية علم اقتصاديات التشفير](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16 نوفمبر 2017 - Josh Stark_
-
-## النقد والشك {#critique-and-skepticism}
-
-وجهات نظر نقدية لإيثريوم والعملات المشفرة.
-
-- [خارطة طريق إيثريوم ليست طموحة كفايةً](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27 مارس 2019 - مقابلة مع Rick Dudley_
-- [تحديات بناء البنية التحتية لإيثريوم](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8 يناير 2018 - Jameson Lopp_
-- [إجابات شحيحة على أسئلة صعبة](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(فيديو) 10 مارس 2019 - Rick Dudley_
-- [لا يوجد سبب جيد للثقة في تكنولوجيا سلسلة الكتلة](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6 فبراير 2019 - Bruce Schneier_
diff --git a/src/content/translations/bn/learn/index.md b/src/content/translations/bn/learn/index.md
deleted file mode 100644
index 520ba41f310..00000000000
--- a/src/content/translations/bn/learn/index.md
+++ /dev/null
@@ -1,142 +0,0 @@
----
-title: ইথেরিয়াম সম্পর্কে জানুন
-description: ইথেরিয়াম সম্পর্কে শিখতে প্রযুক্তিগত এবং অ-প্রযুক্তিগত নিবন্ধ, গাইড এবং সংস্থানগুলির একটি সেট।
-lang: bn
-sidebar: true
----
-
-# ইথেরিয়াম সম্পর্কে জানুন {#learn-about-ethereum}
-
-**ethereum.org/learn এ স্বাগতম, ইথেরিয়াম সম্পর্কে আপনাকে আরও জানতে সাহায্য করার জন্য এক গুচ্ছ সংস্থান।** এই পৃষ্ঠায় প্রযুক্তিগত ** এবং ** অ-প্রযুক্তিগত নিবন্ধ, গাইড এবং সংস্থান আছে। যদি আপনি ইথেরিয়াম এ একদম নতুন হন, [তাহলে আমরা এখান থেকে শুরু করার পরামর্শ দিই](/bn/what-is-ethereum/)।
-
-এখানে কিছু চমৎকার সূচনা বিন্দু দেওয়া হয়েছে:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 সেপ্টেম্বর, 2017 - ভিটালিক বুটেরিন (ভিডিও)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _ফেব্রুয়ারী 18, 2018 - ক্রিস ডিকসন_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _জানুয়ারী 16, 2019 - জোশ স্টার্ক, ইভান ভ্যান নেস, এবং ড্যানিয়েল জাকরিসন_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29 মার্চ, 2019 - ভার্জিল গ্রিফিথ_
-
-এই পৃষ্ঠার তথ্য ছাড়াও, অন্বেষণ করার মতো অনেকগুলি সম্প্রদায়-নির্মিত রিসোর্সে নিম্নে রয়েছে:
-
-- [EthHub](https://docs.ethhub.io) _ইথেরিয়াম সম্পর্কে বিস্তৃত জ্ঞানের ভান্ডার।_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _ইথেরিয়াম সম্পর্কে একটি শিক্ষামূলক সম্পদ যা শিক্ষানবিশদের লক্ষ্যে প্রস্তুত করা হয়েছে_
-- [Ethereum.wiki](https://eth.wiki) _ইথেরিয়ামের প্রযুক্তি সম্পর্কে একটি সম্প্রদায়-নির্মিত উইকি।_
-- [Kauri](https://kauri.io) _ইথেরিয়াম এবং সম্পর্কিত প্রকল্পগুলির জন্য প্রযুক্তিগত নিবন্ধ এবং টিউটোরিয়াল।_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _ইথেরিয়াম সম্পর্কে ভিডিও এবং আলোচনা।_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _ একটি সাপ্তাহিক নিউজলেটার যা ইকোসিস্টেম ব্যাপী প্রধান উন্নয়নগুলি সম্বন্ধে আলোচনা করে_
-- [What’s new in ETH 2.0](https://eth2.news)_ ETH 2.0 ডেভেলপমেন্ট সম্পর্কে একটি নিয়মিত নিউজলেটার_
-- [ethresear.ch forum](https://ethresear.ch/) _ETH 2.0 এবং এর বাইরেও ইথেরিয়ামের উপর গভীর প্রযুক্তিগত আলোচনা_
-- [ETHGlobal](https://ethglobal.co) _একটি ইথেরিয়াম হ্যাকাথন সিরিজ - আপনার কাছের সিরিজে উপস্থিত থাকুন!_
-
-## ইথেরিয়ামের মৌলিক তথ্য {#ethereum-basics}
-
-আপনি কি ইথেরিয়াম এ নতুন? নিম্নলিখিত নিবন্ধ এবং রিসোর্সগুলি হল শুরু করার পক্ষে একটি ভাল স্থান।
-
-- [>A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23 ফেব্রুয়ারী, 2017 - লিন্ডা জী_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 এপ্রিল, 2019 - সিএমই গ্রুপ_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _প্রায়শই আপডেট করা হয় - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _ জুলাই 23, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _জানুয়ারী 30, 2018 - এলাদ গিল_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 সেপ্টেম্বর, 2017 - মরগান পেক_
-
-## ইথেরিয়াম কীভাবে কাজ করে {#how-ethereum-works}
-
-সাধারণভাবে ইথেরিয়াম এবং ব্লকচেইন প্রযুক্তির উচ্চ স্তরের ব্যাখ্যা।
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _ সেপ্টেম্বর 27, 2017 - প্রীতি কাসিরেড্ডি_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _অক্টোবর 2, 2016 - অ্যান্টনি লুইস _
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _জানুয়ারী 26, 2018 - জুবিন কোটিচা_
-- [ntroduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _জুলাই 19, 2018 - জুবিন কোটিচা_
-
-## স্মার্ট কন্ট্রাক্ট {#smart-contracts}
-
-একটি "স্মার্ট কন্ট্র্যাক্ট" হল ইথেরিয়ামে চালিত একটি কোডের অংশ। এটিকে একটি "কন্ট্রাক্ট" বলা হয় কারণ ইথেরিয়ামে চালিত কোডটি ETH বা অন্যান্য ডিজিটাল সম্পদের মতো মূল্যবান জিনিসগুলিকে নিয়ন্ত্রণ করতে পারে।
-
-- স্মার্ট কন্ট্রাক্ট সহ ইথেরিয়ামে কীভাবে প্রোগ্রাম শুরু করবেন তা শিখতে চান? [ ethereum.org/developers](/bn/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _নভেম্বর 12, 2018 - আন্ড্রেয়াস এম আন্তোপোলোস, গ্যাভিন উড_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications)_প্রায়শই আপডেট করা হয় - Ethhub_
-
-## প্রুফ অফ ওয়ার্ক ও মাইনিং {#proof-of-work-and-mining}
-
-ইথেরিয়াম বর্তমানে "প্রুফ অফ ওয়ার্ক" নামে একটি সিস্টেম ব্যবহার করে। এটি ইথেরিয়াম নেটওয়ার্ককে ইথেরিয়াম ব্লকচেইনে লিপিবদ্ধ সমস্ত তথ্যের স্থিতিতে একমত হওয়ার অনুমতি দেয় এবং নির্দিষ্ট ধরণের অর্থনৈতিক আক্রমণ প্রতিরোধ করে।
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _এথহাব দ্বারা প্রায়শই আপডেট করা হয়_
-
-ETH 2.0 এ, ইথেরিয়াম "প্রুফ অফ স্টেক" নামে একটি আলাদা সিস্টেমে স্থানান্তরিত হবে। [নীচে ETH 2.0 সম্পর্কে আরও পড়ুন](#eth-2-0)
-
-## ক্লায়েন্ট এবং নোড {#clients-and-nodes}
-
-ইথেরিয়াম নেটওয়ার্কটি অনেকগুলি নোড দ্বারা গঠিত, যার প্রতিটি সামঞ্জস্যপূর্ণ ক্লায়েন্ট সফ্টওয়্যার চালায়। দুটি ক্লায়েন্ট আছে যা বেশিরভাগ নোড দ্বারা ব্যবহৃত হয়: [Geth](https://geth.ethereum.org/)(গো-তে লিখিত) এবং [Parity](https://www.parity.io/ethereum/) (রাস্ট-এ লিখিত)|
-
-- কীভাবে নিজের একটি নোড চালানো যায় তা শিখতে চান? →[ethereum.org/developers](/bn/developers/#clients-running-your-own-node/)
-- [সমস্ত ইথেরিয়াম ক্লায়েন্টের বিস্তৃত তালিকা](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## এন্টারপ্রাইজ ইথেরিয়াম {#enterprise-ethereum}
-
-এন্টারপ্রাইজ ইথেরিয়াম ব্যবসায়িক অ্যাপ্লিকেশনগুলির জন্য ইথেরিয়াম কোডবেসের প্রাইভেট, কনসোর্টিয়াম এবং হাইব্রিড বাস্তবায়নকে বোঝায়। বিশ্বব্যাপী সংস্থাগুলি আর্থিক বাজারগুলিকে স্ট্রিমলাইন করতে, সাপ্লাই চেইন পরিচালনা করতে এবং নতুন ব্যবসার মডেল তৈরি করতে ইতিমধ্যেই এন্টারপ্রাইজ ইথেরিয়াম ব্যবহার করছে।
-
-[এন্টারপ্রাইজ ইথেরিয়াম](/bn/enterprise/) সম্বন্ধে আরও পড়ুন ।
-
-## ইথেরিয়ামের স্কেলিবিলিটি উন্নয়ন {#improving-ethereums-scalability}
-
-ইথেরিয়ামকে আরও "স্কেলেবল" করার জন্য এর গতি এবং সামগ্রিক লেনদেনের থ্রুপুট-এর উন্নতি করার দ্বারা অনেকগুলি প্রচেষ্টা চলছে। সাধারণত এগুলিকে "স্তর 1" এবং "স্তর 2" সমাধানগুলিতে সাজানো হয়।
-
-"স্তর 1" বলতে মূল ইথেরিয়াম প্রোটোকলটিকে উন্নত করা বোঝায়। ইথেরিয়ামের মূল প্রোটোকলটি উন্নত করার জন্য প্রাথমিক প্রোজেক্ট হলো [ETH 2.0](#eth-2-0)
-
-"স্তর 2" এমন প্রযুক্তিগুলিকে বোঝায় যা বেস ইথেরিয়াম প্রোটোকলের "উপরে" নির্মিত হয়, সুরক্ষা নিয়ে কোনও আপস না করে বৃহত্তর স্কেলিবিলিটি সক্ষম করে। সাইড-চেইনের মতো "অফ-চেইন" প্রযুক্তিও রয়েছে, যা সুরক্ষা ট্রেডঅফের একটি ভিন্ন সেট তৈরি করে বৃহত্তর স্কেলেবিলিটি সক্ষম করে।
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4)_ফেব্রুয়ারী 12, 2018 - জোশ স্টার্ক_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 জানুয়ারী, 2019 - হান্টার হিলম্যান, স্টিভেন ম্যাককি, এবং এরিক ওলসজেউস্কি_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 এপ্রিল, 2019 - আন্দ্রেস ওয়ালেনডাহল_
-
-### পারিশ্রমিক এবং & রাষ্ট্রীয় চ্যানেল {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) নভেম্বর 6, 2015 - জেফ কোলম্যান
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _ District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/)_ এথহাব দ্বারা প্রায়শই আপডেট করা হয়।_
-
-### সাইডচেন {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447)_ ফেব্রুয়ারি 8, 2018 - জর্জিওস কনস্ট্যান্টপোলোস_
-
-### প্লাসমা {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _ফেব্রুয়ারী 7, 2019 - ড্যানিয়েল গোল্ডম্যান_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [প্লাসমা সম্পর্কে জানুন - প্লাসমা ফ্রেমওয়ার্ক সম্পর্কে তথ্যকোষ](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ইটিএইচ 2.0 ("সেরেনিটি" নামেও পরিচিত) মূল ইথেরিয়াম প্রোটোকলের পরবর্তী বড় আপগ্রেডকে বোঝায়। এটি ইথেরিয়ামের মূল প্রোটোকল বা "স্তর 1" এর সাথে বেশ কয়েকটি উন্নতি একত্রিত করেছে।.
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _এথহাব দ্বারা প্রায়শই আপডেট করা হয়।_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _ ডিসেম্বর 9, 2018 - ক্রিস্টিন কিম_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _এথহাব দ্বারা প্রায়শই আপডেট করা হয়।_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _ এথহাব দ্বারা প্রায়শই আপডেট করা হয়।_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin ](https://youtu.be/kCVpDrlVesA)_ (ভিডিও) নভেম্বর, 2018 - ইউটিউব_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _জানুয়ারী 24, 2019 - ইথহাব_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _জুলাই 15, 2019 - ইথহাব_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 জুলাই, 2019 - ব্রুনো স্কভোর্চ_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x হলো বিদ্যমান ইথেরিয়াম প্রোটোকলের আপগ্রেডগুলির একটি সংগ্রহের নাম। যার লক্ষ্যটি হল ইথেরিয়ামের উন্নতি বজায় রাখা ও অব্যাহত রাখার সময় ETH 2.0 বিকাশ এবং প্রয়োগ করা।
-আরো তথ্যের জন্য [ETH 1.x সম্বন্ধে EthHub এর ব্যাখ্যাকারী পাতা](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/) দেখুন
-
-## ক্রিপ্টোইকোনমিক্স {#cryptoeconomics}
-
-"ক্রিপ্টোইকোনমিক্স" হ'ল বিতরণ ব্যবস্থা তৈরির ব্যবহারিক বিজ্ঞান, যেখানে সেই ব্যবস্থাগুলির বৈশিষ্ট্যগুলি আর্থিক উত্সাহ দ্বারা সুরক্ষিত থাকে এবং যেখানে ক্রিপ্টোগ্রাফি দ্বারা অর্থনৈতিক ব্যবস্থা নিশ্চিত করা হয়। যা ইথেরিয়াম এবং বিটকয়েনের মতো ব্লকচেইনগুলির ডিজাইন এবং স্কেলিংয়ের অনুশীলনের জন্য একটি সাধারণ শব্দ মাত্র।
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(ভিডিও) 19 আগস্ট, 2018 - কার্ল ফ্লার্সচ_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _নভেম্বর 16 2017 - জোশ স্টার্ক_
-
-## সমালোচনা এবং সংশয় {#critique-and-skepticism}
-
-ইথেরিয়াম এবং ক্রিপ্টোকারেন্সিগুলির সমালোচনামূলক মতামত।
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27 শে মার্চ, 2019 - রিক ডাডলির সাথে সাক্ষাৎকার_
-- [The Challenges of Building Ethereum Infrastructure ](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _জানুয়ারী 8, 2018 - জেমসন লপ্প_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(ভিডিও) 10 ই মার্চ, 2019 - রিক ডাডলি_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _ফেব্রুয়ারি 6, 2019 - ব্রুস শ্নেয়ার_
diff --git a/src/content/translations/cs/learn/index.md b/src/content/translations/cs/learn/index.md
deleted file mode 100644
index 93b62b83c0d..00000000000
--- a/src/content/translations/cs/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Základní informace o Ethereu
-description: Soubor technických a netechnických článků, příruček a zdrojů informací o Ethereu.
-lang: cs
-sidebar: true
-sidebarDepth: 1
----
-
-# Základní informace o Ethereu {#learn-about-ethereum}
-
-**Vítejte na stránkách [ethereum.org/learn](/learn/), základním zdroji informací, který vám pomůže dozvědět se více o Ethereu.** Tato stránka obsahuje **technické i netechnické** články, příručky a zdroje. Pokud toho o Ethereu zatím moc nevíte, [doporučujeme vám začít zde](/beginners/).
-
-Zajímavé zdroje informací na úvod:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18. srpna 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18. února 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16. ledna 2019 - Josh Stark, Evan Van Ness a Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29. března 2019 - Virgil Griffith_
-
-Kromě zdrojů uvedených na této stránce stojí za pozornost řada dalších komunitních zdrojů informací:
-
-- [EthHub](https://docs.ethhub.io) _Rozsáhlá znalostní báze o Ethereu_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Naučně vzdělávací informace o Ethereu pro začátečníky_
-- [Ethereum.wiki](https://eth.wiki) _Komunitou udržovaná wiki dokumentace Ethereum technologií_
-- [Kauri](https://kauri.io) _Technické články a návody pro Ethereum a související projekty_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videa a rozhovory o Ethereu_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Týdenní newsletter o stěžejních novinkách ve vývoji Etherea_
-- [What’s new in ETH 2.0](https://eth2.news) _Pravidelný newsletter o vývoji ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Hlubší technické diskuze o Ethereu pro ETH 2.0 a dále_
-- [ETHGlobal](https://ethglobal.co) _Ethereum hackathon – zúčastněte se ve vašem okolí!_
-
-## Pro začátečníky {#ethereum-basics}
-
-Nováček ve světě Etherea? Tyto články a zdroje jsou dobrým místem pro začátek.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23. února 2017 - Linda Xie_
-- [Video: Co je Ether a Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25. dubna 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is Ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Pravidelně aktualizováno – EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _23. července 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30. ledna 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28. září 2017 - Morgan Peck_
-
-## Jak funguje Ethereum {#how-ethereum-works}
-
-Obecný popis technologií blockchain a Ethereum.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27. září 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2. října 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26. ledna 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19. července 2018 - Zubin Koticha_
-
-## Smart kontrakty {#smart-contracts}
-
-Zjednodušeně řečeno, „smart kontrakt“ je kód programu, který může běžet na Ethereu. „Kontrakt“ se nazývá proto, že kód běžící na Ethereu umožňuje nakládat s cennými zdroji, jako je například ETH, anebo jinými digitálními aktivy.
-
-- Chcete se naučit programovat „smart kontrakty“ na Ethereu? [ethereum.org/developers](/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12. listopadu 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Pravidelně aktualizováno - Ethhub_
-
-## Proof-of-work a těžba {#proof-of-work-and-mining}
-
-Ethereum v současnosti používá systém „proof-of-work“. Ten umožňuje členům sítě Ethereum dosáhnout společného konsenzu o tom, v jakém stavu jsou informace na blockchain Ethereum zaznamenávány, a zabraňuje tak celé řadě ekonomických útoků.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Pravidelně aktualizováno – Ethhub_
-
-V následující verzi ETH 2.0 plánuje Ethereum využívat jiný systém s názvem „proof-of-stake“. [Více o ETH 2.0 se můžete dozvědět níže](/#eth-2-0).
-
-## Klienti a uzly {#clients-and-nodes}
-
-Síť Ethereum je tvořena velkým množstvím uzlů, na kterých běží kompatibilní software (klient). Většina uzlů používá jednoho z následujících klientů: [Geth](https://geth.ethereum.org/) (napsaný v jazyku Go) nebo [Parity](https://www.parity.io/ethereum/) (napsaný v jazyku Rust).
-
-- Chcete se naučit provozovat vlastní uzel? → [ethereum.org/developers](/developers/#clients-running-your-own-node)
-- [Rozsáhlý přehled všech klientů Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum pro firmy {#enterprise-ethereum}
-
-Ethereum pro firmy označuje soukromé, firemní a hybridní implementace Etherea pro podnikové aplikace. Společnosti po celém světě používají Ethereum pro firmy pro zefektivnění finančních trhů, správu dodavatelských řetězců a vytváření nových obchodních příležitostí.
-
-Více informací o [Ethereu pro firmy](/enterprise).
-
-## Škálovatelnost Etherea {#improving-ethereums-scalability}
-
-Velké úsilí na zvýšení propustnosti a rychlosti transakcí je vynakládáno ve snaze dosáhnout lépe „škálovatelného“ Etherea. Rozlišují se řešení typu „Layer 1“ a „Layer 2“.
-
-„Layer 1“ se týká vylepšení základního protokolu Ethereum. Hlavním projektem pro vylepšení základního protokolu Ethereum je [ETH 2.0](/#eth-2-0).
-
-„Layer 2“ se týká technologií, které jsou postavené „nad“ základním protokolem Ethereum a umožňují lepší škálovatelnost, aniž by se slevovalo na bezpečnosti. Dále existují „off-chain“ technologie, jako je například side-chains, které zvyšují škálovatelnost, avšak na úkor kompromisů na úrovni bezpečnosti.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12. února 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18. ledna 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23. dubna 2019 - Andreas Wallendahl_
-
-### Platební a stavové kanály {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _6. listopadu 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Pravidelně aktualizováno – EthHub_
-
-### Sidechains {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8. února 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7. února 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma – naučný zdroj o Plasma frameworku](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (označováno jako „Serenity“) označuje následující chystané vylepšení základního protokolu Ethereum. Kombinuje celou řadu vylepšení na úrovni „Layer 1“.
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Pravidelně aktualizováno – EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _9. prosince 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Pravidelně aktualizováno – EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Pravidelně aktualizováno – EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) listopad 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _24. ledna 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15. července 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18. července 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x je označení pro skupinu vylepšení současného protokolu Ethereum. Cílem je pokračovat ve vylepšování a udržování Etherea, dokud nebude vyvinuto a implementováno ETH 2.0.
-
-Více informací naleznete na [stránce EthHub věnované ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Kryptoekonomika {#cryptoeconomics}
-
-„Kryptoekonomika“ je praktická věda o tvorbě distribuovaných systémů, jež podporují digitalizaci a decentralizaci finančních incentiv, a to tak, že ekonomické mechanismy jsou zajišťovány kryptografií. Jedná se o všeobecný termín, který zahrnuje navrhování blockchainů jako Ethereum a Bitcoin a řešení jejich škálovatelnosti.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) 19. srpna 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16. listopadu 2017 - Josh Stark_
-
-## Kritika s skepticismus {#critique-and-skepticism}
-
-Kritické pohledy na Ethereum a kryptoměny.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27. března 2019 - Interview s Rick Dudleym_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8. ledna 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) 10. března 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6. února 2019 - Bruce Schneier_
diff --git a/src/content/translations/de/eth2/beacon-chain/index.md b/src/content/translations/de/eth2/beacon-chain/index.md
index 43f7f3aed91..ac5d69cee27 100644
--- a/src/content/translations/de/eth2/beacon-chain/index.md
+++ b/src/content/translations/de/eth2/beacon-chain/index.md
@@ -15,12 +15,12 @@ summaryPoints:
---
- Die Beacon Chain wurde am 1. Dezember um 12:00 UTC eingeführt. Um mehr zu erfahren, schau dir die Daten an. Wenn Du auch beim Validieren von Transaktionen auf der Beacon Chain helfen möchtest, kannst Du Deine ETH staken .
+ Die Beacon Chain wurde am 1. Dezember, 2020 gegen Mittag der koordinierten Weltzeit eingeführt. Um mehr zu erfahren, schau dir die Daten an. Wenn Du auch beim Validieren von Transaktionen auf der Beacon Chain helfen möchtest, kannst Du Deine ETH staken .
## Welche Funktion hat die Beacon Chain? {#what-does-the-beacon-chain-do}
-Die Beacon Chain übernimmt die Koordination und Verknüpfung des Netzwerks der [Shards](/eth2/shard-chains/) und [Stakers](/eth2/staking/). Sie ist allerdings nicht mit dem heutigen [Ethereum Mainnet](/glossary/#mainnet) vergleichbar, da sie keine Zustandsveränderungen von Konten oder Smart Contracts verarbeitet.
+Die Beacon Chain übernimmt die Koordination und Verknüpfung des Netzwerks der [Shards](/eth2/shard-chains/) und [Stakers](/eth2/staking/). Aber sie ist nicht vergleichbar mit dem [Ethereum Mainnet](/glossary/#mainnet) von heute, da sie keine Zustandsveränderungen von Konten oder Smart Contracts verarbeitet.
Mit der Zeit können sich Aufgabe und Rolle der Beacon Chain zwar verändern, sie ist jedoch ein fundamentaler Baustein für das [sichere, nachhaltige und skalierbare Ethereum der Zukunft](/eth2/vision/).
@@ -36,11 +36,11 @@ Das Staking als Validator ist einfacher, als das [Mining](/developers/docs/minin
Wenn du Interesse hast, die Beacon Chain als Validator sicherer zu machen, kannst du hier mehr über das Staking lernen.
-Staking ist auch eine ganz wesentliche Veränderung im Vorfeld des zweiten großen Eth2-Upgrades: [Shard Chains](/eth2/shard-chains/).
+Dies ist auch eine wichtige Neuerung für ein anderes Eth2-Upgrade: [Shard Chains](/eth2/shard-chains/).
### Vorbereitung für Shard Chains {#setting-up-for-shard-chains}
-Shard Chains werden das zweite Eth2-Upgrade sein. Durch die Erweiterung des Netzwerkes auf 64 Blockchains werden sie Netzwerkapazitäten und Verarbeitungsgeschwindigkeit erhöhen. Die Beacon Chain ist ein erster wichtiger Schritt für die Einführung von Shard Chains, da diese Staking zum sicheren Gebrauch benötigen.
+Nachdem das Mainnet mit der Beacon Chain verschmolzen ist, wird das nächste Upgrade die Shard Chains in das proof-of-stake-Netzwerk einbringen. Diese "Shards" werden die Kapazität des Netzwerks erhöhen und die Transaktionsgeschwindigkeit verbessern, indem das Netzwerk auf 64 Blockchains erweitert wird. Die Beacon Chain ist ein erster wichtiger Schritt für die Einführung von Shard Chains, da diese Staking zum sicheren Gebrauch benötigen.
Letztlich wird die Beacon Chain durch ein Zufallsprinzip auch dafür sorgen, dass Staker zum Validieren der einzelnen Shard Chains zugewiesen werden. Dies ist der Schlüssel, um die unerlaubte Zusammenarbeit von Stakern zur Übernahme eines Shards zu erschweren. Um genau zu sein reduziert es die Wahrscheinlichkeit [auf 1 zu eine Billion](https://medium.com/@chihchengliang/minimum-committee-size-explained-67047111fa20).
@@ -50,9 +50,9 @@ Die Eth2-Upgrades sind alle miteinander verknüpft. Zusammenfassend wirkt sich d
### Mainnet und die Beacon Chain {#mainnet-and-beacon-chain}
-Zu Beginn wird die Beacon Chain parallel und als separate Blockchain zum heutigen Ethereum-Mainnet existieren. Letztlich werden jedoch beide verbunden sein. Der Plan ist, das Mainnet an das proof-of-stake-system "anzudocken", welches von der Beacon Chain kontrolliert und koordiniert wird.
+Die Beacon Chain wird zunächst getrennt vom Ethereum Mainnet existieren, welches wir derzeit nutzen. Letztlich werden jedoch beide verbunden sein. Der Plan ist, das Mainnet mit dem proof-of-stake-System zu "verschmelzen", das von der Beacon Chain kontrolliert und koordiniert wird.
-Das Andocken
+Die Fusion
### Shards und die Beacon Chain {#shards-and-beacon-chain}
diff --git a/src/content/translations/de/eth2/merge/index.md b/src/content/translations/de/eth2/merge/index.md
index 2c95bff1af5..ce4d523cd11 100644
--- a/src/content/translations/de/eth2/merge/index.md
+++ b/src/content/translations/de/eth2/merge/index.md
@@ -1,67 +1,65 @@
---
-title: Andocken von Mainnet mit Eth2
-description: Lerne mehr über das Andocken - wenn das Ethereum-Mainnet mit dem durch die Beacon Chain koordinierten proof-of-stake-System verbunden wird.
+title: Die Zusammenführung
+description: Lerne mehr über die Fusion - wenn das Ethereum-Mainnet mit dem durch die Beacon Chain koordinierten proof-of-stake-System verbunden wird.
lang: de
template: eth2
sidebar: true
image: ../../../../../assets/eth2/merge.png
summaryPoints:
[
- 'Letztendlich wird das aktuelle Ethereum-Mainnet mit den restlichen Eth2-Upgrades "andocken".',
- 'Das Andocken stellt den Zusammenschluss des "Eth1"-Mainnet mit der Eth2-Beacon Chain und dem Sharding-System dar.',
- "Dies markiert das Ende von proof-of-work für Ethereum und den vollständigen Übergang zu proof-of-stake.",
- 'Im technischen Entwicklungsplan ist damit die "Phase 1,5" gemeint.',
+ 'Letztlich wird das aktuelle Ethereum Mainnet mit dem beacon chain koordiniertem proof-of-stake system "fusioniert".',
+ "Dies vermerkt das Ende von proof-of-work in Ethereum und zugleich den Start, zu einem vollen Übergang in proof-of-stake.",
+ "Dies ist geplant, um der Veröffentlichung von shard chains zuvorzukommen.",
+ 'Welches wir zuvor als "die Kupplung" bezeichneten.',
]
---
- Dieses Upgrade erfolgt im Anschluss an die Implementierung von Shard Chains. Es stellt den Moment dar, in dem die Eth2-Vision Realität wird – ein durch Staking außerordentlich skalierbares, sicheres und nachhaltiges Netzwerk.
+ Dieses Upgrade stellt den offiziellen Wechsel zum proof-of-stake-Konsens dar. Dadurch entfällt das energieintensive Mining, stattdessen wird das Netzwerk durch den Einsatz von Staked Ether gesichert. Ein wirklich spannender Schritt zur Verwirklichung der Eth2-Vision - mehr Skalierbarkeit, Sicherheit und Nachhaltigkeit.
-## Was ist mit Andocken gemeint? {#what-is-the-docking}
+## Was ist die Verkuppelung? {#what-is-the-docking}
-Es ist wichtig, zu verstehen, dass die Eth2-Upgrades zuerst unabhängig und separat vom heutigen [Mainnet](/glossary/#mainnet) eingeführt und umgesetzt werden. Das Ethereum-Mainnet wird unverändert mittels [proof-of-work](/developers/docs/consensus-mechanisms/pow/) gesichert, auch während die [Beacon Chain](/eth2/beacon-chain/) und ihre [Shard Chains](/eth2/shard-chains/) parallel dazu operieren und dazu [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) anwenden. Mit Andocken ist der Moment gemeint, an dem diese beiden Systeme zusammengeführt werden.
+Es ist wichtig, sich daran zu erinnern, dass die [Beacon Chain](/eth2/beacon-chain/) ursprünglich getrennt vom [Mainnet](/glossary/#mainnet) - der Chain, die wir heute verwenden - eingeführt wurde. Das Ethereum Mainnet wird weiterhin durch [Proof-of-Work](/developers/docs/consensus-mechanisms/pow/) gesichert, auch wenn die Beacon Chain parallel dazu mit [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) läuft. Die Verkupplung ist der Moment, in dem diese beiden Systeme endlich zusammenkommen.
-Stelle dir Ethereum als Raumschiff vor, das noch nicht ganz für seine interstellare Reise bereit ist. Mit der Beacon Chain und Shard Chains hat die Community einen neuen Motor und einen gestählten Rumpf konstruiert. Wenn es an der Zeit ist, werden diese neuen Systeme an das Raumschiff angedockt, werden ein Teil davon; bereit, um Lichtjahre in die Zukunft zu springen.
+Stelle dir Ethereum als Raumschiff vor, das noch nicht ganz für seine interstellare Reise bereit ist. Mit der Beacon Chain hat die Community einen neuen Motor und einen gehärteten Rumpf gebaut. Wenn die Zeit reif ist, wird das aktuelle Schiff an das neue System andocken und zu einem Schiff verschmelzen, das bereit ist, einige Lichtjahre zurückzulegen und das Universum zu erobern.
-## Andocken ans Mainnet {#docking-mainnet}
+## Die Fusion mit dem Mainnet {#docking-mainnet}
-Wenn alles bereit ist, wird das Ethereum-Mainnet an die Beacon Chain "angedockt" und zu seinem eigenen Shard werden, die statt [proof-of-work](/developers/docs/consensus-mechanisms/pow/) das proof-of-stake-Verfahren anwendet.
+Wenn es soweit ist, wird das Ethereum Mainnet mit der Beacon Chain "verschmelzen" und ein eigener Shard werden, der proof-of-stake statt [Proof-of-Work](/developers/docs/consensus-mechanisms/pow/) verwendet.
Mainnet wird es sowohl ermöglichen, Smart Contracts ins proof-of-stake-System einzubringen, als auch die gesamte Geschichte und den aktuellen Zustand von Ethereum, um einen flüssigen Übergang für alle Besitzer und Nutzer von ETH zu garantieren.
-
-Before Mainnet docks with the new eth2 system, it’s probably worthwhile sorting some of the issues that are in flight – often referred to as Ethereum1.x.
+## Nach der Verkupplung {#after-the-merge}
-These include Improvements for
+Dies bedeutet das Ende von Proof-of-Work für Ethereum und beginnt die neue Ära eines nachhaltigeren, umweltfreundlicheren Ethereum. An diesem Punkt wird Ethereum der in [Eth2 vision](/eth2/vision/) beschriebenen vollen Skalierung, Sicherheit und Nachhaltigkeit einen Schritt näher sein.
-- **End users**: like [EIP-1559](https://eips.ethereum.org/EIPS/eip-1559) which changes the way users bid for blockspace. In other words, making transaction fees more efficient for end users.
-- **Client runners**: making running clients more sustainable by capping disk space requirements.
-- **Developers**: upgrading the EVM to be more flexible.
+Es ist wichtig zu erwähnen, dass ein Ziel der Verkupplung die Unkompliziertheit ist, um den Übergang von Proof-of-Work zu proof-of-stake zu beschleunigen. Die Entwickler konzentrieren ihre Bemühungen auf diesen Übergang und verzichten zunächst auf zusätzliche Funktionen, die dieses Ziel verzögern könnten.
-Plus many more.
+**Das bedeutet, dass einige Funktionen, wie z.B. die Möglichkeit, ETH-Einsätze zurückzuziehen, noch etwas länger warten müssen, bis die Verkupplung abgeschlossen ist.** Geplant ist ein "Cleanup"-Upgrade nach dem Merge, um diese Funktionen zu verbessern, was voraussichtlich sehr bald nach Abschluss des Merges geschehen wird.
-[More on Ethereum1.x](/learn/#eth-1x)
+## Beziehung zwischen den Upgrades {#relationship-between-upgrades}
-These improvements all have a place in Eth2 so it’s likely that their progress may affect the timing of the docking. -->
+Die Eth2-Upgrades sind alle miteinander verknüpft. Fassen wir also noch einmal zusammen, wie die Verkupplung mit den anderen Upgrades zusammenhängt.
-## Nach dem Andocken {#after-the-docking}
+### Der Verkupplung und die Beacon Chain {#docking-and-beacon-chain}
-Dies bedeutet das Ende von proof-of-work für Ethereum und beginnt die neue Ära eines nachhaltigeren, umweltfreundlicheren Ethereum. Von da an wird Ethereum gemäß der [Eth2-Vision](/eth2/vision/) skalierbarer, sicherer und nachhaltiger sein.
+Sobald die Verkupplung erfolgt ist, werden Staker eingesetzt, um das Ethereum Mainnet zu validieren. [Mining](/developers/docs/consensus-mechanisms/pow/mining/) wird nicht mehr erforderlich sein, sodass die Miner aller Voraussicht nach ihre verdienten Ether ins Staking im Rahmen des proof-of-stake-Systems einbringen werden.
-## Beziehung zwischen den Upgrades {#relationship-between-upgrades}
+Die Beacon Chain
-Die Eth2-Upgrades stehen allesamt in Verbindung zueinander. Zusammenfassend steht das Andocken wie folgt in Verbindung zu den anderen Upgrades:
+### Die Verkupplung und die Bereinigung nach der Verkupplung {#merge-and-post-merge-cleanup}
-### Andocken und die Beacon Chain {#docking-and-beacon-chain}
+Unmittelbar nach der Zusammenführung werden einige Funktionen wie z. B. die Auszahlung von staked ETH noch nicht direkt unterstützt. Dies soll kurz nach der Fusion mit einem separaten Upgrade folgen.
-Sobald das Andocken erfolgt, werden Staker zugewiesen, um das Ethereum-Mainnet zu validieren. Genau wie bei den Shard Chains. [Mining](/developers/docs/consensus-mechanisms/pow/mining/) wird nicht mehr erforderlich sein, sodass die Miner aller Voraussicht nach ihre verdienten Ether ins Staking im Rahmen des proof-of-stake-systems einbringen werden.
+Bleiben Sie auf dem Laufenden mit dem [EF Research and Development Blog](https://blog.ethereum.org/category/research-and-development/). Für Neugierige: Erfahren Sie mehr darüber, [ was nach der Verkupplung passiert](https://youtu.be/7ggwLccuN5s?t=101), präsentiert von Vitalik an der ETHGlobal Veranstaltung im April 2021.
-Die Beacon Chain
+### Die Verkupplung und die Shard Chains {#docking-and-shard-chains}
-### Andocken und Shard Chains {#docking-and-shard-chains}
+Ursprünglich war geplant, vor der Verkupplung an Shard Chains zu arbeiten, um die Skalierbarkeit zu verbessern. Mit dem Boom der [Layer-2-Skalierungslösungen](/developers/docs/scaling/#layer-2-scaling) hat sich die Priorität jedoch auf die Umwandlung von Proof-of-Work in proof-of-stake über die Verkupplung verlagert.
-Da das Mainnet zu einem Shard werden wird, ist die erfolgreiche Implemetierung der Shard Chains für dieses Upgrade von entscheidender Bedeutung. Dieser Übergang wird vermutlich Stein des Anstoßes dafür sein, ob sich die Community dafür entscheidet, ob bzgl. des Sharding ein zweites Upgrade nötig ist. Solch ein Upgrade würde dann weitere Shards wie das Mainnet erstellen. Diese würden nicht nur weitere Daten liefern, sondern auch Transaktionen und Smart Contracts bearbeiten.
+Dies wird eine fortlaufende Bewertung der Gemeinschaft hinsichtlich der Notwendigkeit von möglicherweise mehreren Runden von Shard Chains sein, um eine unbegrenzte Skalierbarkeit zu ermöglichen.
Shard Chains
diff --git a/src/content/translations/de/eth2/shard-chains/index.md b/src/content/translations/de/eth2/shard-chains/index.md
index 5b6fcfffb8e..0336f944106 100644
--- a/src/content/translations/de/eth2/shard-chains/index.md
+++ b/src/content/translations/de/eth2/shard-chains/index.md
@@ -7,15 +7,15 @@ sidebar: true
image: ../../../../../assets/eth2/newrings.png
summaryPoints:
[
- "Sharding ist ein mehrphasiges Update um Ethereums Skalierbarkeit und Kapazität zu erhöhen.",
- "Shard Chains verteilen die Last des Netzwerks auf 64 neue Chains.",
- "Sie machen es einfacher, eine Node zu betreiben, indem sie die Anforderungen an die Hardware niedrig halten.",
- "Die technische Roadmap beinhaltet die Arbeit an Shard Chains in Phase 1 und möglicherweise Phase 2.",
+ "Sharding ist ein mehrstufiges Upgrade zur Verbesserung der Skalierbarkeit und Kapazität von Ethereum.",
+ "Shard Chains verteilen die Last des Netzes auf 64 neue Ketten.",
+ "Sie erleichtern den Betrieb einer Node, indem sie die Hardwareanforderungen niedrig halten.",
+ "Dieses Upgrade ist nach der Verkupplung des Mainnet mit der Beacon Chain geplant.",
]
---
- Shard Chains sollten irgendwann in 2023 implementiert werden – in Abhängigkeit davon, wie schnell die Arbeit voranschreitet, nachdem die Beacon Chain eingeführt wurde. Diese Shards werden Ethereum mehr Kapazität für das Speichern und den Zugriff auf Daten geben, aber sie werden nicht für die Ausführung von Codes verwendet. Die Details hierfür werden noch ausgearbeitet.
+ Shard Chains sollten irgendwann im Jahr 2023 erscheinen, je nachdem, wie schnell die Arbeit nach der Verkupplung voranschreitet. Diese Shards werden Ethereum mehr Kapazität für das Speichern und den Zugriff auf Daten geben, aber sie werden nicht für die Ausführung von Codes verwendet. Die Details hierfür werden noch ausgearbeitet.
## Was ist Sharding? {#what-is-sharding}
@@ -48,11 +48,15 @@ Wenn die ersten Shard Chains implementiert sein werden, werden diese zunächst e
Rollups sind eine "Layer 2"-Technologie, die heute bereits existiert. Sie erlauben dApps, Transaktionen zu bündeln oder sie mittels "Roll up" in eine einzelne Transaktions-Off-Chain zu vereinen, einen kryptographischen Beweis zu erstellen und diesen dann zur Chain zu senden. Dies reduziert die Datenmenge, die für eine Transaktion benötigt wird. Kombiniert mit der zusäzlichen Datenverfügbarkeit durch die Shards erhält man 100.000 Transaktionen pro Sekunde.
-[Mehr zu Rollups](/developers/docs/scaling/layer-2-rollups/)
+
+ Angesichts der jüngsten Fortschritte bei der Erforschung und Entwicklung von Layer-2-Skalierungslösungen hat dies dazu geführt, dass das Merge-Upgrade vor den Shard Chains Priorität hat. Diese werden nach dem Übergang vom Mainnet zum Proof of Stake im Mittelpunkt stehen.
+
+[Mehr über Rollups](/developers/docs/scaling/layer-2-rollups/)
+
## Shard Chains Version 2: Codeausführung {#code-execution}
-Der Plan war es immer, den Shards eine extra Funktionalität hinzuzufügen, um sie ähnlich dem heutigen [Ethereum-Mainnet](/glossary/#mainnet) zu gestalten. Dies ermöglicht ihnen, Smart Contracts zu speichern und auszuführen und Konten zu verwalten. Aber ist das in Anbetracht des Anstiegs der Transaktionen pro Sekunde, den Shards der Version 1 bieten, überhaupt noch nötig? Dies wird in der Community nach wie vor diskutiert und es scheint, als gäbe es verschiedene Optionen.
+Der Plan war immer den shards extra Funktionalität zu verleihen, um sie ähnlich zu dem heutigen [Ethereum Mainnet](/glossary/#mainnet) zu gestalten. Dies ermöglicht ihnen, Smart Contracts zu speichern, auszuführen und Konten zu verwalten. Aber ist das in Anbetracht des Anstiegs der Transaktionen pro Sekunde, den Shards der Version 1 bieten, überhaupt noch nötig? Dies wird in der Community nach wie vor diskutiert und es scheint, als gäbe es verschiedene Optionen.
### Benötigen Shards Codeausführung? {#do-shards-need-code-execution}
@@ -82,19 +86,21 @@ Dies ist immer noch ein aktiver Diskussionspunkt. Wir werden diese Seite updaten
## Beziehung zwischen Updgrades {#relationship-between-upgrades}
-Die Eth2-Upgrades stehen alle miteinander in Verbindung. Im Folgenden wollen wir einen kurzen Blick darauf werfen, wie Shard Chains zu anderen Upgrades in Beziehung stehen.
+Die Eth2-Upgrades sind alle miteinander verknüpft. Im Folgenden wollen wir einen kurzen Blick darauf werfen, wie Shard Chains zu anderen Upgrades in Beziehung stehen.
### Shards und die Beacon Chain {#shards-and-beacon-chain}
-Die Beacon Chain enthält die komplette Logik, um Shards sicher und synchron zu halten. Die Beacon Chain wird die Staker im Netzwerk koordinieren und sie den Shards zuweisen, an denen sie arbeiten müssen. Sie wird außerdem die Kommunikation zwischen den einzelnen Shards sicherstellen, indem sie Transaktionsdaten einzelner Shards empfängt und abspeichert, auf die andere Shards wiederum zugreifen können. Jeder Shard hat dadurch Zugriff auf den Status von Ethereum und kann diesen laufend aktualisieren.
+Die Beacon Chain enthält die gesamte Logik für die Sicherheit und Synchronisierung der Shards. Die Beacon Chain koordiniert die Staker im Netzwerk und weist ihnen die Shards zu, an denen sie arbeiten müssen. Sie wird außerdem die Kommunikation zwischen den einzelnen Shards sicherstellen, indem sie Transaktionsdaten einzelner Shards empfängt und abspeichert, auf die andere Shards wiederum zugreifen können. Jeder Shard hat dadurch Zugriff auf den Status von Ethereum und kann diesen laufend aktualisieren.
Die Beacon Chain
-### Shards und das Andocken {#shards-and-docking}
+### Shards und die Verkupplung {#shards-and-docking}
+
+Wenn weitere Shards hinzugefügt werden, wird das Ethereum Mainnet bereits durch die Beacon Chain mit Proof of Stake gesichert sein. Dies ermöglicht ein produktives Mainnet, auf dem Shard Chains aufgebaut werden können, angetrieben von Layer-2-Lösungen, die die Skalierbarkeit erhöhen.
-Auch nach der Einführung von Shards wird das heutige Ethereum-Mainnet weiterhin existieren. An einem gewissen Punkt wird das Mainnet allerdings ein Shard werden müssen, damit der Übergang von proof-of-work zu proof-of-stake – und damit zum Staking – möglich wird. Es muss sich noch herausstellen, ob das Mainnet der einzige sogenannte "smarte" Shard sein wird, der Code ausführen kann. So oder so wird eine Entscheidung darüber in Phase 2 des Sharding fallen.
+Es bleibt abzuwarten, ob das Mainnet als einziger "intelligenter" Shard existieren wird, der die Ausführung von Code ermöglicht - in jedem Fall aber kann die Entscheidung, die Shards zu erweitern, bei Bedarf revidiert werden.
-Das Andocken
+Die Verkupplung
diff --git a/src/content/translations/es/learn/index.md b/src/content/translations/es/learn/index.md
deleted file mode 100644
index e43aca42b0e..00000000000
--- a/src/content/translations/es/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Obtener información sobre Ethereum
-description: Un conjunto de artículos técnicos, no técnicos, guías y otros recursos para aprender sobre Ethereum.
-lang: es
-sidebar: true
-sidebarDepth: 1
----
-
-# Obtener información sobre Ethereum {#learn-about-ethereum}
-
-**Te damos la bienvenida a [ethereum.org/learn](/learn/), un conjunto de recursos para ayudarte a aprender más sobre Ethereum.** Esta página incluyen artículos y guías, además de recursos técnicos **y** no técnicos. Si eres principiante en Ethereum, te sugerimos que empieces [aquí](/what-is-ethereum/).
-
-Estos son excelentes puntos de partida:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be), _18 de septiembre de 2017, Vitalik Buterin (vídeo)_
-- [Por qué la descentralización importa](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 de Febrero de 2018, Chris Dixon_
-- [El año en Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 de Enero de 2019, Josh Stark, Evan Van Ness y Daniel Zakrisson_
-- [Ethereum es, literalmente, una tecnología revolucionaria](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29 de Marzo de 2019, Virgil Griffith_
-
-Además de la información en esta página, hay muchos recursos creados por la comunidad que vale la pena explorar:
-
-- [EthHub](https://docs.ethhub.io) _Base de conocimiento integral para todo lo relacionado con Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Un recurso educativo sobre Ethereum dirigido a principiantes_
-- [Ethereum.wiki](https://eth.wiki) _Una wiki construida por la comunidad sobre la tecnología de Ethereum_
-- [Kauri](https://kauri.io) _Artículos técnicos y tutoriales para Ethereum y proyectos relacionados_
-- [YouTube de Ethereum Foundation](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Charlas y vídeos sobre Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Un boletín semanal que cubre los desarrollos clave en todo el ecosistema_
-- [What’s new in ETH 2.0](https://eth2.news) _Un boletín regular sobre el desarrollo de ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Discusiones más técnicas sobre Ethereum para ETH 2.0 y versiones más recientes._
-- [ETHGlobal](https://ethglobal.co) _Una serie de hackatones de Ethereum: ¡participa en el más cercano!_
-
-## Conceptos básicos de Ethereum {#ethereum-basics}
-
-¿Nuevo en Ethereum? Estos artículos y recursos son un buen lugar para empezar.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf), _23 de febrero de 2017, Linda Xie_
-- [Video: ¿qué es ether y qué es Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 de Abril de 2019, CME Group_
-- [¿Qué es Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [¿Qué es ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Frecuentemente actualizado, EthHub_
-- [Introducción a Ethereum para principiantes](https://www.mewtopia.com/absolute-beginners-guide/) _23 de Julio de 2019_
-- [El caso de Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 de Enero de 2018, Elad Gil_
-- [Blockchains: ¿cómo funcionan y por qué cambiarán el mundo?](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 de Septiembre de 2017, Morgan Peck_
-
-## Cómo funciona Ethereum {#how-ethereum-works}
-
-Definiciones de alto nivel sobre la tecnología de Ethereum y de blockchain en general.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369), _27 de septiembre de 2017, Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/), _2 de octubre de 2016, Antony Lewis_
-- [Introducción a blockchain mediante la criptoeconomía, parte 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 de Enero de 2018, Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012), _19 de julio de 2018, Zubin Koticha_
-
-## Contratos inteligentes {#smart-contracts}
-
-Un "contrato inteligente" es simplemente un fragmento de código de programación que se ejecuta en Ethereum. Se llama "contrato" porque el código que se ejecuta en Ethereum puede controlar cosas valiosas como ETH u otros activos digitales.
-
-- ¿Quieres aprender cómo programar contratos inteligentes en Ethereum? [ethereum.org/developers](/developers/)
-- [¿Qué es un contrato inteligente?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12 de Noviembre de 2018, Andreas M. Antonopoulos, Gavin Wood_
-- [¿Qué son los contratos inteligentes o aplicaciones descentralizadas?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Frecuentemente actualizado, Ethhub_
-
-## Prueba de trabajo y minería {#proof-of-work-and-mining}
-
-Actualmente Ethereum utiliza un sistema llamado "Prueba de trabajo" o "proof-of-work" (PoW). Esto permite a la red de Ethereum ponerse de acuerdo sobre el estado de toda la información registrada en la cadena de bloques de Ethereum, y evita ciertos tipos de ataques económicos.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Actualizado frecuentemente. Ethhub_
-
-En ETH 2.0, Ethereum cambiará a un sistema diferente llamado “proof-of-stake”. [Lea más sobre ETH 2.0 a continuación](/#eth-2-0).
-
-## Clientes y nodos {#clients-and-nodes}
-
-La red de Ethereum está formada por muchos nodos, cada uno de los cuales ejecuta un software cliente compatible. Se usan dos clientes en la mayoría de los nodos: [Geth](https://geth.ethereum.org/) (escrito en Go) y [Parity](https://www.parity.io/ethereum/) (escrito en Rust).
-
-- ¿Quieres aprender a ejecutar un tu propio nodo? → [ethereum.org/developers](/developers/#clients-running-your-own-node)
-- [Lista completa de todos los clientes de Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum para empresas {#enterprise-ethereum}
-
-Ethereum para empresas hace referencia a implementaciones privadas, consorciales e híbridas del código base de Ethereum para aplicaciones de negocios. Las empresas de todo el mundo ya están utilizando Ethereum para empresas para optimizar los mercados financieros, administrar las cadenas de suministro y crear nuevos modelos de negocio.
-
-Lee más acerca de [Ethereum para empresas](/enterprise).
-
-## Mejora de la escalabilidad de Ethereum {#improving-ethereums-scalability}
-
-Hay muchos esfuerzos en marcha para hacer que Ethereum sea más "escalable" mediante la mejora de su velocidad y el rendimiento general de las transacciones. Generalmente se clasifican en soluciones de "Capa 1" y "Capa 2".
-
-La "Capa 1" se refiere a la mejora del protocolo de Ethereum. El proyecto principal para mejorar el protocolo básico de Ethereum es [ETH 2.0](/#eth-2-0).
-
-La "Capa 2" se refiere a las tecnologías que se construyen "sobre" el protocolo base de Ethereum, lo que ofrece una mayor escalabilidad sin comprometer la seguridad. También existen tecnologías "off-chain" como las side-chains, que permiten una mayor escalabilidad al hacer un conjunto diferente de concesiones de seguridad.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4), _12 de febrero de 2018, Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f), _18 de enero de 2019, Hunter Hillman, Steven McKie y Eric Olszewski_
-- [5 maneras de escalar la Dapp de Ethereum](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 de Abril de 2019, Andreas Wallendahl_
-
-### Pagos y canales de estado {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/), _6 de noviembre de 2015, Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Actualizado frecuentemente. EthHub_
-
-### Sidechains {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447), _8 de febrero de 2018, Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 de febrero de 2019, Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma: un recurso de aprendizaje para el framework de Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (también conocido como "Serenity") se refiere a la próxima gran actualización del protocolo de Ethereum. Combina varias mejoras sobre protocolo básico de Ethereum o "Capa 1".
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Actualizado a menudo. EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0), _9 de diciembre de 2018, Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Actualizado frecuentemente. EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Actualizado frecuentemente. EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(vídeo), noviembre de 2018. YouTube_
-- [ETH 2.0 Investigadores AMA Parte 1](https://docs. ethhub. io/other/ethereum-2.0-ama/#part-1) _24 de enero de 2019, EthHub_
-- [ETH 2.0 Investigadores AMA Parte 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15 de Julio de 2019, EthHub_
-- [9 Cosas que no sabías acerca de Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 de julio de 2019, Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x es el nombre de una serie de actualizaciones al protocolo Ethereum existente. El objetivo es continuar mejorando y manteniendo Ethereum mientras se desarrolla e implementa ETH 2.0.
-
-Para obtener más información, consulta [Página con explicaciones de EthHub sobre ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Criptoeconomía {#cryptoeconomics}
-
-"Criptoeconomía" es la ciencia práctica de construir sistemas distribuidos, donde las propiedades de esos sistemas se consiguen mediante incentivos financieros y donde los mecanismos económicos están garantizados por la criptografía. Es el término general para la práctica de diseñar y escalar cadenas de bloques como Ethereum y Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(vídeo), 19 de agosto de 2018, Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d), _16 de noviembre 2017, Josh Stark_
-
-## Crítica y escepticismo {#critique-and-skepticism}
-
-Visiones críticas sobre Ethereum y las criptomonedas.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot), _27 de marzo 2019, entrevista con Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b), _8 de enero de 2018, Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(vídeo), 10 de marzo de 2019, Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/), _6 de febrero de 2019, Bruce Schneier_
diff --git a/src/content/translations/fr/learn/index.md b/src/content/translations/fr/learn/index.md
deleted file mode 100644
index 4c036e3f6b5..00000000000
--- a/src/content/translations/fr/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: Découvrir Ethereum
-description: Un ensemble d'articles, de guides et de ressources techniques et non techniques pour en apprendre davantage sur Ethereum.
-lang: fr
-sidebar: true
----
-
-# Découvrir Ethereum {#learn-about-ethereum}
-
-**Bienvenue sur [ethereum.org/learn](/fr/learn/), un ensemble de ressources mis à votre disposition pour en apprendre davantage sur Ethereum. ** Cette page contient des articles, guides et ressources techniques **et** non-techniques. Si vous n'y connaissez absolument rien concernant Ethereum, [nous vous proposons de commencer ici](/fr/what-is-ethereum/).
-
-Voici également quelques excellents points de départ :
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 Sep 2017 - Vitalik Buterin (Vidéo)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 Fev 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 Jan 2019 - Josh Stark, Evan Van Ness, et Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29 Mar 2019 - Virgil Griffith_
-
-En plus des informations figurant sur cette page, de nombreuses ressources développées par la communauté méritent d'être explorées :
-
-- [EthHub](https://docs.ethhub.io) _Une base de connaissance complète sur tout ce qui concerne Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Une ressource pédagogique sur Ethereum destinée aux débutants_
-- [Ethereum.wiki](https://eth.wiki) _Un Wiki créé par la communauté à propos de la technologie Ethereum_
-- [Kauri](https://kauri.io) _Articles techniques et tutoriels pour Ethereum et les projets connexes_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Vidéos et discussions à propos d'Ethereum_
-- [Actualité hebdomadaire d'Ethereum](https://weekinethereumnews.com/) _Un bulletin hebdomadaire couvrant les principaux développements sur l'écosystème _
-- [Quoi de neuf pour ETH 2.0](https://eth2.news) _Une lettre d'information régulière concernant l'évolution d'ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Des discussions techniques approfondies sur Ethereum pour ETH 2.0 et au-delà_
-- [ETHGlobal](https://ethglobal.co) _Une série de hackathons Ethereum - près de chez vous !_
-
-## Les bases d'Ethereum {#ethereum-basics}
-
-Nouveau sur Ethereum? Ces articles et ressources constituent un bon point de départ.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/Guide du débutant pour Ethereum-46dd486ceecf) _23 Fév 2017 - Linda Xie_
-- [Vidéo : Qu'est-ce que ether et Ethereum ?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 Avril 2019 - Groupe CME_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Mis à jour régulièrement - EthHub_
-- [Introduction à Ethereum pour les débutants](https://www.mewtopia.com/absolute-beginners-guide/) (en anglais) _23 Juillet 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 Jan 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 Sep 2017 - Morgan Peck_
-
-## Comment fonctionne Ethereum {#how-ethereum-works}
-
-Explications plus approfondies sur Ethereum et la technologie de la blockchain en général.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27 Sep 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2 Oct 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 Jan 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-2252f6a6c012) _26 Jan 2018 - Zubin Koticha_
-
-## Les contrats intelligents ou « _smart contracts_ » {#smart-contracts}
-
-Un contrat autonome est tout simplement un morceau de code qui s'exécute sur Ethereum. On l'appelle « contrat » car tout code s'exécutant sur Ethereum peut contrôler des choses de valeur, telles que la monnaie ETH ou d'autres actifs numériques.
-
-- Vous désirez apprendre à coder sur Ethereum avec des contrats autonomes ? [ethereum.org/developers](/fr/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Updated often - Ethhub_
-
-## Preuve de travail et minage {#proof-of-work-and-mining}
-
-Actuellement, Ethereum utilise un système appelé « preuve de travail » (_proof-of-work_). Celui-ci permet à l'ensemble du réseau Ethereum de se mettre d'accord sur l'état de toutes les informations enregistrées sur la blockchain Ethereum, empêchant ainsi certains types d'attaques économiques.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Mis à jour régulièrement - Ethhub_
-
-Avec ETH 2.0, Ethereum adoptera un système différent appelé « preuve d'enjeu » (_proof-of-stake_). [Plus d'informations sur ETH 2.0 ci-dessous](#eth-2-0).
-
-## Clients et nœuds {#clients-and-nodes}
-
-Le réseau Ethereum se compose de nombreux nœuds, chacun exécutant un logiciel client compatible. Deux clients sont majoritaires : [Geth](https://geth.ethereum.org/) (écrit en Go) et [Parity](https://www.parity.io/ethereum/) (écrit en Rust).
-
-- Vous désirez apprendre à exécuter votre propre nœud ? → [ethereum.org/developers](/fr/developers/#clients-running-your-own-node/)
-- [Liste complète de tous les clients Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum pour les Entreprises {#enterprise-ethereum}
-
-Enterprise Ethereum refers to private, consortium, and hybrid implementations of the Ethereum codebase for business applications. Companies across the globe are already using Enterprise Ethereum to streamline financial markets, manage supply chains, and create new business models.
-
-En savoir davantage sur [Enterprise Ethereum](/fr/enterprise/).
-
-## Améliorer la scalabilité d'Ethereum {#improving-ethereums-scalability}
-
-De nombreux efforts sont déployés pour rendre Ethereum plus « _scalable_ » en améliorant sa vitesse ainsi que son débit global en transactions. On catégorise généralement ceux-ci en solutions de « couche de niveau 1 » et « couche de niveau 2 ».
-
-La « couche de niveau 1 » fait référence à l'amélioration du protocole au cœur d'Ethereum. Le projet principal visant à l'amélioration de ce protocole est [ETH 2.0](#eth-2-0).
-
-La « couche de niveau 2 » fait référence aux technologies construites par dessus le protocole au cœur d'Ethereum, qui permettent un dimensionnement à l'échelle sans compromettre la sécurité. Il existe également des technologies « hors-chaîne » (_off-chain_), telles que les _sidechains_ ou chaînes latérales, qui permettent de dimensionner en acceptant un ensemble différent de compromis sur la sécurité.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12 Fév 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 Jan 2019 - Hunter Hillman, Steven McKie, et Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Apr 23, 2019 - Andreas Wallendahl_
-
-### Paiement et State Channels {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _6 Nov 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Mis à jour régulièrement - EthHub_
-
-### Chaines latérales ou _sidechains_ {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8 Fév 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 Fév 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - une ressource d'apprentissage pour les infrastructures Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (que l'on nomme également « Serenity ») fait référence à la prochaine mise à niveau majeure du protocole au cœur d'Ethereum, ou « couche de niveau 1 ». Celle-ci combine plusieurs améliorations de ce protocole.
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Mis à jour régulièrement - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _9 Déc 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Mis à jour régulièrement - EthHub_
-- [_Sharding_](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Mis à jour régulièrement - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Vidéo) Novembre 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x est le nom de toute une série de mises à jour du protocole Ethereum existant. Son but est de continuer à améliorer Ethereum et d'en assurer l'entretien pendant la phase de développement et d'implémentation d'ETH 2.0.
-
-Pour plus d'informations, consultez [la page d'explications de EthHub sur ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/) (en anglais)
-
-## Crypto-économie {#cryptoeconomics}
-
-La « crypto-économie » est la science pratique de la construction de systèmes distribués, où les propriétés de ces systèmes sont sécurisées par des incitations financières, et où les mécanismes économiques sont garantis par la cryptographie. C'est le terme général utilisé pour la conception et le dimensionnement à l'échelle des blockchains comme Ethereum et Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Vidéo) 19 Août 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16 Nov 2017 - Josh Stark_
-
-## Critiques et scepticisme {#critique-and-skepticism}
-
-Points de vue critiques sur Ethereum et les cryptomonnaies.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27 Mar 2019 - Entretien avec Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8 Jan 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Vidéo) 10 Mar 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6 Fév 2019 - Bruce Schneier_
diff --git a/src/content/translations/hu/learn/index.md b/src/content/translations/hu/learn/index.md
deleted file mode 100644
index d9dec846eca..00000000000
--- a/src/content/translations/hu/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Ismerd meg az Ethereumot
-description: Technikai és nem technikai cikkek, útmutatók és anyagok halmaza az Ethereum megismeréséhez.
-lang: hu
-sidebar: true
-sidebarDepth: 1
----
-
-# Ismerd meg az Ethereumot {#learn-about-ethereum}
-
-**Üdvözöljük az ethereum.org/learn oldalon, ahol anyagok sokasága érhető el, mely segítséget nyújt az Ethereum megismeréséhez.** Az oldal tartalmaz technikai **és** nem technikai cikkeket, útmutatókat és forrásokat. Ha neked teljesen új az Ethereum, [akkor javasoljuk, hogy kezdj itt](/hu/beginners/).
-
-Itt egy pár kiváló kiindulópont:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Sep 18, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Feb 18, 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Jan 16, 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mar 29, 2019 - Virgil Griffith_
-
-Ezen az oldalon található információk mellett számos, közösség által készített anyagot is érdemes felfedezni:
-
-- [EthHub](https://docs.ethhub.io) _Átfogó tudásbázis mindenről, ami Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Egy oktató jellegű anyag Ethereumról kezdőknek_
-- [Ethereum.wiki](https://eth.wiki) _Egy közösség által épített wiki az Ethereum technológiájáról_
-- [Kauri](https://kauri.io) _Technikai cikkek és útmutatók Ethereumról és kapcsolódó projektekről_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videók és beszélgetések Ethereumról_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Egy heti rendszerességű hírlevél, mely összefoglalja a legfontosabb fejlesztéseket az ökoszisztémán keresztül_
-- [What’s new in ETH 2.0](https://eth2.news) _Egy rendszeres hírlevél az ETH 2.0 fejlesztéséről_
-- [ethresear.ch forum](https://ethresear.ch/) _Mélyebb technikai beszélgetések Ethereumról az ETH 2.0 szempontjából és azontúl_
-- [ETHGlobal](https://ethglobal.co) _Egy Ethereum hackathon sorozat - vegyél részt a hozzád legközelebb eső helyen!_
-
-## Ethereum alapok {#ethereum-basics}
-
-Neked még új az Ethereum? Ezek a cikkek és anyagok jó kiindulási alapot biztosítanak.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Feb 23, 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _April 25, 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Gyakran frissítve - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _July 23, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Jan 30, 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _Sept 28, 2017 - Morgan Peck_
-
-## Hogy működik az Ethereum {#how-ethereum-works}
-
-Az Ethereum és a blokklánc technológia magas szintű magyarázata.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oct 2, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _July 19, 2018 - Zubin Koticha_
-
-## Okos szerződések {#smart-contracts}
-
-Az "okos szerződés" csupán egy kódrészlet, mely az Ethereumon fut. Azért hívják "szerződésnek", mert az Ethereumon futó kód értékes dolgokat kezelhet, mint például az ETH vagy más digitális javak.
-
-- Szeretnél megtanulni programozni Ethereumon okos szerződésekkel? [ethereum.org/developers](/hu/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Gyakran frissítve - Ethhub_
-
-## Proof-of-work és bányászat {#proof-of-work-and-mining}
-
-Az Ethereum jelenleg egy proof-of-work-nek nevezett rendszert használ. Ez lehetővé teszi, hogy az Ethereum hálózat az összes Ethereum blokkláncra feljegyzett információ állapotáról egyet tudjon érteni és bizonyos ökonómiai támadásokat megakadályozni.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Gyakran frissítve - Ethhub_
-
-Az ETH 2.0-val az Ethereum egy különböző rendszerre fog váltani, melyet proof-of-stake-nek hívnak. [Olvass többet az ETH 2.0-ról](#eth-2-0).
-
-## Kliensek és node-ok {#clients-and-nodes}
-
-Az Ethereum hálózat rengeteg node-ból áll, melyek kompatibilis kliens szoftvereket futtatnak. Két kliens van, melyet a node-ok nagyrésze használ: [Geth](https://geth.ethereum.org/) (Go-ban írva) és [Parity](https://www.parity.io/ethereum/) (Rust-ban írva).
-
-- Szeretnéd megtanulni, hogy kell saját node-ot futtatni? → [ethereum.org/developers](/hu/developers/#clients-running-your-own-node/)
-- [Ethereum kliensek összefoglaló listája](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Vállalati Ethereum {#enterprise-ethereum}
-
-Az Enterprise Ethereum az Ethereum kódbázis üzleti alkalmazások magán, konzorciumi és hibrid megvalósítására utal. Vállalatok szerte a világból már használják az Enterprise Ethereumot a pénzügyi piacok korszerűsítésére, az ellátási láncok kezelésére és új üzleti modellek létrehozására.
-
-Tudj meg többet az [Enterprise Ethereumról](/hu/enterprise/).
-
-## Ethereum skálázhatóságának javítása {#improving-ethereums-scalability}
-
-Számos erőfeszítés zajlik annak érdekében, hogy az Ethereum "skálázhatóbbá" váljon a sebessége és teljes tranzakciós teljesítménye által. Általában ezeket a “Layer 1” és “Layer 2” megoldások közé soroljuk.
-
-A “Layer 1” az Ethereum magprotokoll javítására utal. Az első számú projekt az Ethereum magprotokoll javítására az [ETH 2.0](#eth-2-0).
-
-A “Layer 2” olyan technológiákat jelent melyek az Ethereum alap protokoll “tetejére” épültek lehetővé téve ezáltal a magasabb fokú skálázhatóságot a biztonság veszélyeztetése nélkül. Ezenkívűl vannak “off-chain” technológiák mint például a mellékláncok, melyek nagyobb skálázhatóságot tesznek lehetővé különböző biztonsági kompromisszumokkal.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Feb 12, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Jan 18, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Apr 23, 2019 - Andreas Wallendahl_
-
-### Fizetés & állapot csatornák {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Gyakran frissítve - EthHub_
-
-### Mellékláncok {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - Plasma keretrendszer tanulási anyag](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (más néven “Serenity”) az Ethereum magprotokoll következő nagy fejlesztését jelenti. Egyesíti az Ethereum magprotokolljának, vagyis a “Layer 1-nek” számos fejlesztését.
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Gyakran frissítve - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Gyakran frissítve - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Gyakran frissítve - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x a meglévő Ethereum protokoll fejlesztéseinek gyűjteménye. A cél az Ethereum fejlesztésének folytatása az ETH 2.0 fejlesztése és implementálása alatt.
-
-További információért látogasd meg az [EthHub ismeretető oldalát az ETH 1.x-ről](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Kriptoökonómia {#cryptoeconomics}
-
-A “Kriptoökonómia” egy elosztott rendszerek építését kutató gyakorlati tudomány, ahol ezen rendszerek tulajdonságait pénzügyi ösztönzők biztosítják és ahol a közgazdaságtani mechanizmusok kriptográfiával vannak garantálva. Ez az általános kifejezés olyan blokkláncok tervezési és skálázási gyakorlatára, mint az Ethereum és Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) Aug 19, 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Nov 16 2017 - Josh Stark_
-
-## Kritika és szkepticizmus {#critique-and-skepticism}
-
-Az Ethereum és kriptovaluták kritikái:
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _March 27, 2019 - Interview with Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Jan 8, 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) March 10, 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Feb 6, 2019 - Bruce Schneier_
diff --git a/src/content/translations/id/learn/index.md b/src/content/translations/id/learn/index.md
deleted file mode 100644
index f50d65c8ba3..00000000000
--- a/src/content/translations/id/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: Belajar tentang Ethereum
-description: Sebuah kumpulan artikel, panduan, dan sumber informasi teknis maupun non-teknis mengenai Ethereum.
-lang: id
-sidebar: true
----
-
-# Belajar tentang Ethereum {#learn-about-ethereum}
-
-**Selamat datang di [ethereum.org/learn](/id/learn/), sebuah kumpulan sumber daya yang akan membantu kamu untuk belajar lebih dalam tentang Ethereum.** Halaman ini berisi artikel, panduan, dan sumber daya teknis **dan** non-teknis. Kalau kamu benar-benar baru di Ethereum, [kami sarankan kamu memulai disini](/id/what-is-ethereum/).
-
-Ini adalah beberapa titik awal yang sangat baik:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 September, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 Feb, 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 Jan, 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _19 Mar, 2019 - Virgil Griffith_
-
-Selain informasi yang tersedia di halaman ini, masih banyak lagi sumber informasi lain yang berasal dari komunitas Ethereum:
-
-- [EthHub](https://docs.ethhub.io) _Kumpulan pengetahuan dasar yang komprehensif tentang segala sesuatu yang terkait dengan Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Sebuah sumber daya informasi tentang Ethereum untuk pemula_
-- [Ethereum.wiki](https://eth.wiki) _Sebuah wiki yang berisi informasi mengenai teknologi Ethereum_
-- [Kauri](https://kauri.io) _Artikel teknis dan tutorial untuk Ethereum dan proyek terkait_
-- [Kanal Youtube Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Video informasi dan seminar tentang Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Sebuah newsletter yang memberitakan tentang perkembangan inti yang terjadi di ekosistem Ethereum_
-- [What’s new in ETH 2.0](https://eth2.news) _Sebuah newsletter yang memberitakan tentang perkembangan ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Diskusi teknis yang lebih dalam mengenai Ethereum untuk ETH 2.0 dan rencana di masa depan_
-- [ETHGlobal](https://ethglobal.co) _Hackathon bertema Ethereum yang diadakan di berbagai kota di seluruh dunia - kunjungi yang paling dekat dengan kotamu!_
-
-## Dasar-Dasar Ethereum {#ethereum-basics}
-
-Baru di Ethereum? Artikel dan sumber daya berikut ini adalah tempat yang bagus untuk memulai.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23 Feb, 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 April, 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Sering diupdate - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _23 July, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 Jan, 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 September, 2017 - Morgan Peck_
-
-## Bagaimana Ethereum Bekerja {#how-ethereum-works}
-
-Penjelasan tingkat lanjut mengenai Ethereum dan teknologi blockchain secara umum.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27 Sept, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2 Oktober, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 Januari, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19 Juli, 2018 - Zubin Koticha_
-
-## Smart Contract {#smart-contracts}
-
-"Smart contract" secara gamblang hanyalah kode yang berjalan di Ethereum. Disebut "contract" karena kode yang berjalan di Ethereum ini bisa mengendalikan aset yang bernilai seperti ETH atau aset digital lain.
-
-- Mau belajar lebih lanjut cara mem-program smart contract di Ethereum? [ethereum.org/developers](/id/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12 Nov, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Sering diupdate - Ethhub_
-
-## Proof-of-work dan Mining {#proof-of-work-and-mining}
-
-Ethereum sekarang menggunakan sebuah sistem yang dikenal sebagai “proof-of-work”. Hal ini membuat jaringan Ethereum untuk bisa setuju mengenai seluruh status informasi yang dicatat di blockchain Ethereum, dan mencegah serangan tertentu terhadap blockchain.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Sering diupdate - Ethhub_
-
-Di ETH 2.0, Ethereum akan pindah ke sistem baru bernama “proof-of-stake”. [Baca lebih lanjut mengenai ETH 2.0 di bawah](#eth-2-0).
-
-## Client dan Node {#clients-and-nodes}
-
-Jaringan Ethereum terdiri dari berbagai node yang menjalankan software client yang sesuai. Terdapat dua client yang sekarang dipakai oleh mayoritas node:: [Geth](https://geth.ethereum.org/) (ditulis dengan Go) dan [Parity](https://www.parity.io/ethereum/) (ditulis dengan Rust).
-
-- Mau mengetahui cara untuk menjalankan node milikmu sendiri? → [ethereum.org/developers](/id/developers/#clients-running-your-own-node/)
-- [Daftar lengkap dari seluruh client Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Enterprise Ethereum {#enterprise-ethereum}
-
-Enterprise Ethereum adalah implementasi codebase Ethereum untuk aplikasi bisnis yang bersifat private, konsorsium, maupun hybrid. Perusahaan di seluruh dunia telah memakai Enterprise Ethereum untuk merampingkan pasar finansial, mengelola supply chain, dan membuat model bisnis baru.
-
-Baca lebih lanjut mengenai [Enterprise Ethereum](/id/enterprise/).
-
-## Meningkatkan Skalabilitas Ethereum {#improving-ethereums-scalability}
-
-Terdapat banyak usaha yang sedang dikerjakan untuk membuat Ethereum lebih "scalable" dengan meningkatkan kecepatan dan jumlah transaksi yang bisa diproses. Secara umum usaha-usaha ini dibagi ke dalam dua bagian yaitu "Layer 1" dan "Layer 2".
-
-"Layer 1" merujuk kepada perbaikan protokol inti Ethereum. Proyek utama didalam perbaikan protokol inti Ethereum ini adalah [ETH 2.0](#eth-2-0).
-
-"Layer 2" merujuk ke teknologi yang dibangun di "atas" protokol Ethereum, yang memungkinkan penambahan skalabilitas tanpa mengkompromikan keamanan. Ada juga teknologi "off-chain" seperti side-chain, yang memungkinkan penambahan skalabilitas melalui seperangkat perubahan dengan beberapa trade-off keamanan.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12 Feb, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 Jan, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 Apr, 2019 - Andreas Wallendahl_
-
-### Pembayaran & State Channel {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _6 Nov, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Sering diupdate - EthHub_
-
-### Sidechain {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8 Feb, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 Feb, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - Sebuah kumpulan sumber daya untuk mempelajari framework Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (dikenal juga sebagai “Serenity”) merujuk kepada upgrade besar terhadap protokol inti Ethereum. Upgrade ini menggabungkan beberapa perbaikan terhadap protokol inti Ethereum, atau "Layer 1".
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Sering diupdate - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _9 Desember, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Sering diupdate - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Sering diupdate - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _24 Jan, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15 Jul, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 July, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x adalah nama untuk kumpulan upgrade yang dikerjakan untuk Ethereum protocol. Tujuannya adalah untuk secara terus-menerus memperbaiki dan mengelola Ethereum sembari ETH 2.0 Serenity sedang dibangun dan diimplementasikan.
-
-Untuk informasi tambahan, kunjungi [Halaman penjelasan EthHub tentang ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Cryptoeconomic {#cryptoeconomics}
-
-"Cryptoeconomic" adalah sebuah cabang ilmu pengetahuan praktikal tentang sistem yang terdistribusi, dimana properti sistem tersebut diamankan oleh insentif finansial, dan dimana mekanisme ekonomi dijamin oleh kriptografi. Istilah ini umum digunakan untuk proses desain dan scaling blockchain seperti Ethereum dan Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) 19 Agustus, 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16 Nov, 2017 - Josh Stark_
-
-## Kritik dan Ketidakpercayaan {#critique-and-skepticism}
-
-Pandangan kritis terhadap Ethereum dan Cryptocurrency.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27 Maret 27, 2019 - Wawancara dengan Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8 Januari, 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) 10 Maret, 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6 Feb, 2019 - Bruce Schneier_
diff --git a/src/content/translations/it/learn/index.md b/src/content/translations/it/learn/index.md
deleted file mode 100644
index 6b32aa70efb..00000000000
--- a/src/content/translations/it/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Informazioni su Ethereum
-description: Serie di articoli, guide e risorse tecniche e non tecniche per saperne di più su Ethereum.
-lang: it
-sidebar: true
-sidebarDepth: 1
----
-
-# Informazioni su Ethereum {#learn-about-ethereum}
-
-**Ti diamo il benvenuto su [ethereum.org/learn](/it/learn/), una raccolta di strumenti che ti possono aiutare a capire di più su Ethereum.** Questa pagina include articoli tecnici, \*\*\*\* generici, guide e risorse. Se ti affacci per la prima volta al mondo di Ethereum, [ti suggeriamo di iniziare da qui](/it/what-is-ethereum/).
-
-Ecco alcuni ottimi punti di partenza:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Sep 18, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Feb 18, 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Jan 16, 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mar 29, 2019 - Virgil Griffith_
-
-Oltre alle informazioni su questa pagina, le seguenti risorse realizzate da membri dalla community meritano una lettura:
-
-- [EthHub](https://docs.ethhub.io) _Guida informativa completa sull'ecosistema Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Risorsa formativa su Ethereum dedicata ai principianti_
-- [Ethereum.wiki](https://eth.wiki) _Wiki realizzata dalla community riguardo la tecnologia di Ethereum_
-- [Kauri](https://kauri.io) _Articoli tecnici e tutorial per Ethereum e progetti correlati_
-- [Canale Youtube della Fondazione Ethereum](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Raccolta di video e interviste su Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Newsletter settimanale che copre le principali novità dell'ecosistema_
-- [What’s new in ETH 2.0](https://eth2.news) _Newsletter a frequenza regolare sui nuovi sviluppi di ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Discussioni tecniche approfondite su Ethereum per ETH 2.0 e non solo_
-- [ETHGlobal](https://ethglobal.co) _Serie di hackathon. Partecipa a uno nella tua zona!_
-
-## Le basi di Ethereum {#ethereum-basics}
-
-Non hai mai usato Ethereum? Le seguenti risorse sono ottimi punti di partenza.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Feb 23, 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _April 25, 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Aggiornato frequentemente - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _July 23, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Jan 30, 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 settembre 2017 - Morgan Peck_
-
-## Come funziona Ethereum {#how-ethereum-works}
-
-Spiegazioni su Ethereum e sulla tecnologia blockchain in generale.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oct 2, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _July 19, 2018 - Zubin Koticha_
-
-## Smart Contract {#smart-contracts}
-
-Uno "Smart Contract" è semplicemente codice che viene eseguito in Ethereum. Si chiama "contratto" perché il codice che viene eseguito in Ethereum può controllare beni di valore come ETH o altri beni digitali.
-
-- Vuoi imparare a programmare su Ethereum con gli Smart Contract? [ethereum.org/developers](/it/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Aggiornato di frequente - Ethhub_
-
-## Proof-of-work e mining {#proof-of-work-and-mining}
-
-Ethereum attualmente usa un sistema chiamato "proof-of-work" che consente alla rete Ethereum di concordare lo stato di tutte le informazioni registrate sulla blockchain Ethereum e di evitare determinati tipi di attacchi economici.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Aggiornato frequentemente - Ethhub_
-
-In ETH 2.0, Ethereum userà un sistema diverso, chiamato “proof-of-stake”. [Scopri di più su ETH 2.0 qui sotto](#eth-2-0).
-
-## Client e nodi {#clients-and-nodes}
-
-La rete Ethereum è costituita da molti nodi e ognuno di essi esegue software client compatibile. Sono due i client utilizzati dalla maggior parte dei nodi: [Geth](https://geth.ethereum.org/) (scritto in Go) e [Parity](https://www.parity.io/ethereum/) (scritto in Rust).
-
-- Vuoi sapere come gestire un nodo tuo? → [ethereum.org/developers](/it/developers/#clients-running-your-own-node/)
-- [Elenco completo di tutti i client Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum Enterprise {#enterprise-ethereum}
-
-Enterprise Ethereum si riferisce ad implementazioni private, consortili e ibride del codice di Ethereum per applicazioni aziendali. Aziende in tutto il mondo stanno già usando Enterprise Ethereum per snellire i mercati finanziari, gestire la catena di distribuzione e creare nuovi modelli di business.
-
-Ulteriori informazioni su [Enterprise Ethereum](/it/enterprise/).
-
-## Migliorare la scalabilità di Ethereum {#improving-ethereums-scalability}
-
-Attualmente si sta cercando di rendere Ethereum più “scalabile”, migliorandone la velocità e la capacità complessiva di elaborare le transazioni. In generale, questo tipo di attività viene classificato in soluzioni di “Livello 1” e “Livello 2”.
-
-“Livello 1” si riferisce al miglioramento del protocollo di base di Ethereum. Il progetto principale per migliorare il protocollo di base di Ethereum è [ETH 2.0](#eth-2-0).
-
-“Livello 2” si riferisce a tecnologie create "sopra" il protocollo Ethereum di base, per assicurare una maggiore scalabilità senza compromettere la sicurezza. Ci sono anche tecnologie “off-chain”, come le side-chain, che offrono una maggiore scalabilità con diversi livelli di compromessi in termini di sicurezza.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Feb 12, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Jan 18, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Apr 23, 2019 - Andreas Wallendahl_
-
-### Pagamenti e canali a stato {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channel](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Aggiornato frequentemente - EthHub_
-
-### Sidechain {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - Risorsa di formazione per il framework Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (conosciuto anche come "Serenity”) si riferisce al prossimo importante aggiornamento del protocollo Ethereum di base. Combina diversi miglioramenti al protocollo principale di Ethereum, o “Livello 1”.
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Aggiornato frequentemente - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Aggiornato frequentemente - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Aggiornato frequentemente - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x è il nome di una serie di aggiornamenti al protocollo Ethereum esistente. L'obiettivo è continuare a migliorare e gestire Ethereum mentre viene sviluppato e implementato ETH 2.0.
-
-Per ulteriori informazioni, vedi la [pagina esplicativa di EthHub su ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Criptoeconomia {#cryptoeconomics}
-
-La “criptoeconomia” è la scienza pratica per la creazione di sistemi distribuiti, in cui le proprietà di tali sistemi sono garantite da incentivi finanziari e i meccanismi economici sono garantiti dalla crittografia. È il termine generale che indica la pratica di progettare e potenziare blockchain come Ethereum e Bitcoin.
-
-- [Cryptoeconomy.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) Aug 19, 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Nov 16 2017 - Josh Stark_
-
-## Critiche e scetticismo {#critique-and-skepticism}
-
-Opinioni critiche su Ethereum e le criptovalute.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _March 27, 2019 - Interview with Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Jan 8, 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) March 10, 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Feb 6, 2019 - Bruce Schneier_
diff --git a/src/content/translations/ja/learn/index.md b/src/content/translations/ja/learn/index.md
deleted file mode 100644
index a549ed59cfb..00000000000
--- a/src/content/translations/ja/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: イーサリアムについて学ぶ
-description: イーサリアムについて学ぶための技術的および非技術的な記事、ガイド、リソース集。
-lang: ja
-sidebar: true
-sidebarDepth: 1
----
-
-# イーサリアムについて学ぶ {#learn-about-ethereum}
-
-**[ethereum.org/learn](/ja/learn/) へようこそ。ここではイーサリアムについてより詳しく学ぶことができます。**このページでは、技術・非技術**両方**の解説記事やガイド、学習内容を取り扱います。 もしイーサリアムについて何も知らなければ[ここから始めるのがおすすめです](/ja/beginners/)。
-
-以下は、イーサリアムについて学び始めるための優れたリソースです。
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _2017 年 9 月 18 日 - Vitalik Buterin (ビデオ)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _2018 年 2 月 18 日 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _2019 年 1 月 16 日 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _2019 年 3 月 29 日 - Virgil Griffith_
-
-このページの学習リソースに加え、以下のようなコミュニティ型のものもあります。
-
-- [EthHub](https://docs.ethhub.io) _イーサリアムのあらゆることを包括的に取り扱う知識ハブ_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _初心者向けのイーサリアムに関する教育リソース_
-- [Ethereum.wiki](https://eth.wiki) _イーサリアムの技術に関するコミュニティ型 Wiki_
-- [Kauri](https://kauri.io) _イーサリアムと関連プロジェクトに関する技術記事とチュートリアル_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _イーサリアムに関するビデオとプレゼンテーション_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _エコシステム全体の開発を取り扱うウィークリーニュースレター_
-- [What’s new in ETH 2.0](https://eth2.news) _ETH 2.0 の開発状況に関する定期ニュースレター_
-- [ethresear.ch forum](https://ethresear.ch/) _ETH 2.0 以降の Ethereum に関する深い技術的なディスカッション_
-- [ETHGlobal](https://ethglobal.co) _イーサリアムハッカソン - 近くで開催されるハッカソンに出場してみては?!_
-
-## イーサリアムの基礎 {#ethereum-basics}
-
-イーサリアムは初めてですか? 以下の記事や学習リソースが学び始めるのに最適です。
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _2017 年 2 月 23 日 - Linda Xie_
-- [ビデオ: ether と Ethereum とは何ですか?](https://www.youtube.com/watch?v=fjnovGRQrRE) _2019 年 4 月 25 日 - CME Group_
-- [イーサリアムとは?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _頻繁にアップデートあり - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _2019 年 7 月 23 日_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _2018 年 1 月 30 日 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _2017 年 9 月 28 日 - Morgan Peck_
-
-## イーサリアムの仕組み {#how-ethereum-works}
-
-イーサリアムとブロックチェーン技術のハイレベルな解説。
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _2017 年 9 月 27 日 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2016 年 10 月 2 日 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _2018 年 1 月 26 日- Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _2018 年 7 月 19 日 - Zubin Koticha_
-
-## スマートコントラクト {#smart-contracts}
-
-「スマートコントラクト」とはシンプルにイーサリアム上で実行されるコードのことです。 コントラクトと呼ばれる理由はイーサリアム上で動作するコードが ETH や他のデジタルアセットのような価値を管理することができるからです。
-
-- スマートコントラクトを使ったイーサリアムのプログラミングを学びたい方はこちら [ethereum.org/developers](/ja/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _2018 年 11 月 12 日 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _頻繁にアップデートあり - Ethhub_
-
-## Proof-of-work とマイニング {#proof-of-work-and-mining}
-
-イーサリアムは現在 proof-of-work と呼ばれるシステムを使用しています。 これによってイーサリアムブロックチェーンに記録された全ての情報の状態に関してネットワーク全体で合意を取り、経済的な攻撃を防ぐことができます。
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _頻繁にアップデートあり - Ethhub_
-
-ETH 2.0 ではイーサリアムは「proof-of-stake」という別のシステムに移行します。 [ETH 2.0 については下部で学ぶことができます](/#eth-2-0)。
-
-## クライアントとノード {#clients-and-nodes}
-
-イーサリアムネットワークは多くのノードによって構成されており、各ノードは互換性のあるクライアントソフトウェアを実行しています。 大多数のノードでは以下の二つのクライアントが使われています:[Geth](https://geth.ethereum.org/) (Go 実装) and [Parity](https://www.parity.io/ethereum/) (Rust 実装).
-
-- 自分でノードを運用してみたい人はこちら → [ethereum.org/developers](/ja/developers/#clients-running-your-own-node/)
-- [イーサリアムのクライアント全リストはこちら](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## エンタープライズイーサリアム {#enterprise-ethereum}
-
-エンタープライズイーサリアムとは、ビジネスアプリケーション向けのイーサリアムコードベースのプライベート、コンソーシアム、およびハイブリッド実装のことを指します。 世界中の企業がすでにエンタープライズを利用して、金融市場の合理化、サプライチェーンの管理、新しいビジネスモデルの構築を行っています。
-
-詳しくは[エンタープライズイーサリアム](/ja/enterprise/)をご覧ください。
-
-## スケーラビリティの改善 {#improving-ethereums-scalability}
-
-スピードやトランザクションのスループットの向上によってイーサリアムをより「スケーラブル」にしようと様々な努力がなされています。 一般的にスケーラビリティソリューションは「レイヤー 1」と「レイヤー 2」に分けられます。
-
-「レイヤー 1」とはイーサリアムのコアプロトコルの改善を意味し、 主に[ETH 2.0](/#eth-2-0)で取り組まれています。
-
-「レイヤー 2」とはイーサリアムのプロトコルの「上に」構築される技術の総称で、セキュリティを損なうことなくスケーラビリティを改善しようとしています。 サイドチェーンのような「オフチェーン」と呼ばれる技術もあり、セキュリティとのトレードオフによってスケーラビリティの改善を実現します。
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _2018 年 2 月 12 日 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _2019 年 1 月 18 日 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _2019 年 4 月 23 日 - Andreas Wallendahl_
-
-### ペイメントチャネルとステートチャネル {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _2015 年 11 月 6 日 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _頻繁にアップデートあり - EthHub_
-
-### サイドチェーン {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _2018 年 2 月 8 日 - Georgios Konstantopoulos_
-
-### プラズマ {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _2019 年 2 月 7 日 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - A learning resource for the Plasma framework](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (別名:セレニティ) はイーサリアムのコアプロトコルの次の大規模アップグレードを指します。 「レイヤー 1」であるイーサリアムのコアプロトコルへの複数の改善案が統合されます。
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _頻繁にアップデートあり - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _2018 年 12 月 9 日 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _頻繁にアップデートあり - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _頻繁にアップデートあり - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(ビデオ) 2018 年 11 月 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _2019 年 1 月 24 日 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _2019 年 7 月 15 日 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _2019 年 7 月 18 日 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x は既存のプロトコルに対して行う複数のアップグレードの呼称です。 ETH 2.0 が開発・実装される間にも継続的なプロトコルの改善とメンテナンスを行うことが目的です。
-
-詳しくは [EthHub の ETH 1.x についての解説](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)を読んでください。
-
-## クリプトエコノミクス {#cryptoeconomics}
-
-「クリプトエコノミクス」は経済的インセンティブによって資産をセキュアに保ち、暗号によって経済メカニズムを保証できる分散システムを構築するための学問であり、 イーサリアムやビットコインのようなブロックチェーンのデザイン・スケーリング手法を広く指す用語です。
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(ビデオ) 2018 年 8 月 19 日 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _2017 年 11 月 16 日 - Josh Stark_
-
-## 批評と懐疑的意見 {#critique-and-skepticism}
-
-イーサリアムと暗号通貨への批判的意見。
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _2019 年 3 月 27 日 - Rick Dudley インタビュー_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _2018 年 1 月 8 日 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(ビデオ) 2019 年 3 月 10 日 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _2019 年 2 月 6 日 - Bruce Schneier_
diff --git a/src/content/translations/ko/learn/index.md b/src/content/translations/ko/learn/index.md
deleted file mode 100644
index dfc691abb50..00000000000
--- a/src/content/translations/ko/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: 이더리움 알아보기
-description: 이더리움에 대해 알아볼 수 있는 기술적 및 비기술적 문서, 가이드, 참고 자료 모음입니다.
-lang: ko
-sidebar: true
-sidebarDepth: 1
----
-
-# 이더리움 알아보기 {#learn-about-ethereum}
-
-**이더리움에 대해 자세히 알아볼 수 있는 참고 자료 모음인 ethereum.org/learn에 오신 것을 환영합니다.** 이 페이지에는 기술적**/** 비기술적 문서, 가이드, 참고 자료가 나와 있습니다. 이더리움을 처음 접하는 개발자는 [여기서부터 시작하는 것이 좋습니다](/ko/beginners/).
-
-다음은 이더리움 개발을 처음 시작하는 데 유용한 정보를 제공합니다.
-
-- [탈중앙화의 모든 것](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _2017년 9월 18일 - Vitalik Buterin(동영상)_
-- [탈중앙화가 중요한 이유](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _2018년 2월 18일 - Chris Dixon_
-- [이더리움의 해](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _2019년 1월 16일 - Josh Stark, Evan Van Ness, Daniel Zakrisson_
-- [새롭고 획기적인 이더리움 기술](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _2019년 3월 29일 - Virgil Griffith_
-
-이더리움에 대해 자세히 알아볼 수 있는 커뮤니티 기반의 기타 참고 자료:
-
-- [EthHub](https://docs.ethhub.io) _이더리움에 대한 종합적인 기본 지식을 습득할 수 있는 사이트_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _이더리움 입문자 교육용 참조 자료 제공_
-- [Ethereum.wiki](https://eth.wiki) _이더리움 기술에 대한 커뮤니티 기반 위키_
-- [Kauri](https://kauri.io) _이더리움과 관련 프로젝트에 대한 기술적 자료와 튜토리얼 제공_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _이더리움에 대한 영상 자료 제공_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _이더리움 생태계의 주요 발전 사항을 전해주는 주간 뉴스레터 서비스 제공_
-- [What’s new in ETH 2.0](https://eth2.news) _ETH 2.0의 개발 사항에 대해 주기적인 뉴스레터 제공_
-- [ethresear.ch forum](https://ethresear.ch/) _ETH 2.0 이상에 대한 상세한 기술적 논의_
-- [ETHGlobal](https://ethglobal.co) _이더리움 해커톤 시리즈 - 가까운 곳에서 진행되는 해커톤에 참여해보세요!_
-
-## 이더리움 기본사항 {#ethereum-basics}
-
-이더리움이 처음이신가요? 다음 자료는 이더리움을 처음 접하시는 분에게 추천해 드립니다.
-
-- [이더리움 입문자용 가이드](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _2017년 2월 23일 - Linda Xie_
-- [동영상: 이더와 이더리움이란 무엇인가요?](https://www.youtube.com/watch?v=fjnovGRQrRE) _2019년 4월 25일 - CME Group_
-- [이더리움이란 무엇인가요?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [이더란 무엇인가요?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _자주 갱신됨 - EthHub_
-- [입문자를 위한 이더리움 소개](https://www.mewtopia.com/absolute-beginners-guide/) _2019년 7월 23일_
-- [이더리움의 사용 사례](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _2018년 1월 30일 - Elad Gil_
-- [블록체인: 작동 원리 및 이 기술이 혁신적인 이유](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _2017년 9월 28일 - Morgan Peck_
-
-## 이더리움의 작동 원리 {#how-ethereum-works}
-
-이더리움과 블록체인 기술에 대한 개략적인 설명
-
-- [이더리움의 작동 원리](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _2017년 9월 27일 - Preethi Kasireddy_
-- [이더리움에 대한 포괄적인 소개](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2016년 10월 2일 - Antony Lewis_
-- [크립토이코노미를 통한 블록체인 소개 - 1부](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _2018년 1월 26일 - Zubin Koticha_
-- [크립토이코노미를 통한 블록체인 소개 - 2부](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _2018년 7월 19일 - Zubin Koticha_
-
-## 스마트 컨트랙트 {#smart-contracts}
-
-“스마트 컨트랙트”는 간단히 이더리움에서 실행되는 코드입니다. 이더리움에서 실행되는 코드는 이더(ETH) 또는 기타 디지털 자산과 같은 가치를 보유한 토큰을 제어할 수 있기 때문에 “컨트랙트”라고 부릅니다.
-
-- 이더리움 스마트 컨트랙트를 직접 프로그래밍하고 싶으세요? [ethereum.org/developers](/ko/developers/)를 확인해 보세요.
-- [스마트 컨트랙트란 무엇인가요?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _2018년 11월 12일 - Andreas M. Antonopoulos, Gavin Wood_
-- [스마트 컨트랙트/탈중앙화 애플리케이션이란 무엇인가요?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _자주 갱신됨 - Ethhub_
-
-## 작업 증명(proof-of-work)과 채굴 {#proof-of-work-and-mining}
-
-이더리움은 현재 “작업 증명(proof-of-work)”이라는 시스템을 사용하고 있습니다. 이 시스템은 이더리움 블록체인에 기록되는 모든 정보의 상태에 대해 이더리움 네트워크가 합의에 이를 수 있도록 하며, 51% 공격과 같은 네트워크에 대한 특정 유형의 공격을 방지합니다.
-
-- [이더리움을 채굴한다는 것은 어떤 의미인가?](https://docs.ethhub.io/using-ethereum/mining/) _자주 갱신됨 - Ethhub_
-
-이더리움은 ETH 2.0을 통해 지분 증명(proof-of-stake) 시스템으로 전환될 예정입니다. [ETH 2.0에 대해 자세히 알아보기](/#eth-2-0).
-
-## 클라이언트와 노드 {#clients-and-nodes}
-
-이더리움 네트워크는 호환 가능한 클라이언트 소프트웨어를 실행하는 수많은 노드로 구성되어 있습니다. 대다수의 노드가 사용하는 클라이언트는 Go로 작성된 [게스(Geth)](https://geth.ethereum.org/)와 러스트(Rust) 로 작성된 [패리티(Parity)](https://www.parity.io/ethereum/)의 2가지가 있습니다.
-
-- 이더리움 노드를 직접 실행하고 싶으신가요? → [ethereum.org/developers](/ko/developers/#clients-running-your-own-node/)
-- [이더리움 클라이언트 모두 보기](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## 엔터프라이즈 이더리움 {#enterprise-ethereum}
-
-엔터프라이즈 이더리움은 비즈니스 애플리케이션용 이더리움 코드베이스의 비공개, 컨소시엄 및 하이브리드 구현체를 의미합니다. 세계 곳곳의 기업들은 이미 엔터프라이즈 이더리움을 사용하여 금용 시장을 간소화하고 공급망을 관리하며 새로운 비즈니스 모델을 만들고 있습니다.
-
-[엔터프라이즈 이더리움](/ko/enterprise/)에 대해 자세히 알아보기
-
-## 이더리움 확장성 향상 {#improving-ethereums-scalability}
-
-현재 거래 처리량과 속도를 향상해 이더리움의 확장성 문제를 해결하기 위한 많은 노력이 진행 중입니다. 이는 일반적으로 “Layer 1”과 “Layer 2” 솔루션으로 구분됩니다.
-
-“Layer 1”은 이더리움 코어 프로토콜을 개선시키는 것을 의미합니다. 이더리움 코어 프로토콜을 개선하기 위한 주요 프로젝트로는 [ETH 2.0](/#eth-2-0)이 있습니다.
-
-“Layer 2”는 이더리움 프로토콜을 “기반”으로 작동되는 기술로, 보안 측면 이슈를 최소화하면서 확장성을 향상시킬 수 있습니다. 또한 사이드체인과 같은 “오프체인” 기술은 보안 측면에서 적절한 타협점을 찾아 확장성을 높일 수 있습니다.
-
-- [Layer 2 이해하기](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _2018년 2월 12일 - Josh Stark_
-- [이더리움 확장성 훑어보기](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _2019년 1월 18일 - Hunter Hillman, Steven McKie, Eric Olszewski_
-- [이더리움 디앱을 확장하는 5가지 방법](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _2019년 4월 23일 - Andreas Wallendahl_
-
-### 지불 및 스테이트 채널 {#payment--state-channels}
-
-- [스테이트 채널 설명](https://www.jeffcoleman.ca/state-channels/) _2015년 11월 6일 - Jeff Coleman_
-- [스테이트 채널의 기본사항](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [스테이트 채널](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _자주 갱신됨 - EthHub_
-
-### 사이드체인 {#sidechains}
-
-- [사이드체인을 통한 이더리움 디앱 확장](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _2018년 2월 8일 - Georgios Konstantopoulos_
-
-### 플라즈마 {#plasma}
-
-- [플라즈마 이해하기, 1부: 기본사항](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _2019년 2월 7일 - Daniel Goldman_
-- [플라즈마 이해하기](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [플라즈마 알아보기 - 플라즈마 프레임워크를 위한 교육 자료](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-“세레니티”라고도 하는 ETH 2.0은 이더리움 코어 프로토콜에 반영될 주요 업그레이드입니다. ETH 2.0은 이더리움 코어 프로토콜 또는 “Layer 1”에 대한 몇 가지 개선 사항을 포함하고 있습니다.
-
-- [ETH 2.0 로드맵과 단계](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _자주 갱신됨 - EthHub_
-- [차세대 이더리움을 구축하기 위해 노력중인 팀 8곳](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _2018년 12월 9일 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _자주 갱신됨 - EthHub_
-- [샤딩](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _자주 갱신됨 - EthHub_
-- [ETH 2.0 - 이더리움 확장 과정 - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(동영상) 2018년 11월 - YouTube_
-- [ETH 2.0 연구자 AMA, 1부](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _2019년 1월 24일 - EthHub_
-- [ETH 2.0 연구자 AMA, 2부](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _2019년 7월 15일 - EthHub_
-- [이더리움 2.0에 대한 9가지 새로운 정보](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _2019년 7월 18일 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x는 현재 이더리움 프로토콜에 반영된 업그레이드 사항을 통칭합니다. ETH 2.0이 개발되고 구현되기 전까지 이더리움을 지속적으로 개선하고 유지하는 것이 목표입니다.
-
-자세한 내용은 [ETH 1.x의 EthHub 설명 페이지](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)를 참조하세요.
-
-## 크립토이코노미 {#cryptoeconomics}
-
-“크립토이코노미”는 분산 시스템을 구축하기 위한 실용 과학으로, 시스템은 경제적 인센티브를 통해 보호되고 경제적 메커니즘은 암호학을 통해 보장됩니다. 이는 이더리움 및 비트코인과 같은 블록체인을 설계하고 확장하는데 일반적으로 사용되는 용어입니다.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [크립토이코노미 소개](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(동영상) 2018년 8월 19일 - Karl Floersch_
-- [크립토이코노미 이해하기](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _2017년 11월 16일 - Josh Stark_
-
-## 비판과 회의론 {#critique-and-skepticism}
-
-이더리움과 암호화폐에 대한 비판적 의견입니다.
-
-- [과감함이 실종된 이더리움의 로드맵](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _2019년 3월 27일 - Rick Dudley와의 인터뷰_
-- [이더리움 인프라를 구축할 때 직면하는 과제](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _2018년 1월 8일 - Jameson Lopp_
-- [해결되지 않은 난제](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(동영상) 2019년 3월 10일 - Rick Dudley_
-- [블록체인 기술을 신뢰할 만한 타당한 이유가 있는가?](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _2019년 2월 6일 - Bruce Schneier_
diff --git a/src/content/translations/lt/learn/index.md b/src/content/translations/lt/learn/index.md
deleted file mode 100644
index 875566dde5a..00000000000
--- a/src/content/translations/lt/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Sužinokite apie Ethereum
-description: Techninių ir netechninių straipsnių, gidų ir išteklių rinkinys, skirtas išmokti apie Ethereum.
-lang: lt
-sidebar: true
-sidebarDepth: 1
----
-
-# Sužinokite apie Ethereum {#learn-about-ethereum}
-
-**Sveiki apsilankę ethereum.org/learn, čia rasite įvairios medžiagos, skirtos sužinoti daugiau apie Ethereum.** Šiame puslapyje pateikiami techniniai **ir** netechniniai straipsniai, gidai ir ištekliai. Jei Ethereum jums visiška naujiena, [siūlome pradėti čia](/beginners/).
-
-Štai keletas puikių pradinių akcentų:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _2017 m. rugsėjo 18 d. - Vitalik Buterin (vaizdo įrašas)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _2018 m. vasario 18 d. - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _2019 m. sausio 16 d. - Josh Stark, Evan Van Ness ir Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _2019 m. kovo 29 d. - Virgil Griffith_
-
-Be šiame puslapyje pateikiamos informacijos yra kitų bendruomenės sukurtų išteklių, kuriuos verta patyrinėti:
-
-- [EthHub](https://docs.ethhub.io) _Išsami Ethereum žinių bazė_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Mokomasis išteklius apie Ethereum, skirtas pradedantiesiems_
-- [Ethereum.wiki](https://eth.wiki) _Bendruomenės sukurtas vikis apie Ethereum technologiją_
-- [Kauri](https://kauri.io) _Techniniai straipsniai ir mokymo programos Ethereum ir susijusiems projektams_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Vaizdo įrašai ir paskaitos apie Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Savaitinis informacinis biuletenis, apimantis pagrindinius ekosistemos pokyčius_
-- [What’s new in ETH 2.0](https://eth2.news) _Reguliarusis informacinis biuletenis apie ETH 2.0 vystymą_
-- [ethresear.ch forum](https://ethresear.ch/) _Gilesnės techninės diskusijos apie Ethereum, skirtą ETH 2.0 ir vėlesnėms versijoms_
-- [ETHGlobal](https://ethglobal.co) _Ethereum hakatonai – apsilankyk viename iš jų netoli savo namų!_
-
-## Ethereum pagrindai {#ethereum-basics}
-
-Norite susipažinti su Ethereum? Šie straipsniai ir ištekliai – puiki pradžia.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _2017 m. vasario 23 d. - Linda Xie_
-- [Vaizdo įrašas: What is Ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _2019 m. balandžio 25 d. - CME Group_
-- [Kas yra Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [Kas yra Ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Dažnai atnaujinama - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _2019 m. liepos 23 d._
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _2018 m. sausio 30 d. - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _2017 m. rugsėjo 28 d. - Morgan Peck_
-
-## Kaip veikia Ethereum {#how-ethereum-works}
-
-Kvalifikuoti paaiškinimai apie Ethereum ir apie blokų grandinę apskritai.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _2017 m. rugsėjo 27 d. - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2016 m. spalio 2 d. - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _2018 m. sausio 26 d. - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _2018 m. liepos 19 d. - Zubin Koticha_
-
-## Išmaniosios sutartys {#smart-contracts}
-
-„Išmanioji sutartis“ yra tiesiog Ethereum veikiančio kodo dalis. Tai vadinama „sutartimi“, nes kodas, veikiantis Ethereum, gali kontroliuoti vertingus dalykus, pavyzdžiui, ETH ar kitą skaitmeninį turtą.
-
-- Norite išmokti programuoti Ethereum platformoje su išmaniosiomis sutartimis? [ethereum.org/developers](/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _2018 m. lapkričio 12 d. - Andreas M. Antonopoulos, Gavin Wood_
-- [Kas yra išmaniosios sutartys/decentralizuotos programos?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Dažnai atnaujinama - EthHub_
-
-## Darbo įrodymas ir kasyba {#proof-of-work-and-mining}
-
-Šiuo metu Ethereum naudojama sistema pavadinimu „proof-of-work“ (liet. „darbo įrodymas“). Taip Ethereum tinklo nariai gali sutarti dėl visos Ethereum blokų grandinėje įrašytos informacijos būsenos ir išvengti tam tikrų ekonominių išpuolių.
-
-- [Ką reiškia Ethereum kasyba?](https://docs.ethhub.io/using-ethereum/mining/) _Dažnai atnaujinama - EthHub_
-
-ETH 2.0 versijoje Ethereum bus pereinama prie kitokios sistemos, kuri vadinama „proof-of-stake“ (liet. „lėšų įrodymas“). [Skaitykite daugiau apie ETH 2.0 žemiau](/#eth-2-0).
-
-## Klientai ir mazgai {#clients-and-nodes}
-
-Ethereum tinklas sukurtas iš daugybės mazgų, kurie užtikrina suderinamos kliento programinės įrangos veikimą. Dauguma mazgų naudoja du klientus: [Geth](https://geth.ethereum.org/) (parašyta Go) and [Parity](https://www.parity.io/ethereum/) (parašyta Rust).
-
-- Norite išmokti, kaip paleisti savo sukurtą mazgą? → [ethereum.org/developers](/developers/#clients-running-your-own-node)
-- [Išsamus visų Ethereum klientų sąrašas](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum verslui {#enterprise-ethereum}
-
-Ethereum verslui- tai privačiai, konsoriumo pagrindu ar mišriu būdu įgyvendinamos Ethereum kodų bazių programos verslui. Viso pasaulio įmonės jau naudoja Ethereum verslui, kad galėtų optimizuoti finansų rinkas, valdyti tiekimo grandines ir kurti naujus verslo modelius.
-
-Skaityti daugiau apie [Ethereum verslui](/enterprise).
-
-## Ethereum išplečiamumo tobulinimas {#improving-ethereums-scalability}
-
-Dedame dideles pastangas didindami Ethereum spartą ir bendrą sandorių našumą, kad šis tinklas taptų dar plačiau pritaikomas. Jie išskiriami į “1 lygio” ir “2 lygio” sprendimus.
-
-1 lygmuo reiškia pagrindinio Ethereum protokolo tobulinimą. Pirminis projektas, skirtas patobulinti pagrindinį Ethereum protokolą, yra [ETH 2.0](/#eth-2-0).
-
-2 lygmuo reiškia technologijas, kurios papildo pagrindinį Ethereum protokolą, užtikrindamos didesnį pralaidumą nesumažinant saugumo Taip pat esama negrandininių (off-chain) technologijų, tokių kaip šoninės grandinės (sidechains), kurios užtikrina didesnį panaudojimo mastą, suteikdamos atitinkamai mažiau saugumo.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _2018 m. vasario 12 d. - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _2019 m. sausio 18 d. - Hunter Hillman, Steven McKie ir Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _ 2019 m. balandžio 23 d. - Andreas Wallendahl_
-
-### Mokėjimo ir būsenos kanalai {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _2015 m. lapkričio 6 d. - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Dažnai atnaujinama - EthHub_
-
-### Šalutinės grandinės {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _2018 m. vasario 8 d. - Georgios Konstantopoulos_
-
-### Plazma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _2019 m. vasario 7 d. - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Išmok apie plazmą – Mokymosi išteklius apie Plazmos sistemą](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (taip pat vadinamas “Serenity”) - tai kitas esminis pagrindinio Ethereum protokolo atnaujinimas. Jis apima kai kuriuos Ethereum pagrindinio protokolo, arba “1 lygmens” patobulinimus.
-
-- [ETH 2.0 Gairės ir frazės](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Dažnai atnaujinama - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _2018 m. gruodžio 9 d. - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Dažnai atnaujinama - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Dažnai atnaujinama - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(vaizdo įrašas) 2018 m. lapkritis - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _2019 m. sausio 24 d. - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _2019 m. liepos 15 d.- EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _2019m. liepos18d. - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x - tai dabartinio Ethereum protokolo atnaujinimų rinkinys. Mūsų tiklas- ir toliau tobulinti ir plėtoti Ethereum, tuo pat metu kuriant ir diegiant ETH 2.0.
-
-Daugiau informacijos rasite [EthHub puslapis su paaiškinimais apie ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Kriptoekonomika {#cryptoeconomics}
-
-Kriptoekonomika- tai praktinis mokslas apie paskirstytų sistemų kūrimą. Šių sistemų vertė pagrįsta finansinėmis paskatomis, o ekonominius mechanizmus užtikrina kriptografija. Tai- bendras terminas, naudojamas kuriant ir plėtojant tokias blokų grandines kaip Ethereum ir Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(vaizdo įrašas) 2018 m. rugpjūčio 19 d. - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _2017 m. lapkričio 16 d. - Josh Stark_
-
-## Kritika ir skepticizmas {#critique-and-skepticism}
-
-Kritiškas požiūris į Ethereum ir kriptovaliutas.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _2019 m. kovo 27 d. - Interviu su Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _2018 m. sausio 8 d. - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(vaizdo įrašas) 2019 m. kovo 10 d. - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _2019 m. vasario 6 d. - Bruce Schneier_
diff --git a/src/content/translations/ml/learn/index.md b/src/content/translations/ml/learn/index.md
deleted file mode 100644
index ae6efef6157..00000000000
--- a/src/content/translations/ml/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: Ethereum-നെ കുറിച്ച് അറിയുക
-description: Ethereum-നെ കുറിച്ച് അറിയാനുള്ള ഒരു കൂട്ടം സാങ്കേതിക, സാങ്കേതികേതര ലേഖനങ്ങൾ, ഗൈഡുകൾ, വിഭവങ്ങൾ.
-lang: ml
-sidebar: true
----
-
-# Ethereum-നെ കുറിച്ച് അറിയുക {#learn-about-ethereum}
-
-** Ethereum-നെ കുറിച്ച് കൂടുതലറിയാൻ നിങ്ങളെ സഹായിക്കുന്ന ഒരു കൂട്ടം വിഭവങ്ങളായ ethereum.org/learn- ലേക്ക് സ്വാഗതം. ** ഈ പേജിൽ സാങ്കേതിക **, ** സാങ്കേതികേതര ലേഖനങ്ങൾ, ഗൈഡുകൾ, റിസോഴ്സുകള് എന്നിവ ഉൾപ്പെടുന്നു. നിങ്ങൾ Ethereum-ൽ തികച്ചും പുതിയ ആളാണെങ്കിൽ, [ ഇവിടെ ആരംഭിക്കാൻ ഞങ്ങൾ നിർദ്ദേശിക്കുന്നു ](/ml/what-is-ethereum/).
-
-മികച്ച ചില ആരംഭ പോയിന്റുകൾ ഇതാ:
-
-- [ എല്ലാം വികേന്ദ്രീകരിക്കുന്നു ](https://www.youtube.com/watch?v=WSN5BaCzsbo& feature=youtu.be) _ സെപ്റ്റംബർ 18, 2017 - വൈറ്റാലിക് ബ്യൂട്ടറിൻ (വീഡിയോ) _
-- [ വികേന്ദ്രീകരണം എന്തുകൊണ്ട് ഗൗരവമുള്ളതാകുന്നു ](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _ ഫെബ്രുവരി 18, 2018 - ക്രിസ് ഡിക്സൺ _
-- [ Ethereum-ലെ ആ വർഷം ](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _ ജനുവരി 16, 2019 - ജോഷ് സ്റ്റാർക്ക്, ഇവാൻ വാൻ നെസ്, ഒപ്പം ഡാനിയൽ സാക്രിസൺ _
-- [ ഗെയിം മാറ്റുന്ന സാങ്കേതികവിദ്യയാണ് Ethereum, അക്ഷരാർത്ഥത്തിൽ ](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _ മാർച്ച് 29, 2019 - വിർജിൽ ഗ്രിഫിത്ത് _
-
-ഈ പേജിലെ വിവരങ്ങൾക്ക് പുറമേ, പര്യവേക്ഷണം ചെയ്യേണ്ട നിരവധി കമ്മ്യൂണിറ്റി നിർമ്മിത വിഭവങ്ങളുണ്ട്:
-
-- [ EthHub ](https://docs.ethhub.io) _ Ethereum എല്ലാത്തിനും വേണ്ടിയുള്ള സമഗ്രമായ നോളഡ്ജ് ബേസ് _
-- [ District0x ](https://education.district0x.io/general-topics/understanding-ethereum/) തുടക്കക്കാരെ ലക്ഷ്യമാക്കി Ethereum നെക്കുറിച്ചുള്ള ഒരു വിദ്യാഭ്യാസ ഉറവിടം
-- [ Ethereum.wiki ](https://eth.wiki) _ Ethereum- ന്റെ സാങ്കേതികവിദ്യയെക്കുറിച്ച് കമ്മ്യൂണിറ്റി നിർമ്മിച്ച ഒരു വിക്കി _
-- [Kauri](https://kauri.io) _ Ethereum-നും അനുബന്ധ പ്രോജക്റ്റുകൾക്കുമായുള്ള സാങ്കേതിക ലേഖനങ്ങളും ട്യൂട്ടോറിയലുകളും _
-- [ Ethereum Foundation YouTube ](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _ വീഡിയോകളും Ethereum-നെ കുറിച്ചുള്ള സംസാരവും _
-- [ Ethereum വാർത്തയിലെ ആഴ്ച ](https://weekinethereumnews.com/) ആവാസവ്യവസ്ഥയിലുടനീളമുള്ള പ്രധാന സംഭവവികാസങ്ങൾ ഉൾക്കൊള്ളുന്ന പ്രതിവാര വാർത്താക്കുറിപ്പ്
-- [ ETH 2.0- ൽ പുതിയതെന്താണ് ](https://eth2.news) ETH 2.0 വികസനത്തെക്കുറിച്ചുള്ള ഒരു പതിവ് വാർത്താക്കുറിപ്പ്
-- [ ethresear.ch ഫോറം ](https://ethresear.ch/) _ ETH 2.0 നും അതിനുമുകളിലുള്ള Ethereum നെക്കുറിച്ചും ആഴത്തിലുള്ള സാങ്കേതിക ചർച്ചകൾ _
-- [ ETHGlobal ](https://ethglobal.co) _ ഒരു Ethereum hackathon series - നിങ്ങളുടെ അടുത്തുള്ള ഒരെണ്ണത്തിൽ പങ്കെടുക്കുക! _
-
-## Ethereum അടിസ്ഥാനകാര്യങ്ങൾ {#ethereum-basics}
-
-Ethereum-ൽ പുതിയതാണോ? ഈ ലേഖനങ്ങളും ഉറവിടങ്ങളും ആരംഭിക്കാനുള്ള നല്ലൊരു സ്ഥലമാണ്.
-
-- [ Ethereum- ലേക്ക് ഒരു തുടക്കക്കാരന്റെ ഗൈഡ് ](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _ ഫെബ്രുവരി 23, 2017 - ലിൻഡ ക്സി _
-- [ വീഡിയോ: എന്താണ് ഈഥറും Ethereum-ഉം? ](https://www.youtube.com/watch?v=fjnovGRQrRE) _ ഏപ്രിൽ 25, 2019 - CME ഗ്രൂപ്പ് _
-- [ എന്താണ് Ethereum? ](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _ District0x _
-- [ എന്താണ് ഈതർ? ](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്യുന്നു - EthHub _
-- [ Ethereum- ന്റെ സമ്പൂർണ്ണ തുടക്കക്കാരനുള്ള ആമുഖം ](https://www.mewtopia.com/absolute-beginners-guide/) _ ജൂലൈ 23, 2019 _
-- [ Ethereum- നായുള്ള കേസ് ](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _ ജനുവരി 30, 2018 - എലാഡ് ഗിൽ _
-- [ ബ്ലോക്ക്ചെയിനുകൾ: അവ എങ്ങനെ പ്രവർത്തിക്കുന്നു, എന്തുകൊണ്ട് അവ ലോകത്തെ മാറ്റും ](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _ സെപ്റ്റംബർ 28, 2017 - മോർഗൻ പെക്ക് _
-
-## Ethereum എങ്ങനെ പ്രവർത്തിക്കുന്നു {#how-ethereum-works}
-
-Ethereum, ബ്ലോക്ക്ചെയിൻ എന്നിവയുടെ സാങ്കേതികവിദ്യയെ സംബന്ധിച്ച് ഉയർന്ന തലത്തിലുള്ള വിശദീകരണങ്ങൾ.
-
-- [ എന്തായാലും Ethereum എങ്ങനെ പ്രവർത്തിക്കുന്നു? ](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) സെപ്റ്റംബർ 27, 2017 - പ്രീതി കാസിറെഡി
-- [ Ethereum- ന് ഒരു സൗമ്യമായ ആമുഖം ](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _ ഒക്ടോബർ 2, 2016 - ആന്റണി ലൂയിസ് _
-- [ ക്രിപ്റ്റോ ഇക്കണോമിക്സ് വഴി ബ്ലോക്ക്ചെയിനിന്റെ ആമുഖം - ഭാഗം 1 ](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) ജനുവരി 26, 2018 - സുബിൻ കോട്ടിച
-- [ ബ്ലോക്ക്ചെയിനിന്റെ ആമുഖം ക്രിപ്റ്റോ ഇക്കണോമിക്സ് - ഭാഗം 2 ](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) ജൂലൈ 19, 2018 - സുബിൻ കോട്ടിച
-
-## സ്മാർട്ട് കരാറുകൾ {#smart-contracts}
-
-“സ്മാർട്ട് കരാർ” എന്നത് Ethereum- ൽ പ്രവർത്തിക്കുന്ന ഒരു കോഡാണ്. Ethereum-ൽ പ്രവർത്തിക്കുന്ന കോഡിന് ETH അല്ലെങ്കിൽ മറ്റ് ഡിജിറ്റൽ അസറ്റുകൾ പോലുള്ള വിലയേറിയ കാര്യങ്ങൾ നിയന്ത്രിക്കാൻ കഴിയുമെന്നതിനാൽ ഇതിനെ “കരാർ” എന്ന് വിളിക്കുന്നു.
-
-- സ്മാർട്ട് കരാറുകൾ ഉപയോഗിച്ച് Ethereum-ൽ എങ്ങനെ പ്രോഗ്രാം ചെയ്യാമെന്ന് അറിയണോ? [ethereum.org/developers](/ml/developers/)
-- [ എന്താണ് സ്മാർട്ട് കരാർ? ](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _ നവംബർ 12, 2018 - ആൻഡ്രിയാസ് എം. അന്റോനോപൗലോസ്, ഗാവിൻ വുഡ് _
-- [ എന്താണ് സ്മാർട്ട് കരാറുകൾ / വികേന്ദ്രീകൃത അപ്ലിക്കേഷനുകൾ? ](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്തു - എഥുബ് _
-
-## പ്രൂഫ് ഓഫ് വർക്ക് ആൻഡ് മൈനിംഗ് {#proof-of-work-and-mining}
-
-Ethereum നിലവിൽ “പ്രൂഫ് ഓഫ് വർക്ക്” എന്ന ഒരു സിസ്റ്റം ഉപയോഗിക്കുന്നു. ഇത് Ethereum ബ്ലോക്ക്ചെയിനിൽ രേഖപ്പെടുത്തിയിരിക്കുന്ന എല്ലാ വിവരങ്ങളുടെയും അവസ്ഥയെ അംഗീകരിക്കാൻ Ethereum നെറ്റ്വർക്കിനെ അനുവദിക്കുന്നു, ഒപ്പം ചിലതരം സാമ്പത്തിക ആക്രമണങ്ങളെ തടയുന്നു.
-
-- [Ethereum മൈനിംഗ് എന്നതിന്റെ അർത്ഥമെന്താണ്? ](https://docs.ethhub.io/using-ethereum/mining/) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്യുന്നു - Ethhub _
-
-ETH 2.0 ൽ, Ethereum “പ്രൂഫ് ഓഫ് സ്റ്റേക്ക്” എന്ന മറ്റൊരു സിസ്റ്റത്തിലേക്ക് നീങ്ങും. [ ETH 2.0 നെക്കുറിച്ച് ചുവടെ കൂടുതൽ വായിക്കുക ](#eth-2-0).
-
-## ക്ലയന്റുകളും നോഡുകളും {#clients-and-nodes}
-
-Ethereum നെറ്റ്വർക്ക് നിരവധി നോഡുകളാൽ നിർമ്മിതമാണ്, അവയിൽ ഓരോന്നും അനുയോജ്യമായ ക്ലയന്റ് സോഫ്റ്റ്വെയർ പ്രവർത്തിക്കുന്നു. ഭൂരിഭാഗം നോഡുകളും ഉപയോഗിക്കുന്ന രണ്ട് ക്ലയന്റുകൾ ഉണ്ട്: [ ഗെത്ത് ](https://geth.ethereum.org/) (ഗോയിൽ എഴുതി) കൂടാതെ [പാരിറ്റി](https: // www.parity.io/ethereum/) (റസ്റ്റിൽ എഴുതി).
-
-- നിങ്ങളുടേതായ ഒരു നോഡ് എങ്ങനെ പ്രവർത്തിപ്പിക്കാമെന്ന് അറിയണോ? → [ ethereum.org/developers ](/ml/developers/#clients-running-your-own-node/)
-- [എല്ലാ Ethereum ക്ലയന്റുകളുടെയും സമഗ്രമായ പട്ടിക](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## എന്റർപ്രൈസ് Ethereum {#enterprise-ethereum}
-
-എന്റർപ്രൈസ് എതിരെയും എന്നത് ബിസിനസ് ആപ്ലിക്കേഷനുകൾക്കായുള്ള Ethereum കോഡ്ബേസിന്റെ സ്വകാര്യ, കൺസോർഷ്യം, ഹൈബ്രിഡ് നടപ്പാക്കലുകളെ സൂചിപ്പിക്കുന്നു. ലോകമെമ്പാടുമുള്ള കമ്പനികൾ ഇതിനകം തന്നെ സാമ്പത്തിക വിപണികളെ കാര്യക്ഷമമാക്കുന്നതിനും വിതരണ ശൃംഖലകൾ നിയന്ത്രിക്കുന്നതിനും പുതിയ ബിസിനസ്സ് മോഡലുകൾ സൃഷ്ടിക്കുന്നതിനും എന്റർപ്രൈസ് Ethereum ഉപയോഗിക്കുന്നു.
-
-[ എന്റർപ്രൈസ് Ethereum ](/ml/enterprise/) നെക്കുറിച്ച് കൂടുതൽ വായിക്കുക.
-
-## എതേറെയത്തിന്റെ സ്കേലബിളിറ്റി മെച്ചപ്പെടുത്തുന്നു {#improving-ethereums-scalability}
-
-Ethereum-ന്റെ വേഗതയും മൊത്തത്തിലുള്ള ഇടപാട് ത്രൂപുട്ടും മെച്ചപ്പെടുത്തി കൂടുതൽ “സ്കേലബിൾ” ആക്കുന്നതിന് നിരവധി ശ്രമങ്ങൾ നടക്കുന്നു. സാധാരണയായി ഇവ “ലേയർ 1”, “ലേയർ 2” പരിഹാരങ്ങളായി അടുക്കുന്നു.
-
-“ലേയർ 1” എന്നത് കോർ Ethereum പ്രോട്ടോക്കോൾ മെച്ചപ്പെടുത്തുന്നതിനെയാണ് സൂചിപ്പിക്കുന്നത്. Ethereum-ന്റെ പ്രധാന പ്രോട്ടോക്കോൾ മെച്ചപ്പെടുത്തുന്നതിനുള്ള പ്രാഥമിക പ്രോജക്റ്റ് [ ETH 2.0 ](#eth-2-0) ആണ്.
-
-“ലേയർ 2” എന്നത് അടിസ്ഥാന Ethereum പ്രോട്ടോക്കോളിന്റെ “മുകളിൽ” നിർമ്മിച്ച സാങ്കേതികവിദ്യകളെ സൂചിപ്പിക്കുന്നു, ഇത് സുരക്ഷയിൽ വിട്ടുവീഴ്ച ചെയ്യാതെ കൂടുതൽ സ്കേലബിളിറ്റി പ്രാപ്തമാക്കുന്നു. സൈഡ് ചെയിനുകൾ പോലുള്ള “ഓഫ്-ചെയിൻ” സാങ്കേതികവിദ്യകളും ഉണ്ട്, അവ വ്യത്യസ്തമായ ഒരു സെറ്റ് സെക്യൂരിറ്റി ട്രേഡ്ഓഫുകൾ നടത്തി കൂടുതൽ സ്കേലബിളിറ്റി പ്രാപ്തമാക്കുന്നു.
-
-- [ ലെയര് 2 ന് അര്ത്ഥമുണ്ടാക്കുന്നു 2 ](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _ ഫെബ്രുവരി 12, 2018 - ജോഷ് സ്റ്റാർക്ക് _
-- [ Ethereum സ്കേലബിളിറ്റിക്കായുള്ള കേസ് ](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _ ജനുവരി 18, 2019 - ഹണ്ടർ ഹിൽമാൻ, സ്റ്റീവൻ മക്കി, എറിക് ഓൾസ്വെസ്കി എന്നിവര് _
-- [ നിങ്ങളുടെ Ethereum ടാപ്പ് സ്കെയിൽ ചെയ്യുന്നതിനുള്ള 5 വഴികൾ ](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _ ഏപ്രിൽ 23, 2019 - ആൻഡ്രിയാസ് വാലെൻഡാൾ _
-
-### പേയ്മെന്റ് & സ്റ്റേറ്റ് ചാനലുകൾ {#payment--state-channels}
-
-- [ സ്റ്റേറ്റ് ചാനലുകൾ - ഒരു വിശദീകരണം ](https://www.jeffcoleman.ca/state-channels/) _ നവംബർ 6, 2015 - ജെഫ് കോൾമാൻ _
-- [ സ്റ്റേറ്റ് ചാനലുകളുടെ അടിസ്ഥാനകാര്യങ്ങൾ ](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _ District0x _
-- [ സ്റ്റേറ്റ് ചാനലുകൾ ](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്യുന്നു - EthHub _
-
-### സൈഡ്ചെയിനുകൾ {#sidechains}
-
-- [ സൈഡ്ചെയിനുകളിലൂടെ Ethereum Dapps സ്കെയിലിംഗ് ](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _ ഫെബ്രുവരി 8, 2018 - ജോർജിയോസ് കോൺസ്റ്റാന്റോപൗലോസ് _
-
-### പ്ലാസ്മ {#plasma}
-
-- [ പ്ലാസ്മ മനസിലാക്കുന്നു, ഭാഗം 1: അടിസ്ഥാനകാര്യങ്ങൾ ](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) ഫെബ്രുവരി 7, 2019 - ഡാനിയൽ ഗോൾഡ്മാൻ
-- [ പ്ലാസ്മ മനസിലാക്കുന്നു ](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _ District0x _
-- [പ്ലാസ്മ പഠിക്കുക - പ്ലാസ്മ ചട്ടക്കൂടിനുള്ള ഒരു പഠന വിഭവം](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-കോർ Ethereum പ്രോട്ടോക്കോളിന്റെ അടുത്ത പ്രധാന നവീകരണത്തെ ETH 2.0 (“സെറീനിറ്റി” എന്നും വിളിക്കുന്നു) സൂചിപ്പിക്കുന്നു. Ethereum-ന്റെ കോർ പ്രോട്ടോക്കോൾ അല്ലെങ്കിൽ “ലേയർ 1” ലേക്ക് ഇത് നിരവധി മെച്ചപ്പെടുത്തലുകൾ സംയോജിപ്പിക്കുന്നു.
-
-- [ ETH 2.0 റോഡ്മാപ്പും ഘട്ടങ്ങളും ](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്യുന്നു - EthHub _
-- [ Ethereum-ന്റെ അടുത്ത തലമുറ കെട്ടിപ്പടുക്കുന്നതിന് 8 ടീമുകൾ വേഗതയില് പ്രവര്ത്തിക്കുന്നു ](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _ ഡിസംബർ 9, 2018 - ക്രിസ്റ്റിൻ കിം _
-- [ പ്രൂഫ് ഓഫ് സ്റ്റേക്ക്](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്യുന്നു - EthHub _
-- [ ഷാർഡിംഗ് ](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _ പലപ്പോഴും അപ്ഡേറ്റുചെയ്യുന്നു - EthHub _
-- [ ETH 2.0 - Ethereum സ്കെയിലിംഗിലേക്കുള്ള വഴി - വൈറ്റാലിക് ബ്യൂട്ടറിൻ ](https://youtu.be/kCVpDrlVesA) _ (വീഡിയോ) നവംബർ, 2018 - YouTube _
-- [ ETH 2.0 ഗവേഷകർ AMA ഭാഗം 1 ](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _ ജനുവരി 24, 2019 - EthHub _
-- [ ETH 2.0 ഗവേഷകർ AMA ഭാഗം 2 ](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _ ജനുവരി 15, 2019 - EthHub _
-- [9 Things You Didn't Know About Ethereum 2.0-നെ കുറിച്ച് നിങ്ങള്ക്ക് അറിയാത്ത 9 സംഗതികള് ](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-നിലവിലുള്ള Ethereum പ്രോട്ടോക്കോളിലേക്കുള്ള അപ്ഗ്രേഡുകളുടെ ഒരു ശേഖരത്തിന്റെ പേരാണ് ETH 1.x. ETH 2.0 വികസിപ്പിക്കുകയും നടപ്പിലാക്കുകയും ചെയ്യുമ്പോൾ Ethereum മെച്ചപ്പെടുത്തുകയും പരിപാലിക്കുകയും ചെയ്യുക എന്നതാണ് ലക്ഷ്യം.
-
-കൂടുതൽ വിവരങ്ങൾക്ക്, [ ETH 1.x നെക്കുറിച്ചുള്ള EthHub- ന്റെ വിശദീകരണ പേജ് കാണുക ](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## ക്രിപ്റ്റോ ഇക്കണോമിക്സ് {#cryptoeconomics}
-
-“ക്രിപ്റ്റോ ഇക്കണോമിക്സ്” എന്നത് വിതരണ സംവിധാനങ്ങൾ നിർമ്മിക്കുന്നതിനുള്ള പ്രായോഗിക ശാസ്ത്രമാണ്, അവിടെ ആ സംവിധാനങ്ങളുടെ സ്വത്തുക്കൾ സാമ്പത്തിക പ്രോത്സാഹനങ്ങളാൽ സുരക്ഷിതമാണ്, കൂടാതെ ക്രിപ്റ്റോഗ്രഫി വഴി സാമ്പത്തിക സംവിധാനങ്ങൾ ഉറപ്പുനൽകുന്നു. Ethereum, Bitcoin എന്നിവ പോലുള്ള ബ്ലോക്ക്ചെയിനുകൾ രൂപകൽപ്പന ചെയ്യുന്നതിനും സ്കെയിലിംഗ് ചെയ്യുന്നതിനുമുള്ള പൊതുവായ പദമാണിത്.
-
-- [ക്രിപ്റ്റോ ഇക്കണോമിക്സ്.സ്റ്റഡി](https://cryptoeconomics.study/)
-- [ ക്രിപ്റ്റോ ഇക്കണോമിക്സിനുള്ള ആമുഖം ](https://www.youtube.com/watch?v=F0FCI8GxO5I) _ (വീഡിയോ) ഓഗസ്റ്റ് 19, 2018 - കാൾ ഫ്ലോർഷ് _
-- [ ക്രിപ്റ്റോ ഇക്കണോമിക്സിന് അര്ത്ഥമുണ്ടാക്കുന്നു ](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _ നവംബർ 16 2017 - ജോഷ് സ്റ്റാർക്ക്_
-
-## വിമർശനവും സംശയവും {#critique-and-skepticism}
-
-Ethereum, ക്രിപ്റ്റോകറൻസികള് എന്നിവയുടെ വിമർശനാത്മക വീക്ഷണങ്ങള്.
-
-- [ Ethereum-ന്റെ റോഡ്മാപ്പ് അഭിലഷണീയമല്ല ](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _ മാർച്ച് 27, 2019 - റിക്ക് ഡഡ്ലിയുമായുള്ള അഭിമുഖം _
-- [ Ethereum ഇൻഫ്രാസ്ട്രക്ചർ നിർമ്മിക്കുന്നതിനുള്ള വെല്ലുവിളികൾ ](https://medium.com/@lopp/the-challengees-of-building-ethereum-infrastructure-87e443e47a4b) ജനുവരി 8, 2018 - ജെയിംസൺ ലോപ്പ്
-- [ ബുദ്ധിമുട്ടുള്ള ചോദ്യങ്ങൾക്ക് ലുബ്ധമായ ഉത്തരങ്ങൾ ](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _ (വീഡിയോ) 2019 മാർച്ച് 10 - റിക്ക് ഡഡ്ലി _
-- [ ബ്ലോക്ക്ചെയിൻ സാങ്കേതികവിദ്യയെ വിശ്വസിക്കാൻ നല്ല കാരണമൊന്നുമില്ല ](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _ ഫെബ്രുവരി 6, 2019 - ബ്രൂസ് ഷ്നിയർ _
diff --git a/src/content/translations/nb/learn/index.md b/src/content/translations/nb/learn/index.md
deleted file mode 100644
index 37e38c0f974..00000000000
--- a/src/content/translations/nb/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: Lær mer om Ethereum
-description: Et sett med tekniske og ikke-tekniske artikler, veiledere og ressurser for å lære om Ethereum.
-lang: nb
-sidebar: true
----
-
-# Lær mer om Ethereum {#learn-about-ethereum}
-
-**Velkommen til ethereum.org/learn, et sett av ressurser som hjelper deg å lære mer om Ethereum.** Denne siden inneholder tekniske **og** ikke-tekniske artikler, gaider og ressurser. Hvis du er helt ny på Ethereum, [foreslår vi at du starter her](/what-is-ethereum/).
-
-Her er noen fantastiske startpunkter:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Sep 18, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Feb 18, 2018 - Chris Dixon_
-- [Året med Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Jan 16, 2019 - Josh Stark, Evan Van Ness og Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mar 29, 2019 - Virgil Griffith_
-
-I tillegg til informasjonen på denne siden er det mange samfunnsutviklede ressurser som er verdt å utforske:
-
-- [EthHub](https://docs.ethhub.io) _Omfattende kunnskapsbase for alle ting Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _En pedagogisk ressurs om Ethereum rettet mot nybegynnere_
-- [Ethereum.wiki](https://eth.wiki) _En samfunnsbygget wiki om Ethereums teknologi _
-- [Kauri](https://kauri.io) _Tekniske artikler og opplæringsprogrammer for Ethereum og relaterte prosjekter _
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videoer og samtaler om Ethereum _
-- [Week in Ethereum News](https://weekinethereumnews.com/) _ukentlig nyhetsbrev som dekker viktige utviklinger i økosystemet _
-- [What’s new in ETH 2.0](https://eth2.news) _Et vanlig nyhetsbrev om ETH 2.0-utvikling _
-- [ethresear.ch forum](https://ethresear.ch/) _Dypere tekniske diskusjoner om Ethereum for ETH 2.0 og utover _
-- [ETHGlobal](https://ethglobal.co) _En Ethereum hackathon-serie - delta på en i nærheten! _
-
-## Ethereum det grunnleggende {#ethereum-basics}
-
-Ny til Ethereum? Disse artiklene og ressursene er et godt sted å komme i gang.
-
-- [En nybegynnerguide for Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Feb 23, 2017 - Linda Xie_
-- [Video: Hva er ether og Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _April 25, 2019 - CME Group_
-- [Hva er Ethereum? ](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [Hva er ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Oppdatert - Ethub_
-- [Komplett introduksjon til Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _juli 23, 2019_
-- [Sak for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Jan 30, 2018 - Elad Gil_
-- [Blockchains: Hvordan de fungerer og hvorfor det vil endre verden](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _Sept 28, 2017 - organPeck_
-
-## Hvordan Ethereum virker {#how-ethereum-works}
-
-High-level forklaring for Ethereum og for blokkjede teknologien generelt.
-
-- [Hvordan fungerer Ethereum?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [En mild introduksjon til Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oktober 2, 2016 - Antony Lewis_
-- [Introduksjon til Blokkjeder gjennom kryptoøkonomi - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduksjon til Blockchain gjennom kryptoøkonomi - Del 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19. juli 2018 - Zubin Koticha_
-
-## Smart Kontrakter {#smart-contracts}
-
-En «smart kontrakt» er bare en liten bit kode som kjører på Ethereum. Den kalles en «kontrakt» fordi kode som kjører på Ethereum kan kontrollere verdifulle ting som ETH eller andre digitale resurser.
-
-- Vil du lære å programmere på Ethereum med smarte kontrakter? [ethereum.org/developers](/developers/)
-- [Hva er en smart kontrakt?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [Hva er Smarte kontrakter / Desentraliserte Applikasjoner?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Oppdatert ofte - Ethhub_
-
-## Proof-of-work og Mining {#proof-of-work-and-mining}
-
-Ethereum brukes i dag et system kalt “Proof Work”. Det gjør det mulig for Ethereum-nettverket å bli enige om tilstanden på all informasjon som registreres i Ethereum-blokkkjeden, og forhindrer visse typer økonomiske angrep.
-
-- [Hva betyr det å "mine" Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Oppdatert ofte - Ethhub_
-
-I ETH 2.0 vil Ethereum bli ført videre til et annet system kalt “proof-of-stake”. [Les mer om ETH 2.0 under](#eth-2-0).
-
-## Klienter og Noder {#clients-and-nodes}
-
-Ethereum-nettverket er bygget opp av mange noder som kjører kompatibel klientprogramvare. Det er to klienter som brukes av et flertall av Noder: [Geth](https://geth.ethereum.org/) (skrevet i Go) og [ Parity](https://www.parity.io/ethereum/) (skrevet i Rust).
-
-- Vil du lære hvordan du kjører din egen Node? → [ethereum.org/developers](/developers/#clients-running-your-own-node/)
-- [Omfattende liste over alle Ethereum klienter](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Enterprise Ethereum {#enterprise-ethereum}
-
-Enterprise Ethereum henviser til private, konsortier og hybride implementeringer av Ethereum kodebase for forretnings-applikasjoner. Bedrifter over hele verden bruker allerede Enterprise Ethereum til å Strømlinjeforme finansmarkedene, styre forsyningskjedene og lage nye forretningsmodeller.
-
-Les mer om [Enterprise Ethereum](/enterprise/).
-
-## Forbedre Ethereum sin skalerbarhet {#improving-ethereums-scalability}
-
-Det er mye arbeid i gang for å gjøre Ethereum mer "skalabellerbar" ved å forbedre hastigheten og antal transaksjonen den kan behandle. Vanligvis sorteres disse inn i “Lag 1” og “Lag 2” løsninger.
-
-”Lag 1” viser til forbedring av kjernen i Ethereum-protokollen. Primært prosjektet for å forbedre Ethereums kjerneprotokoll er [ETH 2.0](#eth-2-0).
-
-”Lag 2” viser til teknologier som er bygger på ”toppen” av base Ethereum-protokollen og gir større skalerings evne uten å sette denne i fare. Det finnes også “off-chain”-teknologier som f.eks. sidekjeder som muliggjør større skalerbarhet ved å ha et annet sett med sikkerhetselementer.
-
-- [Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Feb 12, 2018 - Josh Stark_
-- [Saken for Ethereum Skalering](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Jan 18, 2019 - Hunter Hillman, Steven McKie, og Eric Olszewski_
-- [5 Måter å skalere din Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Apr 23, 2019 - Andreas Wallendahl_
-
-### Betaling & State Channels {#payment--state-channels}
-
-- [State Channels - en forklaring](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Grunnleggende om State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Updated often - EthHub_
-
-### Sidekjeder {#sidechains}
-
-- [Skalering av Ethereum Dapps gjennom sidekjeder (Sidechains)](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [ Forstå Plasma, Part 1: Det grunnleggende](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Forstå Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Lær Plasma - En ressursmengde for rammeverket i plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (også kjent som “Serenity”) henviser til neste store oppgradering av Ethereum sin kjerneprotokoll. Det kombinerer flere forbedringer av Ethereums kjerneprotokoll eller «Lag 1».
-
-- [ETH 2.0 Veikart og Faser](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Updated often - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Updated often - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Updated often - EthHub_
-- [ETH 2.0 - Veien til å skalere Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Forskere AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Forskere AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 ting du ikke visste om Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x er navnet for en samling av oppgraderinger til den eksisterende Ethereum-protokollen. Målet er å fortsette å forbedre og opprettholde Ethereum mens ETH 2.0 er utviklet og implementert.
-
-For mer informasjon, se [EthHub's forklarende side om ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Kryptoøkonomi {#cryptoeconomics}
-
-“Cryptoeconomics” er den praktiske vitenskapen av å bygge distribuerte systemer, der egenskapene til disse systemene er sikret av finansielle insentiver og hvor de økonomiske mekanismene garanteres ved hjelp av kryptografi. Det er allmenn betegnelse for praksisen med å designe og skalere blokkkjeder som Ethereum og Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Introduksjon til kryptokonomi ](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) Aug 19, 2018 - Karl Floersch_
-- [Gjør mening av kryptokonomi](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Nov 16 2017 - Josh Stark_
-
-## Kritikk og skepsis {#critique-and-skepticism}
-
-Kritiske holdninger av Ethereum og Cryptovaluta.
-
-- [Ethereum sitt veikart er ikke ambisiøst nok](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _March 27, 2019 - Interview with Rick Dudley_
-- [Utfordringene med å bygge etereum sin infrastruktur](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Jan 8, 2018 - Jameson Lopp_
-- [Parsimonious svarer på vanskelige spørsmål](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) March 10, 2019 - Rick Dudley_
-- [ Det er ingen god grunn til å stole på blokkjede-teknologi](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Feb 6, 2019 - Bruce Schneier_
diff --git a/src/content/translations/pl/developers/tutorials/run-node-raspberry-pi/index.md b/src/content/translations/pl/developers/tutorials/run-node-raspberry-pi/index.md
index 62ffe56117a..2e28645e0dd 100644
--- a/src/content/translations/pl/developers/tutorials/run-node-raspberry-pi/index.md
+++ b/src/content/translations/pl/developers/tutorials/run-node-raspberry-pi/index.md
@@ -237,12 +237,12 @@ Po raz pierwszy, musisz utworzyć ręcznie konto, uruchamiając plik binarny „
Włożyliśmy dużo pracy, próbując skonfigurować Raspberry Pi 4 jako pełny węzeł Ethereum, ponieważ wiemy, że ogromna baza użytkowników tego urządzenia może mieć bardzo pozytywny wpływ na sieć.
-Proszę wziąć pod uwagę, że jest to pierwszy obraz oparty na Ubuntu 20.04, więc może być kilka błędów. Jeśli tak, otwórz zgłoszenie na [GitHub](https://github.com/diglos/pi-gen) lub skontaktuj się z nami na [Twitter](https://twitter.com/EthereumOnARM).
+Proszę wziąć pod uwagę, że jest to pierwszy obraz oparty na Ubuntu 20.04, więc może być kilka błędów. Jeśli tak, otwórz zgłoszenie na [GitHub](https://github.com/diglos/ethereumonarm) lub skontaktuj się z nami na [Twitter](https://twitter.com/EthereumOnARM).
## Odniesienia {#references}
1. [geth repeatedly crashes with SIGSEGV](https://github.com/ethereum/go-ethereum/issues/20190)
-2. [https://github.com/diglos/pi-gen](https://github.com/diglos/pi-gen)
+2. [https://github.com/diglos/ethereumonarm](https://github.com/diglos/ethereumonarm)
3. https://ubuntu.com/download/raspberry-pi
4. https://en.wikipedia.org/wiki/Port_forwarding
5. https://prometheus.io
diff --git a/src/content/translations/pt-br/learn/index.md b/src/content/translations/pt-br/learn/index.md
deleted file mode 100644
index 39d26ac7f18..00000000000
--- a/src/content/translations/pt-br/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Aprenda sobre a Ethereum
-description: Um conjunto de artigos, guias e recursos técnicos e não técnicos para aprender sobre a Ethereum.
-lang: pt-br
-sidebar: true
-sidebarDepth: 1
----
-
-# Aprenda sobre a Ethereum {#learn-about-ethereum}
-
-**Bem-vindo a [ethereum.org/learn](/learn/), um conjunto de recursos criados para ajudar você a entender mais sobre Ethereum.** Esta página inclui informações técnicas **e** artigos, guias e recursos não técnicos. Se você é novo na Ethereum, [nós sugerimos começar por aqui](/what-is-ethereum/).
-
-Aqui estão alguns excelentes pontos de partida:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Sep 18, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Fev 18, 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Jan 16, 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mar 29, 2019 - Virgil Griffith_
-
-Além das informações nesta página, há muitos recursos construídos pela comunidade que valem a pena explorar:
-
-- [EthHub](https://docs.ethhub.io) _Um site com grande base de conhecimento global sobre todas as coisas da Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Um site educacional sobre Ethereum direcionado para iniciantes_
-- [Ethereum.wiki](https://eth.wiki) _Uma wiki construída pela comunidade sobre a tecnologia Ethereum_
-- [Kauri](https://kauri.io) _Artigos técnicos e tutoriais para Ethereum e projetos relacionados_
-- [Fundação Ethereum YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Vídeos e palestras sobre Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Uma newsletter semanal cobrindo os principais desenvolvimentos do ecossistema como um todo_
-- [What’s new in ETH 2.0](https://eth2.news) _Um boletim de notícias regular sobre o desenvolvimento do ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Discussões mais profundas sobre Ethereum para ETH 2.0 e além_
-- [ETHGlobal](https://ethglobal.co) _Uma série global de hackathons sobre Ethereum - Veja uma perto de você!_
-
-## Informações básicas da Ethereum {#ethereum-basics}
-
-Novo na Ethereum? Estes artigos e recursos são um bom local para começar.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Feb 23, 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _Abril 25, 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Atualizado frequentemente - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _Jul 23, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Jan 30, 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _Sept 28, 2017 - Morgan Peck_
-
-## Como a Ethereum funciona {#how-ethereum-works}
-
-Explicações de alto nível sobre Ethereum e a tecnologia blockchain em geral.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oct 2, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _July 19, 2018 - Zubin Koticha_
-
-## Contratos Inteligentes {#smart-contracts}
-
-Um "contrato inteligente" é simplesmente um pedaço de código que está sendo executado na Ethereum. É chamado de "contrato" porque o código que roda na Ethereum pode controlar coisas valiosas como o ETH ou outros ativos digitais.
-
-- Quer aprender como programar na Ethereum com contratos inteligentes? [ethereum.org/developers](/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Atualizado Recentemente - Ethhub_
-
-## Prova de Trabalho e mineração {#proof-of-work-and-mining}
-
-A Ethereum usa atualmente um sistema chamado "Prova de Trabalho". Isto permite que a rede Ethereum concorde com o estado de todas as informações gravadas no blockchain Ethereum, e previne certos tipos de ataques econômicos.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Atualizado frequentemente - Ethhub_
-
-No ETH 2.0, a Ethereum vai mudar para um sistema diferente chamado "Prova de Participação". [Leia mais sobre ETH 2.0 abaixo](/#eth-2-0).
-
-## Clientes e Nodos {#clients-and-nodes}
-
-A rede Ethereum é composta por muitos nodos, cada um dos quais executa software compatível com o cliente. Há dois clientes que são usados por uma maioria dos nodos: [Geth](https://geth.ethereum.org/) (escrito em Go) e [Parity](https://www.parity.io/ethereum/) (escrito em Rust).
-
-- Quer aprender a executar seu próprio nodo? → [ethereum.org/developers](/developers/#clients-running-your-own-node/)
-- [Lista completa de todos os clientes da Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum empresarial {#enterprise-ethereum}
-
-Ethereum empresarial se refere a implementações privadas, em consórcio ou híbridas do código-fonte da Ethereum para aplicativos e softwares de negócios. Empresas de todo mundo já estão usando o Enterprise Ethereum para agilizar e simplificar mercados financeiros, gerenciar cadeias de fornecimento e criar novos modelos de negócios.
-
-Leia mais sobre a [Ethereum empresarial](/enterprise/).
-
-## Melhorando a escalabilidade da Ethereum {#improving-ethereums-scalability}
-
-Há muitos esforços sendo feitos para tornar a Ethereum mais “escalável” melhorando sua velocidade e rendimento de transação. Geralmente, estes são classificados em soluções de "Layer 1" e "Layer 2".
-
-"Layer 1" refere-se a melhorar o núcleo de protocolo da Ethereum. O projeto principal para melhorar o protocolo central da Ethereum é [ETH 2.0](/#eth-2-0).
-
-"Layer 2" refere-se à tecnologias que são construídas "no topo" do protocolo de Ethereum base, permitindo maior escalabilidade sem comprometer a segurança. Também existem tecnologias "off-chain", como as "sidechains" (correntes paralelas), que permitem uma maior escalabilidade através da criação de um conjunto diferente de compromissos em matéria de segurança.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Feb 12, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Jan 18, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Abr 23, 2019 - Andreas Wallendahl_
-
-### Pagamento & Canais de Estado {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Updated often - EthHub_
-
-### Correntes paralelas {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - A learning resource for the Plasma framework](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-O ETH 2.0 (também conhecido como “Serenity”) refere-se à próxima grande atualização do protocolo da Ethereum. Combina várias melhorias no protocolo central da Ethereum, ou "Layer 1".
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Updated often - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Atualizado frequentemente - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Atualizado frequentemente - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _Jul 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x é o nome para uma coleção de atualizações para o protocolo da Ethereum existente. O objetivo é continuar a melhorar e manter a Ethereum enquanto o ETH 2.0 é desenvolvido e implementado.
-
-Para mais informações, acesse a [página de explicação do EthHub sobre o ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Criptoeconomia {#cryptoeconomics}
-
-“Criptoeconomia” é a ciência de construção de sistemas distribuídos, onde as propriedades desses sistemas são protegidas por incentivos financeiros e onde os mecanismos econômicos são garantidos pela criptografia. É o termo geral para a prática de criar e escalar blockchains como Ethereum e Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Vídeo) Aug 19, 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Nov 16 2017 - Josh Stark_
-
-## Criticas e desconfianças {#critique-and-skepticism}
-
-Visões críticas sobre a Ethereum e as Criptomoedas.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _March 27, 2019 - Interview with Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Jan 8, 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Vídeo) March 10, 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Feb 6, 2019 - Bruce Schneier_
diff --git a/src/content/translations/pt/learn/index.md b/src/content/translations/pt/learn/index.md
deleted file mode 100644
index a216ba8e255..00000000000
--- a/src/content/translations/pt/learn/index.md
+++ /dev/null
@@ -1,137 +0,0 @@
----
-title: Informação sobre Ethereum
-lang: pt
-sidebar: true
-sidebarDepth: 1
----
-
-# Informação sobre Ethereum
-
-**Bem-vindo ao [ethereum.org/learn](/pt/learn/), um conjunto de recursos para ajudar-te a aprender mais sobre o Ethereum.** Esta página inclui aspetos técnicos **e** artigos não técnicos, guias e recursos. Se ainda não conheces o Ethereum, [nós sugerimos que comeces aqui](/pt/what-is-ethereum/).
-
-Aqui estão alguns excelentes pontos de partida:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 de setembro de 2017 - Vitalik Buterin (Vídeo)_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 de janeiro de 2019 - Josh Stark, Evan Van Ness e Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29 de março de 2019 - Virgil Griffith_
-
-Além das informações nesta página, há muitos recursos construídos pela comunidade que merecem ser explorados:
-
-- [EthHub](https://docs.ethhub.io) _Base de dados de conhecimentos abrangente para Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Um recurso educacional sobre Ethereum para principantes_
-- [Ethereum.wiki](https://eth.wiki) _Um wiki construído pela comunidade sobre a tecnologia do Ethereum_
-- [Kauri](https://kauri.io) _Artigos técnicos e tutoriais para Ethereum e projetos relacionados_
-- [Youtube da Fundação Ethereum](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Vídeos e palestras sobre o Ethereum_
-- [Semanário de Notícias sobre o Ethereum](https://weekinethereumnews.com/) _Newsletter semanal sobre desenvolvimentos fundamentais em todo o ecossistema_
-- [O que há de novo no ETH 2.0](https://eth2.news) _Newsletter regular sobre o desenvolvimento em ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Disussões mais profundas sobre Ethereum para ETH 2.0 e além_
-- [ETHGlobal](https://ethglobal.co) _Uma série de hackathons do Ethereum - participe num perto de si!_
-
-## Básico de Ethereum
-
-Novo no Ethereum? Estes artigos e recursos são um bom local para começar.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23 de fevereiro de 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 de abril de 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Atualizado frequentemente - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _23 de julho de 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 de janeiro de 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 de setembro de 2017 - Morgan Peck_
-- [Don’t let Doubts about Blockchains Close your Mind](https://www.bloomberg.com/opinion/articles/2018-04-27/blockchains-warrant-skepticism-but-keep-an-open-mind) _27 de abril de 2018 - Tyler Cowen_
-
-## Funcionamento do Ethereum
-
-Explicações de alto nível da tecnologia Ethereum e blockchain em geral.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27 de setembro de 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2 de outubro de 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://blockchainatberkeley.blog/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 de janeiro de 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Parte 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19 de julho de 2018 - Zubin Koticha_
-
-## Smart Contracts
-
-Um "smart contract" é simplesmente um pedaço de código que é executado em Ethereum. Chama-se "contract" (contrato) porque o código que corre em Ethereum pode controlar coisas valiosas como ETH ou outros ativos digitais.
-
-- Quer aprender a programar no Ethereum com smart contracts? [ethereum.org/developers](/pt/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12 de novembro de 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Atualizado frequentemente - Ethhub_
-
-## Proof-of-work e Mineração
-
-O Ethereum atualmente usa um sistema chamado "proof-of-work". Isso permite que a rede Ethereum concorde com o estado de todas as informações registadas no blockchain do Ethereum, e previne certos tipos de ataques económicos.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Atualizado frequentemente - Ethhub_
-
-No ETH 2.0, o Ethereum vai se mover para um sistema diferente chamado "proof-of-stake". [Leia mais sobre ETH 2.0 abaixo](#eth-2-0).
-
-## Clientes e nós
-
-A rede Ethereum é composta por muitos nós que executam software cliente compatível. Há dois clientes que são usados pela maioria dos nós: [Geth](https://geth.ethereum.org/) (escrito em Go) e [Parity](https://www.parity.io/ethereum/) (escrito em Rust).
-
-- Queres aprender a executar um nó próprio? → [ethereum.org/developers](/pt/developers/#clients-running-your-own-node/)
-- [Lista completa de todos os clientes Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Melhorar a escalabilidade do Ethereum
-
-Há muitos esforços em curso para tornar o Ethereum mais “escalável”, melhorar a sua velocidade e o débito global de transações. Geralmente esses esforços são denominadas de soluções "Layer 1" e "Layer 2".
-
-"Layer 1" refere-se ao melhoramento do protocolo atual e central do Ethereum. O principal projeto para melhorar o protocolo central da Ethereum é [ETH 2.0](#eth-2-0).
-
-Layer 2 refere-se a tecnologias que são construídas "sobre" o protocolo base Ethereum, permitindo uma maior escalabilidade sem comprometer a segurança. Também existem tecnologias "off-chain", como as "sidechains", que permitem uma maior escalabilidade através da criação de um conjunto diferente de compromissos em matéria de segurança.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12 de fevereiro de 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 de janeiro de 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 de abril de 2019 - Andreas Wallendahl_
-
-### Pagamento e canais de estado
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _6 de novembro de 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Atualizado frequentemente - EthHub_
-
-### Sidechains
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8 de fevereiro de 2018 - Georgios Konstantopoulos_
-
-### Plasma
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 de fevereiro de 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Aprender Plasma - Um recurso de aprendizagem para a estrutura de Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0
-
-ETH 2.0 (também conhecido como "Serenity") refere-se à próxima grande atualização do protocolo central do Ethereum. Combina várias melhorias para o protocolo central ou “Layer 1” do Ethereum.
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Atualizado frequentemente - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _9 de dezembro de 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Atualizado frequentemente - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Atualizado frequentemente - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Vídeo) Novembro de 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _24 de janeiro de 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15 de julho de 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 de julho de 2019 - Bruno Škvorc_
-
-## ETH 1.x
-
-ETH 1.x é o nome de uma coleção de atualizações para o protocolo Ethereum existente. O objetivo é continuar a melhorar e manter o Ethereum enquanto o ETH 2.0 é desenvolvido e implementado.
-
-Para mais informações, consulta a página explicativa de [EthHub, sobre o ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Criptoeconomia
-
-"Criptoeconomia" é a ciência prática de construir sistemas distribuídos, em que as propriedades desses sistemas são protegidos por incentivos financeiros e onde os mecanismos económicos são protegidos por criptografia. É o termo geral para a prática de conceber e dimensionar blockchains como Ethereum e Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Vídeo) 19 de agosto de 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16 de novembro de 2017 - Josh Stark_
-
-## Crítica e ceticismo
-
-Ponto de vista críticos sobre Ethereum e Criptomoedas.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27 de março de 2019 - Entrevista com Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8 de janeiro de 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Vídeo) 10 de março de 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6 de fevereiro de 2019 - Bruce Schneier_
diff --git a/src/content/translations/ro/developers/tutorials/run-node-raspberry-pi/index.md b/src/content/translations/ro/developers/tutorials/run-node-raspberry-pi/index.md
index 41a72174109..bcbd31aa7d5 100644
--- a/src/content/translations/ro/developers/tutorials/run-node-raspberry-pi/index.md
+++ b/src/content/translations/ro/developers/tutorials/run-node-raspberry-pi/index.md
@@ -234,12 +234,12 @@ Pentru prima dată, trebuie să creezi manual un cont executând „validatorul
Am muncit mult încercând să instalăm Raspberry Pi 4 ca un nod complet Ethereum, deoarece știm că imensa bază de utilizare a acestui dispozitiv ar putea avea un impact foarte pozitiv în rețea.
-Te rugăm să iei în considerare faptul că aceasta este prima imagine bazată pe Ubuntu 20.04, astfel încât ar putea exista unele erori. Dacă găsești erori, deschide un tichet pe [GitHub](https://github.com/diglos/pi-gen) sau contactează-ne pe [Twitter](https://twitter.com/EthereumOnARM).
+Te rugăm să iei în considerare faptul că aceasta este prima imagine bazată pe Ubuntu 20.04, astfel încât ar putea exista unele erori. Dacă găsești erori, deschide un tichet pe [GitHub](https://github.com/diglos/ethereumonarm) sau contactează-ne pe [Twitter](https://twitter.com/EthereumOnARM).
## Referințe {#references}
1. [geth se blochează în mod repetat cu SIGSEGV](https://github.com/ethereum/go-ethereum/issues/20190)
-2. [https://github.com/diglos/pi-gen](https://github.com/diglos/pi-gen)
+2. [https://github.com/diglos/ethereumonarm](https://github.com/diglos/ethereumonarm)
3. https://ubuntu.com/download/raspberry-pi
4. https://en.wikipedia.org/wiki/Port_forwarding
5. https://prometheus.io
diff --git a/src/content/translations/ro/learn/index.md b/src/content/translations/ro/learn/index.md
deleted file mode 100644
index 09e6f638035..00000000000
--- a/src/content/translations/ro/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: Învață despre Ethereum
-description: O colecție de articole tehnice și non-tehnice, ghiduri și resurse pentru a învăța despre Ethereum.
-lang: ro
-sidebar: true
----
-
-# Învață despre Ethereum {#learn-about-ethereum}
-
-**Bine ai venit la ethereum.org/learn, un set de resurse ce te va ajuta să înveți mai multe despre Ethereum.** Această pagină include articole tehnice **și** non-tehnice, ghiduri și resurse. Dacă ești complet nou(ă) în universul Ethereum, [îți recomandăm să începi aici](/ro/what-is-ethereum/).
-
-Iată câteva puncte de start excelente:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 septembrie 2017 - Vitalik Buterin (Video)_
-- [De ce este importantă descentralizarea](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 februarie 2018 - Chris Dixon_
-- [Anul în Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 ianuarie 2019 - Josh Stark, Evan Van Ness și Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29 martie 2019 - Virgil Griffith_
-
-Pe lângă informațiile din această pagină, există multe resurse generate de comunitate, care merită să fie explorate:
-
-- [EthHub](https://docs.ethhub.io) _O bază de date cuprinzătoare, cu tot ce ține de Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _O resursă educațională despre Ethereum, pentru începători_
-- [Ethereum.wiki](https://eth.wiki) _Un wiki dezvoltat de comunitate despre tehnologia Ethereum_
-- [Kauri](https://kauri.io) _Articole tehnice și tutoriale despre Ethereum și proiecte conexe_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videoclipuri și prezentări despre Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Un newsletter săptămânal ce acoperă principalele evoluții din ecosistem_
-- [What's new in ETH 2.0](https://eth2.news) _Un newsletter periodic despre dezvoltarea ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Discuții tehnice avansate despre Ethereum în perspectiva ETH 2.0 și mai departe_
-- [ETHGlobal](https://ethglobal.co) _O serie de hackathoane Ethereum - participă la unul din zona ta!_
-
-## Fundamente Ethereum {#ethereum-basics}
-
-Nou venit(ă) în Ethereum? Aceste articole și resurse sunt un punct bun de start.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23 februarie 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 aprilie 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Actualizat frecvent - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _23 iulie 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 ianuarie 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 septembrie 2017 - Morgan Peck_
-
-## Cum funcționează Ethereum {#how-ethereum-works}
-
-Prezentări generice ale Ethereum și tehnologiei blockchain.
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27 septembrie 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2 octombrie 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 ianuarie 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19 iulie 2018 - Zubin Koticha_
-
-## Contracte smart {#smart-contracts}
-
-Un „contract smart” este o secvență de cod care rulează pe Ethereum. Se numește „contract" deoarece codul care rulează pe Ethereum poate controla lucruri de valoare, ca ETH sau alte active digitale.
-
-- Vrei să înveți să programezi pe Ethereum cu contracte smart? [ethereum.org/developers](/ro/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12 noiembrie 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Actualizat frecvent - Ethhub_
-
-## Proof-of-work și operațiile de mining {#proof-of-work-and-mining}
-
-Ethereum folosește un sistem numit „proof-of-work”. Acesta îi permite rețelei Ethereum să se pună de acord în privința stării tuturor informațiilor înregistrate pe blockchainul Ethereum și previne anumite tipuri de atac economic.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Actualizat frecvent - Ethhub_
-
-În ETH 2.0, Ethereum va migra la un alt tip de sistem, numit proof-of-stake". [Citește mai mult despre ETH 2.0 mai jos](#eth-2-0).
-
-## Clienți și noduri {#clients-and-nodes}
-
-Rețeaua Ethereum este compusă din numeroase noduri care rulează clienți software compatibili. Majoritatea clienților folosesc 2 clienți: [Geth](https://geth.ethereum.org/) (scris în Go) și [Parity](https://www.parity.io/ethereum/) (scris în Rust).
-
-- Vrei să afli cum să rulezi propriul tău nod? → [ethereum.org/developers](/ro/developers/#clients-running-your-own-node/)
-- [Lista completă a tuturor clienților Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum Enterprise {#enterprise-ethereum}
-
-Ethereum Enterprise se referă la implementări private, în consorțiu sau hibride ale bazei de cod Ethereum pentru aplicații de business. Companii din întreaga lume folosesc deja Ethereum Enterprise pentru eficientizarea piețelor financiare, administrarea lanțurilor de aprovizionare și crearea de noi modele de business.
-
-Citește mai mult despre [Ethereum Enterprise](/ro/enterprise/).
-
-## Îmbunătățirea scalabilității Ethereum {#improving-ethereums-scalability}
-
-Se depun multe eforturi pentru a face Ethereum mai „scalabil”, prin creșterea vitezei și a capacității generale de procesare a tranzacțiilor. În general, acestea sunt organizate în soluții „Layer 1” și „Layer 2”.
-
-„Layer 1” se referă la îmbunătățiri ale protocolului de bază Ethereum. Principalul proiect pentru îmbunătățirea protocolului de bază Ethereum este [ETH 2.0](#eth-2-0).
-
-„Layer 2” se referă la tehnologii dezvoltate „peste” protocolul de bază Ethereum, permițând o scalabilitate crescută fără compromisuri de securitate. Există și tehnologii „off-chain”, ca side-chains, care măresc scalabilitatea prin acceptarea unui set diferit de compromisuri de securitate.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12 februarie 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 ianuarie 2019 - Hunter Hillman, Steven McKie și Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 aprilie 2019 - Andreas Wallendahl_
-
-### Plăți și canale de stări {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _5 noiembrie 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Actualizat frecvent - EthHub_
-
-### Sidechains {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8 februarie 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 februarie 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Învață Plasma - Resurse educaționale pentru frameworkul Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (cunoscut și ca „Serenity”) se referă la următoarea versiune îmbunătățită a protocolului core Ethereum. Aceasta îmbină mai multe îmbunătățiri ale protocolului core Ethereum („Layer 1”).
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Actualizat frecvent - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _9 decembrie 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Actualizat frecvent - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Actualizat frecvent - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) noiembrie 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _24 ianuarie 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15 iulie 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 iulie 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x este numele dat unui set de îmbunătățiri aduse protocolului Ethereum existent. Scopul este continuarea îmbunătățirii și mentenanței Ethereum, în timp ce ETH 2.0 este dezvoltat și implementat.
-
-Pentru mai multe informații accesează [pagina cu explicații EthHub despre ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Criptoeconomia {#cryptoeconomics}
-
-„Criptoeconomia” este știința practică a dezvoltării de sisteme distribuite. Proprietățile sistemelor respective sunt asigurate de stimulente financiare și mecanismele economice sunt garantate prin criptografie. Acesta este termenul general utilizat pentru practica dezvoltării și scalării de blockchainuri ca Ethereum și Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) 19 august 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16 noiembrie 2017 - Josh Stark_
-
-## Critici și scepticism {#critique-and-skepticism}
-
-Perspective critice asupra Ethereum și asupra criptovalutelor.
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27 martie 2019 - Interviu cu Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8 ianuarie 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) 10 martie 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6 februarie 2019 - Bruce Schneier_
diff --git a/src/content/translations/sl/learn/index.md b/src/content/translations/sl/learn/index.md
deleted file mode 100644
index 68d3c81adc1..00000000000
--- a/src/content/translations/sl/learn/index.md
+++ /dev/null
@@ -1,127 +0,0 @@
----
-title: Učenje
-lang: sl
-sidebar: true
----
-
-# Spoznajte Ethereum {#learn-about-ethereum}
-
-**Pozdravljeni v [ethereum.org/sl/learn](/sl/learn/) – to je zbirka virov, ki vam bodo v pomoč pri spoznavanju Ethereuma.** Na tej strani so tehnični **in** netehnični članki, vodniki in viri. Če ste ravnokar odkrili Ethereum, [priporočamo, da začnete tukaj](/sl/what-is-ethereum/).
-
-Tukaj je nekaj odličnih točk za začetek:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18. sep. 2017 – Vitalik Buterin (video)_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16. jan 2019 – Josh Stark, Evan Van Ness in Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29. mar. 2019 – Virgil Griffith_
-
-Poleg informacij na tej strani je še veliko virov, ki jih je pripravila skupnost in jih je vredno prebrati:
-
-- [EthHub](https://docs.ethhub.io) _Celovita zbirka znanja o vsem, kar je povezano z Ethereumom_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Poučen vir za tiste, ki šele spoznavajo Ethereum_
-- [Ethereum.wiki](https://eth.wiki) _Zbirka znanja o tehnologiji Ethereum, ki jo ustvarja skupnost_
-- [Kauri](https://kauri.io) _Tehnični članki in vodiči za Ethereum in sorodne projekte_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videoposnetki in predavanja o Ethereumu_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _Tedenski novičnik, ki pokriva ključne dogodke v ekosistemu Ethereum_
-- [What’s new in ETH 2.0](https://eth2.news) _Reden novičnik o razvoju ETH 2.0_
-- [ETHGlobal](https://ethglobal.co) _Serija hackathonov za Ethereum – udeležite se kakšnega v bližini!_
-
-## Osnove Ethereuma {#ethereum-basics}
-
-Ali želite spoznati Ethereum? Spodnji članki in viri so dober začetek.
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23. februar 2017 – Linda Xie_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [Kaj je ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Pogosto posodobljeno – EthHub_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30. januar 2018 – Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28. september 2017 – Morgan Peck_
-- [Don’t let Doubts about Blockchains Close your Mind](https://www.bloomberg.com/opinion/articles/2018-04-27/blockchains-warrant-skepticism-but-keep-an-open-mind) _27. april 2018 – Tyler Cowen_
-
-## Kako deluje Ethereum {#how-ethereum-works}
-
-Pojasnila o Ethereumu in tehnologiji veriženja blokov na splošno na visoki ravni
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oct 2, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://blockchainatberkeley.blog/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _19. julij 2018 - Zubin Koticha_
-
-## Pametne pogodbe {#smart-contracts}
-
-Preprosto povedano je "pametna pogodba" samo delček kode, ki se izvaja v Ethereumu. Imenujemo jo "pogodba", ker lahko koda, se izvaja v Ethereumu, nadzoruje stvari, ki imajo vrednost, kot so ETH in druga digitalna sredstva.
-
-- Ali se želite naučiti, kako programirati pametne pogodbe v Ethereumu? [ethereum.org/sl/developers](/developers/)
-
-## Dokaz dela in rudarjenje {#proof-of-work-and-mining}
-
-Ethereum trenutno uporablja sistem imenovan dokaz dela (“proof-of-work). Ta omrežju Ethereum omogoča, da ima preverljivo stanje vseh podatkov, zabeleženih v verigi blokov Ethereuma, in preprečuje nekatere vrste ekonomskih napadov na omrežje.
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Pogosto posodobljeno – Ethhub_
-
-V ETH 2.0 bo Ethereum prešel na drugačen sistem, imenovan "dokaz deleža" (“proof-of-stake”). [Več o ETH 2.0 preberite spodaj](#eth-2-0).
-
-## Odjemalci in vozlišča {#clients-and-nodes}
-
-Omrežje Ethereum je sestavljeno iz številnih vozlišč in v vsakem od njih se izvaja združljiva odjemalska programska oprema. Večina vozlišč uporablja enega od dveh odjemalcev: [Geth](https://geth.ethereum.org/) (napisan v programskem jeziku Go) in [Parity](https://www.parity.io/ethereum/) (napisan v programskem jeziku Rust).
-
-- Ali želite izvajati svoje vozlišče? → [ethereum.org/developers](/sl/developers/#clients--running-your-own-node/)
-- [Izčrpen seznam vseh odjemalcev za Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Izboljšanje razširljivosti Ethereuma {#improving-ethereums-scalability}
-
-Veliko prizadevanj je na področju "razširljivosti" Ethereuma, s čimer bi izboljšali hitrost in transakcijsko zmogljivost omrežja. Te na splošno uvrščamo med rešitve “Layer 1” in “Layer 2”.
-
-Rešitve “Layer 1” so osredotočene na izboljšanje protokola Ethereum. Glavni projekt za izboljšanje protokola Ethereum je [ETH 2.0](#eth-2-0).
-
-“Layer 2” zajema tehnologije, ki so zgrajene na osnovnem protokolu Ethereum, kar omogoča večjo razširljivost brez kompromisov pri varnosti. Obstajajo tudi tehnologije zunaj verige, kot so stranske verige, ki omogočajo večjo razširljivost, vendar z različnim naborom kompromisov glede varnosti.
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12. februar, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18. januar, 2019 - Hunter Hillman, Steven McKie in Eric Olszewski_
-
-### Plačilni kanali in kanali stanja {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Pogosto posodobljeno – EthHub_
-
-### Stranske verige {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma - A learning resource for the Plasma framework](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (imenovan tudi "Serenity") se nanaša na naslednjo večjo nadgradnjo osnovnega protokola Ethereum. Združuje več izboljšav osnovnega protokola Ethereum, imenovanega tudi "Layer 1".
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Pogosto posodobljeno – EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Pogosto posodobljeno – EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Pogosto posodobljeno – EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(video) november 2018 – YouTube_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x je ime za zbirko nadgradenj obstoječega protokola Ethereum. Cilj je nadaljevati z izboljševanjem in vzdrževanjem Ethereuma, medtem ko se razvija in uvaja ETH 2.0.
-
-Več informacij je na [strani EthHub s pojasnili o ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Kriptoekonomija {#cryptoeconomics}
-
-"Kriptoekonomija" je praktična veda o gradnji porazdeljenih sistemov, kjer so lastnosti teh sistemov zaščitene s finančnimi spodbudami, ekonomski mehanizmi pa so zajamčeni s kriptografijo. To je splošni pojem za proces oblikovanja in razširjanja verig blokov, kot sta Ethereum in bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(video) 19. avgust 2018 – Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16. nov 2017 – Josh Stark_
-
-## Kritike in skepticizem {#critique-and-skepticism}
-
-Kritični pogledi na Ethereum in kriptovalute
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _27. marec 2019 – razgovor z Rickom Dudleyem_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _ 8. jan. 2018 – Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(video) 10. marec 2019 – Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6. feb 2019 – Bruce Schneier_
diff --git a/src/content/translations/tr/learn/index.md b/src/content/translations/tr/learn/index.md
deleted file mode 100644
index 16c87494b4d..00000000000
--- a/src/content/translations/tr/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: Ethereum hakkında bilgi edinin
-description: Teknik ve teknik olmayan makaleler, kılavuzlar ve Ethereum hakkında bilgi edinilebilecek kaynaklar.
-lang: tr
-sidebar: true
----
-
-# Ethereum hakkında bilgi edinin {#learn-about-ethereum}
-
-**Ethereum hakkında daha fazla bilgi edinmenize yardımcı olacak bir kaynak dizisi olan ethereum.org/learn'e hoş geldiniz.** Bu sayfa teknik **ve** teknik olmayan makaleler, kılavuzlar ve kaynaklar içeriyor. Ethereum'da tamamen yeniyseniz,[buradan başlamanızı öneririz](/tr/what-is-ethereum/)
-
-İşte bazı mükemmel başlangıç noktaları:
-
-- [Her şeydeen Bağımsız](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be)_Eylül 18, 2017 - Vitalik Buterin (Video)_
-- [Merkeziyetsizlik Neden Önemli](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 Şubat 2018 - Chris Dixon_
-- [Yıllar içinde Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Ocak 16, 2019 - Josh Stark, Evan Van Ness, ve Daniel Zakrisson_
-- [Ethereum tam anlamıyla oyun değiştiren bir teknolojidir](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mart 29, 2019 - Virgil Griffith_
-
-Bu sayfadaki bilgilere ek olarak, araştırılmaya değer birçok topluluk tarafından oluşturulmuş kaynak var:
-
-- [EthHub](https://docs.ethhub.io) _Her şey için kapsamlı bilgi tabanı Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Yeni başlayanlar için hedeflenen Ethereum hakkında bir eğitim kaynağı_
-- [Ethereum.wiki](https://eth.wiki) _Ethereum’un teknolojisi hakkında topluluk tarafından oluşturulmuş bir wiki_
-- [Kauri](https://kauri.io)_Ethereum ve ilgili projeler için teknik makaleler ve öğretici bilgiler_
-- [Ethereum Foundation YouTube kanalı ](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videolar ve Ethereum hakkında konuşuyor_
-- [Haftalık Ethereum hakkında yeni haberler](https://weekinethereumnews.com/) _ Ekosistemdeki önemli gelişmeleri içeren haftalık bir bülten_
-- [ETH 2.0'daki yenilikler](https://eth2.news) _ETH 2.0 gelişimi hakkında bir bülten_
-- [ethresear.ch forum](https://ethresear.ch/) _ETH 2.0 ve sonrası için Ethereum hakkında daha derin teknik tartışmalar_
-- [ETHGlobal](https://ethglobal.co) _Bir Ethereum hackathon serisi - yakınınızdaki birine katılın!_
-
-## Ethereum temelleri {#ethereum-basics}
-
-Ethereum'da yeni misiniz? Bu makaleler ve kaynaklar başlamak için iyi bir yer.
-
-- [Yeni Başlayanlar İçin Ethereum Rehberi](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Şubat 23, 2017 - Linda Xie_
-- [Video: ether ve Ethereum Nedir?](https://www.youtube.com/watch?v=fjnovGRQrRE) _Nisan 25, 2019 - CME Group_
-- [Ethereum Nedir?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [Ether nedir?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Sık sık güncellenen - EthHub_
-- [Başlangıç Ethereum'a Giriş](https://www.mewtopia.com/absolute-beginners-guide/) _Temmuz 23, 2019_
-- [Ethereum Güvenligi](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Ocak 30, 2018 - Elad Gil_
-- [Blok Zincirler:Nasıl Çalışıyorlar ve Neden Dünyayı Değiştirecekler?](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world)_Eylül 28, 2017 - Morgan Peck_
-
-## Ethereum nasıl çalışır? {#how-ethereum-works}
-
-Genel olarak Ethereum ve blockchain teknolojisinin üst düzey açıklamaları.
-
-- [Ethereum nasıl çalışır?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Eylül 27, 2017 - Preethi Kasireddy_
-- [Ethereum'a Nazik Bir Giriş](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Ekim 2, 2016 - Antony Lewis_
-- [Cryptoeconomics ile Blockchain'e giriş - Bölüm 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _ Ocak 26, 2018 - Zubin Koticha_
-- [Cryptoeconomics ile Blockchain'e Giriş -Bölüm 2 ](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _Mart 19, 2018 - Zubin Koticha_
-
-## Akıllı Sözleşmeler {#smart-contracts}
-
-Bir "Akıllı sözleşme" basitçe Ethereum üzerinde çalışan bir kod parçacığıdır. Ona "sözleşme" denmesinin sebebi ETH veya diğer dijital mülkler gibi şeyleri kontrol edebilmesidir.
-
-- Akıllı sözleşmelerle Ethereum programlarının nasıl yapıldığını öğrenmek ister misiniz? [ethereum.org/developers](/tr/developers/)
-- [Akıllı Sözleşme Nedir?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Kasım 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [Akıllı Sözleşmeler / Merkezi Olmayan Uygulamalar Nelerdir?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _ Sık sık güncellenen - Ethhub_
-
-## İş Kanıtı ve Madencilik {#proof-of-work-and-mining}
-
-Ethereum şuanda "Çalışma Kanıtı (proof-of-work)" adında bir sistem kullanmaktadır. Bu Ethereum ağına bütün bilgilerin kaydedilmesine olanak sağlamaktadır, ve bu sayede türlü ekonomik saldırıların önüne geçmektedir.
-
-- [Ethereum madeni ne demek?](https://docs.ethhub.io/using-ethereum/mining/) _ Sık sık güncellenen - Ethhub_
-
-ETH 2.0'da, Ethereum “Bahis Kanıt” adı verilen farklı bir sisteme geçecek. [Aşağıda ETH 2.0 hakkında devamını oku](#eth-2-0)
-
-## Clients ve Nodes {#clients-and-nodes}
-
-Ethereum her biri uyumlu client kullanan pek çok birimden oluşmaktadır. İşte birimlerin çoğunun kullandığı iki client: [Geth](https://geth.ethereum.org/) (Go ile yazıldı) ve [Parity](https://www.parity.io/ethereum/) (Rust ile yazıldı).
-
-- Kendi birimini nasıl çalıştıracağını öğrenmek ister misin? [ethereum.org/developers](/tr/developers/#clients-running-your-own-node/)
-- [Tüm Ethereum müşterilerinin kapsamlı listesi ](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Kurumsal Ethereum {#enterprise-ethereum}
-
-Kurumsal Ethereum, ticari uygulamalar için Ethereum kod tabanının özel, konsorsiyum ve hibrid uygulamaları anlamına gelir. Dünyanın dört bir yanındaki şirketler, finansal piyasaları düzene sokmak, tedarik zincirlerini yönetmek ve yeni iş modelleri oluşturmak için zaten Enterprise Ethereum'u kullanıyor.
-
-Hakkında[Enterprise Ethereum](/tr/enterprise/)
-
-## Ethereum’un Ölçeklenebilirliğini İyileştirme {#improving-ethereums-scalability}
-
-Hızını ve genel işlem hacmini artırarak Ethereum'u daha “ölçeklenebilir” hale getirmek için birçok çaba gösterilmektedir. Genellikle bunlar “Katman 1” ve “Katman 2” çözümlerine ayrılır.
-
-“Katman 1”, çekirdek Ethereum protokolünün geliştirilmesine atıfta bulunur Ethereum’un çekirdek protokolünü geliştiren ilk proje[ETH 2.0](#eth-2-0).
-
-“Katman 2”, temel Ethereum protokolünün “üstüne” inşa edilen ve güvenlikten ödün vermeden daha fazla ölçeklenebilirlik sağlayan teknolojileri ifade eder. Yan zincirler gibi “zincir dışı” teknolojiler de vardır ve bunlar farklı bir güvenlik yörüngeleri yaparak daha fazla ölçeklenebilirlik sağlar.
-
-- [Katman 2'yi Anlamak](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Şubat 12, 2018 - Josh Stark_
-- [Ethereum Ölçeklenebilirliği Örneği](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Ocak 18, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [Ethereum Dapp'inizi Ölçeklendirmenin 5 Yolu](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Nisan 23, 2019 - Andreas Wallendahl_
-
-### Ödeme&Devlet Kanalları {#payment--state-channels}
-
-- [Devlet Kanalları - bir açıklama](https://www.jeffcoleman.ca/state-channels/) _Kasım 6, 2015 - Jeff Coleman_
-- [Devlet Kanallarının Temelleri](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/)_District0x_
-- [Devlet Kanalları](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Sık sık güncellenen - EthHub_
-
-### Yan zincirler {#sidechains}
-
-- [Ethereum Dapps'ın Sidechains Üzerinden Ölçeklendirilmesi](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Şubat 8, 2018 - Georgios Konstantopoulos_
-
-### Plazma {#plasma}
-
-- [Plazmayı Anlamak, Bölüm 1: Temel Bilgiler](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Şubat 7, 2019 - Daniel Goldman_
-- [Plazmayı Anlamak](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Plazmayı Öğrenin - Plazma çerçevesi için bir öğrenme kaynağı](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (“Huzur” olarak da bilinir), çekirdek Ethereum protokolünün bir sonraki ana yükseltmesine atıfta bulunur. Ethereum’un çekirdek protokolüne veya “Katman 1” e birkaç geliştirme getirdi.
-
-- [ETH 2.0 Yol Haritası ve Aşamalar](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Sık sık güncellenen - EthHub_
-- [8 Ekip, Yeni Nesil Ethereum'u Kurmak İçin Sprint Yapıyor](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0)_ Aralık 9, 2018 - Christine Kim_
-- [Bahis Kanıtı](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Sık sık güncellenen - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Sık sık güncellenen - EthHub_
-- [ETH 2.0 - Ethereum'u Ölçeklendirmeye Giden Yol - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) Kasım 2018 - YouTube_
-- [ETH 2.0 Tartışmalar AMA Bölüm 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Ocak 24 2019 - EthHub_
-- [ETH 2.0 tartışmalar AMA Bölüm 2 ](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Temmuz 15, 2019 - EthHub_
-- [Ethereum 2.0 Hakkında Bilmediğiniz Şeyler](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _Temmuz 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x, mevcut Ethereum protokolünde yapılan yükseltme koleksiyonunun adıdır. Amaç, ETH 2.0 geliştirilip uygulanırken Ethereum'u geliştirmeye ve sürdürmeye devam etmektir.
-
-Daha fazla bilgi için bakınız[EthHub’ın ETH 1.x hakkında açıklama sayfası](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Kriptoekonomi {#cryptoeconomics}
-
-“Cryptoeconomics” bu sistemlerin özelliklerinin finansal teşvikler ile güvence altına alındığı ve ekonomik mekanizmaların kriptografi ile güvence altına alındığı dağıtılmış sistemler inşa etmenin pratik bilimidir. Bitcoin ve Ethereum gibi blokzincirlerin dizaynını ve ölçeklendirilmesini kapsayan genel bir terimdir.
-
-- [Cryptoeconomics öğrenim](https://cryptoeconomics.study/)
-- [Cryptoeconomics e Giriş](https://www.youtube.com/watch?v=F0FCI8GxO5I)_(Video) Ağustos 19, 2018 - Karl Floersch_
-- [Cryptoeconomics'i anlamak](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Kasım 16 2017 - Josh Stark_
-
-## Eleştiri ve şüphecilik {#critique-and-skepticism}
-
-Ethereum ve Cryptocurrencies'in eleştirel görüşleri.
-
-- [Ethereum’un yol haritası yeterince hırslı değil](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _Mart 27, 2019 - Interview with Rick Dudley_
-- [Ethereum Altyapı Oluşturmanın Zorlukları](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Ocak 8, 2018 - Jameson Lopp_
-- [Zor Sorulara Parsimonious Cevaplar](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) Mart 10, 2019 - Rick Dudley_
-- [Blockchain teknolojisine güvenmek için iyi bir neden yok](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Şubat 6, 2019 - Bruce Schneier_
diff --git a/src/content/translations/uk/learn/index.md b/src/content/translations/uk/learn/index.md
deleted file mode 100644
index 91747807bb1..00000000000
--- a/src/content/translations/uk/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Дізнайтеся про Ethereum
-description: Набір технічних статей і статей загального характеру, посібників та ресурсів для ознайомлення з Ethereum.
-lang: uk
-sidebar: true
-sidebarDepth: 1
----
-
-# Дізнайтеся про Ethereum {#learn-about-ethereum}
-
-**Запрошуємо до ethereum.org/learn, набору ресурсів, які допоможуть вам дізнатися більше про Ethereum.** На цій сторінці можна знайти як технічні статті, **так і** статті загального характеру, посібники та ресурси. Якщо ви абсолютний новачок в Ethereum, [радимо вам почати тут](/uk/what-is-ethereum/).
-
-Ось декілька відмінних статей для початку:
-
-- [Децентралізація всього](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _18 вересня 2017 р. — Vitalik Buterin (відео)_
-- [Чому децентралізація має значення](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _18 лютого 2018 р. — Chris Dixon_
-- [Рік в Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _16 січня 2019 р. — Josh Stark, Evan Van Ness і Daniel Zakrisson_
-- [Ethereum — це справді революційна технологія](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _29 березня 2019 р. — Virgil Griffith_
-
-Окрім інформації на цій сторінці існує багато ресурсів, створених спільнотою, з якими варто ознайомитися:
-
-- [EthHub](https://docs.ethhub.io) _База знань з усіх питань, що стосуються Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Навчальний ресурс з Ethereum, орієнтований на початківців_
-- [Ethereum.wiki](https://eth.wiki) _Створена спільнотою вікі-сторінка про технології Ethereum_
-- [Kauri](https://kauri.io) _Технічні статті та навчальні посібники з Ethereum і пов'язані проекти_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Відеоматеріали та дискусії про Ethereum_
-- [Щотижневі новини Ethereum](https://weekinethereumnews.com/) _Щотижневий інформаційний бюлетень, що висвітлює ключові події в екосистемі_
-- [Що нового у ETH 2.0](https://eth2.news) _Регулярний інформаційний бюлетень про розробку ETH 2.0_
-- [ethresear.ch forum](https://ethresear.ch/) _Глибокі технічні дискусії з Ethereum для ETH 2.0 і не тільки_
-- [ETHGlobal](https://ethglobal.co) _Серія мозкових штурмів з Ethereum — завітайте на один із них поруч з вами!_
-
-## Основи Ethereum {#ethereum-basics}
-
-Ви донедавна не були знайомі з Ethereum? Ці статті та ресурси — відмінна відправна точка.
-
-- [Посібник для початківців з Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _23 лютого 2017 р. — Linda Xie_
-- [Відео: Що таке ether та Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _25 квітня 2019 р. — CME Group_
-- [Що таке Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [Що таке ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Часто оновлюється — EthHub_
-- [Введення в Ethereum для початківців](https://www.mewtopia.com/absolute-beginners-guide/) _23 липня 2019 р._
-- [Аргументи на користь Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _30 січня 2018 р. — Elad Gil_
-- [Блокчейни: як вони працюють і чому змінять світ](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _28 вересня 2017 р. — Morgan Peck_
-
-## Як працює Ethereum {#how-ethereum-works}
-
-Загальні пояснення технології блокчейну в цілому і Ethereum зокрема.
-
-- [Як взагалі працює Ethereum?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _27 вересня 2017 р. — Preethi Kasireddy_
-- [Ненав'язливе введення в Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _2 жовтня 2016 р. — Antony Lewis_
-- [Введення в блокчейн через криптоекономіку — Частина 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _26 червня 2018 р. — Zubin Koticha_
-- [](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012)Введення в блокчейн через криптоекономіку — Частина 2 _19 липня 2018 р. — Zubin Koticha_
-
-## Смарт-контракти {#smart-contracts}
-
-"Смарт-контракт" — це просто фрагмент коду, який працює на Ethereum. Його називають "контрактом", оскільки код, який виконується на Ethereum, може контролювати цінні речі, як-от ETH або інші цифрові активи.
-
-- Хочете навчитися програмувати на Ethereum з використанням смарт-контрактів? [ethereum.org/developers](/uk/developers/)
-- [Що таке смарт-контракт?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _12 листопада 2018 р. — Andreas M. Antonopoulos, Gavin Wood_
-- [Що таке смарт-контракти/децентралізовані програми?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Часто оновлюється — Ethhub_
-
-## Підтвердження роботи та майнинг {#proof-of-work-and-mining}
-
-На цей час Ethereum використовує систему під назвою «Підтвердження роботи». Вона дозволяє мережі Ethereum узгоджувати стан усієї інформації, зареєстрованої в блокчейні Ethereum, і запобігає певним видам економічних атак.
-
-- [Що означає "майнити Ethereum"?](https://docs.ethhub.io/using-ethereum/mining/) _Часто оновлюється — Ethhub_
-
-В ETH 2.0 Ethereum перейде на іншу систему, яка називається «Підтвердження ставки». [Детальніше про ETH 2.0 читайте нижче](#eth-2-0).
-
-## Клієнти та вузли {#clients-and-nodes}
-
-Мережа Ethereum складається з безлічі вузлів, кожний з яких працює на сумісному клієнтському програмному забезпеченні. Існують два клієнти, які використовує більшість вузлів: [Geth](https://geth.ethereum.org/) (написаний на Go) та [Parity](https://www.parity.io/ethereum/) (написаний на Rust).
-
-- Хочете навчитися запускати власний вузол? → [ethereum.org/developers](/uk/developers/#clients-running-your-own-node/)
-- [Повний список всіх клієнтів Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Ethereum для корпоративного сектора {#enterprise-ethereum}
-
-Ethereum для корпоративного сектора стосується приватних, консорціумних та гібридних реалізацій кодової бази Ethereum для застосування в бізнесі. Компанії по всьому світу вже використовують Ethereum для корпоративного сектора для оптимізації фінансових ринків, керування ланцюгами поставок та створення нових бізнес-моделей.
-
-Детальніше про [Ethereum для корпоративного сектора](/uk/enterprise/).
-
-## Покращення можливостей масштабування Ethereum {#improving-ethereums-scalability}
-
-Прикладається чимало зусиль для того, щоб зробити Ethereum більш "масштабованим", покращуючи його швидкість та загальну пропускну здатність транзакцій. Як правило, їх можна поділити на рішення "Рівень 1" та "Рівень 2".
-
-"Рівень 1" означає вдосконалення базового протоколу Ethereum. Основний проект вдосконалення базового протоколу Ethereum є [ETH 2.0](#eth-2-0).
-
-"Рівень 2" стосується технологій, створених "поверх" базового протоколу Ethereum, що дозволяє підвищити масштабованість без шкоди для безпеки. Існують також технології "off-chain", такі як бічні блокчейни, які дозволяють збільшити масштабованість за рахунок погіршення безпеки.
-
-- [Осмислення рівня 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _12 лютого 2018 р. — Josh Stark_
-- [Аргументи на користь масштабованості в Ethereum](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _18 січня 2019 р. — Hunter Hillman, Steven McKie та Olszewski_
-- [5 способів масштабувати вашу децентралізовану програму для Ethereum](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _23 квітня 2019 р. — Andreas Wallendahl_
-
-### Платежі та канали стану {#payment--state-channels}
-
-- [Канали стану — роз'яснення](https://www.jeffcoleman.ca/state-channels/) _6 листопада 2015 р. — Jeff Coleman_
-- [Базові принципи роботи каналів стану](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [Канали стану](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Часто оновлюється — EthHub_
-
-### Бічні блокчейни {#sidechains}
-
-- [Масштабування децентралізованих програм Ethereum з допомогою бічних блокчейнів](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _8 лютого 2018 р. — Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Розуміння платформи Plasma, частина 1: основи](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _7 лютого 2019 р. — Daniel Goldman_
-- [Розуміння платформи Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Learn Plasma — навчальний ресурс з платформи Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (також відомий як "Serenity") стосується чергового оновлення базового протоколу Ethereum. Він поєднує декілька вдосконалень основного протоколу Ethereum або "Рівень 1".
-
-- [Дорожня карта та етапи ETH 2.0](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Часто оновлюється — EthHub_
-- [8 команд поспішають, щоб збудувати наступне покоління Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _9 грудня 2018 р. — Christine Kim_
-- [Підтвердження ставки](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Часто оновлюється — EthHub_
-- [Сегментування](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Часто оновлюється — EthHub_
-- [ETH 2.0 — Шлях до масштабування Ethereum — Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(відео) листопад 2018 р. — YouTube_
-- [Дослідники ETH 2.0 AMA. Частина 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _24 січня 2019 р. — EthHub_
-- [Дослідники ETH 2.0 AMA. Частина 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _15 липня 2019 р. — EthHub_
-- [9 речей, які ви не знали про Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _18 липня 2019 р. — Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x — це назва колекції оновлень існуючого протоколу Ethereum. Мета полягає в тому, щоб продовжувати вдосконалювати та підтримувати Ethereum, поки розробляється та впроваджується ETH 2.0.
-
-Для отримання додаткової інформації див. [ сторінку EthHub з поясненням ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Криптоекономіка {#cryptoeconomics}
-
-Криптоекономіка — це практична наука про побудову розподілених систем, де їхні властивості забезпечуються фінансовими стимулами, а економічні механізми захищені криптографією. Це загальний термін для проектування та масштабування блокчейнів, таких як Ethereum та Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Вступ до криптоекономіки](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(відео) 19 серпня 2018 р. — Karl Floersch_
-- [Осмислення криптоекономіки](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _16 листопада 2017 р. — Josh Stark_
-
-## Критика та скептицизм {#critique-and-skepticism}
-
-Критичні погляди на Ethereum і криптовалюти.
-
-- Дорожній карті Ethereum бракує амбіційності _27 березня 2019 р. — інтерв'ю з Rick Dudley_
- - [Проблеми створення інфраструктури Ethereum](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _8 січня 2018 р. — Jameson Lopp_
- - [Короткі відповіді на важкі запитання](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(відео) 10 березня 2019 р. — Rick Dudley_
- - [Немає вагомих причин довіряти технології блокчейну](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _6 лютого 2019 р. — Bruce Schneier_
diff --git a/src/content/translations/vi/learn/index.md b/src/content/translations/vi/learn/index.md
deleted file mode 100644
index 5cb29f69294..00000000000
--- a/src/content/translations/vi/learn/index.md
+++ /dev/null
@@ -1,144 +0,0 @@
----
-title: Tìm hiểu thêm về Ethereum
-description: Tập hợp các bài viết, hướng dẫn và tài nguyên kỹ thuật và phi kỹ thuật để tìm hiểu về Ethereum.
-lang: vi
-sidebar: true
-sidebarDepth: 1
----
-
-# Tìm hiểu thêm về Ethereum {#learn-about-ethereum}
-
-**Chào mừng bạn đến với ethereum.org/learn, bộ tài nguyên giúp bạn tìm hiểu thêm về Ethereum.**Trang này bao gồm các bài viết hướng dẫn và tài nguyên kỹ thuật **và** phi kỹ thuật. Nếu bạn hoàn toàn mới với Ethereum, [chúng tôi khuyên bạn nên bắt đầu ở đây](/vi/what-is-ethereum/).
-
-Dưới đây là một số điểm khởi đầu tuyệt vời:
-
-- [Phân cấp mọi thứ](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Ngày 18 tháng 9 năm 2017 - Vitalik Buterin (Video)_
-- [Lí giải về vấn đề phân cấp](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Ngày 18 tháng 2 năm 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Ngày 16 tháng 1 năm 2019 - Josh Stark, Evan Van Ness và Daniel Zakrisson_
-- [Ethereum là công nghệ làm thay đổi cuộc chơi, theo nghĩa đen](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Ngày 29 tháng 3 năm 2019 - Virgil Griffith_
-
-Ngoài thông tin trên trang này, còn có nhiều tài nguyên do cộng đồng xây dựng đáng để khám phá:
-
-- [EthHub](https://docs.ethhub.io) _Cơ sở kiến thức toàn diện cho tất cả mọi thứ Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _Tài nguyên giáo dục về Ethereum nhằm vào người mới bắt đầu_
-- [Ethereum.wiki](https://eth.wiki) _Một wiki xây dựng cộng đồng về công nghệ Ethereum_
-- [Kauri](https://kauri.io) _Các bài viết và hướng dẫn kỹ thuật cho Ethereum và các dự án liên quan_
-- [Video trên YouTube về Nền tảng Ethereum](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _và thảo luận về Ethereum_
-- [Tin tức về Ethereum trong tuần](https://weekinethereumnews.com/) _Một bản tin hằng tuần bao gồm các phát triển quan trọng trong hệ sinh thái_
-- [Những tính năng mới trong ETH 2.0](https://eth2.news) _Bản tin định kỳ xuyên về sự phát triển ETH 2.0_
-- [Diễn đàn ethresear.ch](https://ethresear.ch/) _Thảo luận kỹ thuật sâu hơn về Ethereum cho ETH 2.0 và hơn thế nữa_
-- [ETHGlobal](https://ethglobal.co) _Một loạt hackathon Ethereum - tham dự một nơi gần bạn!_
-
-## Căn bản về Ethereum {#ethereum-basics}
-
-Tìm hiểu về Ethereum? Những bài viết và tài nguyên này là một nơi tốt để bắt đầu.
-
-- [Hướng dẫn dành cho người mới bắt đầu với Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Ngày 23 tháng 2 năm 2017 - Linda Xie_
-- [Video: ether và Ethereum là gì?](https://www.youtube.com/watch?v=fjnovGRQrRE) _Ngày 25 tháng 4 năm 2019 - Tập đoàn CME_
-- [Ethereum là gì?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [Ether là gì?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Cập nhật thường xuyên - EthHub_
-- [Giới thiệu tuyệt đối về Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _Ngày 23 tháng 7 năm 2019_
-- [Trường hợp cho Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Ngày 30 tháng 1 năm 2018 - Elad Gil_
-- [Chuỗi khối: Cách chúng hoạt động và vì sao chúng sẽ làm thay đổi thế giới](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _Ngày 28 tháng 9 năm 2017 - Morgan Peck_
-
-## Cách Ethereum hoạt động {#how-ethereum-works}
-
-Các giải thích cấp cao về Ethereum và công nghệ chuỗi khối nói chung.
-
-- [Ethereum hoạt động như thế nào?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Ngày 27 tháng 9 năm 2017 - Preethi Kasireddy_
-- [Giới thiệu qua về Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Ngày 2 tháng 10 năm 2016 - Antony Lewis_
-- [Giới thiệu về chuỗi khối thông qua Nền kinh tế mã hóa - Phần 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Ngày 26 tháng 1 năm 2018 - Zubin Koticha_
-- [Giới thiệu về chuỗi khối thông qua Nền kinh tế mã hóa - Phần 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _Ngày 19 tháng 7 năm 2018 - Zubin Koticha_
-
-## Hợp đồng thông minh {#smart-contracts}
-
-Một "hợp đồng thông minh" đơn giản là một phần của đoạn mã đang chạy trên Ethereum. Đây được gọi là "hợp đồng" vì mã chạy trên Ethereum có thể kiểm soát những thứ có giá trị như ETH hoặc các tài sản kỹ thuật số khác.
-
-- Bạn muốn tìm hiểu cách lập trình trên Ethereum với các hợp đồng thông minh? [ethereum.org/developers](/vi/developers/)
-- [Hợp đồng thông minh là gì?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Ngày 12 tháng 11 năm 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [Hợp đồng thông minh / Ứng dụng phi tập trung là gì?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Cập nhật thường xuyên - Ethhub_
-
-## Bằng chứng công việc và khai thác {#proof-of-work-and-mining}
-
-Ethereum hiện đang sử dụng một hệ thống có tên là "Bằng chứng công việc". Điều này cho phép mạng Ethereum đồng ý về trạng thái của tất cả các thông tin được ghi lại trên chuỗi khối Ethereum và ngăn chặn một số loại tấn công kinh tế nhất định.
-
-- [Khai thác Ethereum có nghĩa là gì?](https://docs.ethhub.io/using-ethereum/mining/) _Cập nhật thường xuyên - Ethhub_
-
-Trong ETH 2.0, Ethereum sẽ được chuyển sang một hệ thống khác có tên là "Bằng chứng cổ phần". [Đọc thêm về ETH 2.0 bên dưới](#eth-2-0).
-
-## Ứng dụng và nút {#clients-and-nodes}
-
-Mạng Ethereum được tạo thành từ nhiều nút chạy phần mềm ứng dụng tương thích. Có hai ứng dụng được sử dụng bởi đa số các nút: [Geth](https://geth.ethereum.org/) (viết bằng Go) và [Parity](https://www.parity.io/ethereum/) (viết bằng Rust).
-
-- Bạn muốn tìm hiểu cách chạy một nút của riêng bạn? → [ethereum.org/developers](/vi/developers/#clients-running-your-own-node/)
-- [Danh sách toàn diện gồm tất cả các ứng dụng Ethereum](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## Enterprise Ethereum {#enterprise-ethereum}
-
-Enterprise Ethereum đề cập đến các cách triển khai riêng tư, liên kết và kết hợp của cơ sở mã Ethereum cho các ứng dụng kinh doanh. Các công ty trên toàn cầu đã sử dụng Enterprise Ethereum để hợp lý hóa thị trường tài chính, quản lý chuỗi cung ứng và tạo ra các mô hình kinh doanh mới.
-
-Đọc thêm về [Enterprise Ethereum](/vi/enterprise/).
-
-## Cải thiện khả năng mở rộng Ethereum {#improving-ethereums-scalability}
-
-Có rất nhiều nỗ lực đang được thực hiện để làm cho Ethereum có khả năng mở rộng hơn nữa bằng cách cải thiện tốc độ và thông lượng giao dịch tổng thể của nó. Nói chung, những thứ này được sắp xếp vào các giải pháp của "Lớp 1" và "Lớp 2".
-
-"Lớp 1" có nghĩa là cải thiện giao thức Ethereum cốt lõi. Dự án chính để cải thiện giao thức lõi Ethereum là [ETH 2.0](#eth-2-0).
-
-"Lớp 2" chỉ đề cập đến các công nghệ được xây dựng trên nền tảng giao thức Ethereum cơ bản, cho phép khả năng mở rộng lớn hơn mà không ảnh hưởng đến bảo mật. Ngoài ra còn có các công nghệ khác ngoài các chuỗi khác như các chuỗi bên, cho phép khả năng mở rộng lớn hơn bằng cách thực hiện một bộ trao đổi bảo mật khác.
-
-- [Ý nghĩa của Lớp 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Ngày 12 tháng 2 năm 2018 - Josh Stark_
-- [Trường hợp cho khả năng mở rộng Ethereum](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Ngày 18 tháng 1 năm 2019 - Hunter Hillman, Steven McKie và Eric Olszewski_
-- [5 cách để mở rộng ứng dụng phi tập trung Ethereum của bạn](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Ngày 23 tháng 4 năm 2019 - Andreas Wallendahl_
-
-### Thanh toán & Kênh nhà nước {#payment--state-channels}
-
-- [Kênh nhà nước - một lời giải thích](https://www.jeffcoleman.ca/state-channels/) _Ngày 6 tháng 11 năm 2015 - Jeff Coleman_
-- [Khái niệm cơ bản về kênh nhà nước](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [Kênh nhà nước](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Cập nhật thường xuyên - Ethhub_
-
-### Chuỗi bên {#sidechains}
-
-- [Mở rộng quy mô ứng dụng phi tập trung Ethereum thông qua chuỗi bên](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Ngày 8 tháng 2 năm 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Tìm hiểu về Plasma, Phần 1: Khái niệm cơ bản](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Ngày 7 tháng 2 năm 2019 - Daniel Goldman_
-- [Hiểu về Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [Tìm hiểu về Plasma - Tài nguyên học tập cho Framework Plasma](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (còn được gọi là "Serenity") đề cập đến bản nâng cấp lớn tiếp theo của giao thức Ethereum cốt lõi. Nó kết hợp một số cải tiến đối với giao thức cốt lõi Ethereum, hoặc "Lớp 1".
-
-- [Lộ trình và giai đoạn ETH 2.0](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Cập nhật thường xuyên - EthHub_
-- [8 nhóm đang chạy đua để xây dựng thế hệ Ethereum tiếp theo](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Ngày 9 tháng 12 năm 2018 - Christine Kim_
-- [Bằng chứng cổ phần](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Cập nhật thường xuyên - Ethhub_
-- [Bảo vệ](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Cập nhật thường xuyên - Ethhub_
-- [ETH 2.0 - Con đường mở rộng Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) Tháng 11 năm 2018 - YouTube_
-- [Các nhà nghiên cứu ETH 2.0 AMA Phần 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Ngày 24 tháng 1 năm 2019 - EthHub_
-- [Các nhà nghiên cứu ETH 2.0 AMA Phần 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Ngày 15 tháng 7 năm 2019 - EthHub_
-- [9 điều bạn chưa biết về Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _Ngày 18 tháng 7 năm 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x là tên của một tập hợp các nâng cấp cho giao thức Ethereum hiện có. Mục tiêu là tiếp tục cải thiện và duy trì Ethereum trong khi ETH 2.0 được phát triển và triển khai.
-
-Để biết thêm thông tin, xem [Trang giải thích EthHub về ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## Nền kinh tế mã hóa {#cryptoeconomics}
-
-"Nền kinh tế mã hóa" là khoa học thực tế về xây dựng các hệ thống phân tán, trong đó các thuộc tính của các hệ thống đó được bảo đảm bằng các khuyến khích tài chính và là nơi các cơ chế kinh tế được đảm bảo bằng mật mã. Đây là thuật ngữ chung cho việc thực hành thiết kế và nhân rộng các chuỗi khối như Ethereum và Bitcoin.
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Giới thiệu về nền kinh tế mã hóa](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) Ngày 19 tháng 8 năm 2018 - Karl Floersch_
-- [Ý nghĩa của nền kinh tế mã hóa](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Ngày 16 tháng 11 năm 2017 - Josh Stark_
-
-## Phê bình và hoài nghi {#critique-and-skepticism}
-
-Quan điểm quan trọng về Ethereum và tiền điện tử.
-
-- [Lộ trình Ethereum không đủ tham vọng](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _Ngày 27 tháng 3 năm 2019 - Phỏng vấn Rick Dudley_
-- [Những thách thức của việc xây dựng cơ sở hạ tầng Ethereum](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Ngày 8 tháng 1 năm 2018 - Jameson Lopp_
-- [Câu trả lời khó hiểu cho những câu hỏi khó](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) Ngày 10 tháng 3 năm 2019 - Rick Dudley_
-- [Không có lý do chính đáng nào để tin tưởng vào công nghệ chuỗi khối](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Ngày 6 tháng 2 năm 2019 - Bruce Schneier_
diff --git a/src/content/translations/zh-tw/learn/index.md b/src/content/translations/zh-tw/learn/index.md
deleted file mode 100644
index e69fb70e13e..00000000000
--- a/src/content/translations/zh-tw/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: 學習 Ethereum
-description: 用於了解以太坊的一整套技術性和非技術性文章、指南和資源。
-lang: zh-tw
-sidebar: true
----
-
-# 學習 Ethereum {#learn-about-ethereum}
-
-**歡迎來到[ ethereum.org/learn](/zh-tw/learn/),這裡提供一系列可以幫助你學習更多關於 Ethereum 的資源。**本頁內容包含技術**和**非技術的文章、指南、和資源。 如果你是第一次接觸 Ethereum,[建議你從這裡開始](/zh-tw/what-is-ethereum/)。
-
-你可以先從些地方著手:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Sep 18, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Feb 18, 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Jan 16, 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mar 29, 2019 - Virgil Griffith_
-
-除了上述資訊,還有許多其他的社群資源值得一探究竟:
-
-- [EthHub](https://docs.ethhub.io) _Comprehensive knowledge base for all things Ethereum_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _An educational resource about Ethereum targeted at beginners_
-- [Ethereum.wiki](https://eth.wiki) _A community-built wiki about Ethereum’s technology_
-- [Kauri](https://kauri.io) _Technical articles and tutorials for Ethereum and related projects_
-- [Ethereum Foundation YouTube](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _Videos and talks about Ethereum_
-- [Week in Ethereum News](https://weekinethereumnews.com/) _A weekly newsletter covering key developments across the ecosystem_
-- [What’s new in ETH 2.0](https://eth2.news) _A regular newsletter about ETH 2.0 development_
-- [ethresear.ch forum](https://ethresear.ch/) _Deeper technical discussions on Ethereum for ETH 2.0 and beyond_
-- [ETHGlobal](https://ethglobal.co) _An Ethereum hackathon series - attend one near you!_
-
-## Ethereum 基礎概念 {#ethereum-basics}
-
-第一次認識 Ethereum 嗎? 以下是精選文章以及資源。
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Feb 23, 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _April 25, 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Updated often - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _July 23, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Jan 30, 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _Sept 28, 2017 - Morgan Peck_
-
-## Ethereum 如何運作 {#how-ethereum-works}
-
-進一步詳述 Ethereum 以及區塊鏈技術。
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oct 2, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _July 19, 2018 - Zubin Koticha_
-
-## 智慧型合約 {#smart-contracts}
-
-智慧型合約簡單來說就是在 Ethereum 上執行的一組程式碼。 會被稱作「合約」是因為這個在 Ethereum 上執行的程式,可以控制像是 ETH 或其他數位資產的有價之物。
-
-- 想學習如何設計 Ethereum 上的智慧型合約嗎? [ethereum.org/developers](/zh-tw/developers/)
-- [What is a Smart Contract?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [What are Smart Contracts/Decentralized Applications?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Updated often - Ethhub_
-
-## 工作量證明與挖礦 {#proof-of-work-and-mining}
-
-Ethereum 目前使用的是「工作量證明」系統。 在工作量證明的架構下,Ethereum 網路可以決定所有紀錄在 Ethereum 區塊鏈上的資料狀態,同時也可避免特定型態的經濟攻擊。
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Updated often - Ethhub_
-
-在 ETH2.0 中,Ethereum 會轉向另一個名為「權益證明」的系統。 [參閱下列資源以深入了解 ETH 2.0](#eth-2-0)。
-
-## 用戶端和節點 {#clients-and-nodes}
-
-Ethereum 是由許多節點組成,每個節點上都執行相容的用戶端軟體。 大多數節點都會使用以下兩種用戶端:[Geth](https://geth.ethereum.org/) (使用 Go 語言) 和 [Parity](https://www.parity.io/ethereum/) (使用 Rust 語言)。
-
-- 想要學習如何執行自己的節點嗎? → [ethereum.org/developers](/zh-tw/developers/#clients-running-your-own-node/)
-- [所有 Ethereum 用戶端列表](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## 企業版 Ethereum {#enterprise-ethereum}
-
-企業級以太坊是指利用太坊代碼庫進行商業應用的私有、聯盟或混合部署方式。 全球各地的公司已經在利用企業以太坊簡化金融市場、管理供應鍊和建立新的商業模式。
-
-了解更多關於[企業級以太坊](/zh-tw/enterprise/)的信息。
-
-## 增加 Ethereum 的可擴展性 {#improving-ethereums-scalability}
-
-為了擴展 Ethereum 的交易速度以及流量,各方人士一直在持續的努力中。 這些方法通常會分成「第一層」(Layer 1) 和「第二層」(Layer 2) 解決方案。
-
-「第一層」(Layer 1) 與改善核心協定相關。 主要的 Ethereum 核心協定改善計畫為 [ETH 2.0](#eth-2-0)。
-
-「第二層」(Layer 2) 是指建立在 Ethereum 的核心架構協定基礎「之上」的技術,在無需為安全性妥協的情況下進行擴展。 另外也有稱做「鏈外」的技術,像是側鏈,可以在不同的安全性權衡之下進行擴展。
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Feb 12, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Jan 18, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [5 Ways to Scale your Ethereum Dapp](https://kauri.io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Apr 23, 2019 - Andreas Wallendahl_
-
-### 支付與狀態通道 {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Updated often - EthHub_
-
-### 側鏈 {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### Plasma {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [學習 Plasma - Plasma 架構的學習資源](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0 (也稱為 “Serenity”) 是下一代主要 Ethereum 核心升級協定。 其中包含了 Ethereum 核心協定升級,或「第一層」(Layer 1) 的幾項改善內容。
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Updated often - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Updated often - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Updated often - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x 是目前 Ethereum 所有協定的升級集合名稱。 目標是在 ETH 2.0 開發完成並實作的同時,持續改善以及維護 Ethereum 。
-
-如需更多資訊,請參閱 [EthHub’s explainer page about ETH 1.x](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)。
-
-## 加密經濟學 {#cryptoeconomics}
-
-「加密經濟學」是建立分散式系統的實用科學,經濟獎勵做為屬性的安全性保證,而其中的經濟機制則由密碼學加以保障。 這是在練習設計以及量化區塊鏈 (例如 Ethereum 和 Bitcoin) 時會用到的一般術語。
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) Aug 19, 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Nov 16 2017 - Josh Stark_
-
-## 評論與質疑 {#critique-and-skepticism}
-
-對於 Ethereum 與加密貨幣的批評。
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _March 27, 2019 - Interview with Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Jan 8, 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) March 10, 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Feb 6, 2019 - Bruce Schneier_
diff --git a/src/content/translations/zh/developers/docs/intro-to-ethereum/index.md b/src/content/translations/zh/developers/docs/intro-to-ethereum/index.md
index 2f4c01569c9..4ef8de74022 100644
--- a/src/content/translations/zh/developers/docs/intro-to-ethereum/index.md
+++ b/src/content/translations/zh/developers/docs/intro-to-ethereum/index.md
@@ -45,7 +45,7 @@ sidebar: true
实际上,参与者不会想每次在 EVM 上请求计算时都写新代码。 而是应用开发者将程序(可重复使用的代码片段)上传到 EVM 存储中,然后用户通过不同的参数对这些代码片段的执行提出请求。 我们把这些被上传至网络并由网络执行的程序称为智能合约。
-简单来说,你可以把智能合约想象成一种自动售货机:一个脚本,用某些特定参数调用时,如果满足某些特定条件,就会执行一些操作或计算。 例如,一个简单的(自动售货机)智能合约可以创建和分配数字资产的所有权,如果调用者将以太币发送给特定的接收者。
+简单来说,你可以把智能合约想象成一种自动售货机:一个脚本,用某些特定参数调用时,如果满足某些特定条件,就会执行一些操作或计算。 例如,如果调用者将以太币发送给特定的接收者,一个简单的(自动售货机)智能合约可以创建和分配数字资产的所有权。
任何开发者都可以创建智能合约并公开到以太坊网络中,使用区块链作为其数据层,并因此向网络支付费用。 然后,任何用户都可以调用智能合约来执行其代码,并再次向网络支付费用。
diff --git a/src/content/translations/zh/developers/tutorials/run-node-raspberry-pi/index.md b/src/content/translations/zh/developers/tutorials/run-node-raspberry-pi/index.md
index dc0e0724fee..ddf57bc01e1 100644
--- a/src/content/translations/zh/developers/tutorials/run-node-raspberry-pi/index.md
+++ b/src/content/translations/zh/developers/tutorials/run-node-raspberry-pi/index.md
@@ -239,12 +239,12 @@ sudo systemctl start lighthouse && sudo systemctl enable lighthouse
我们投入了大量的工作,试图将 Raspberry Pi 4 设置为一个完整的以太坊节点,因为我们知道这个设备的庞大用户群可能对网络产生非常积极的影响。
-请考虑到这是基于 Ubuntu 20.04 的第一个映像,所以可能会有一些错误。 如果是这样,请在[GitHub](https://github.com/diglos/pi-gen)上开立问题,或在[Twitter](https://twitter.com/EthereumOnARM)上联系我们。
+请考虑到这是基于 Ubuntu 20.04 的第一个映像,所以可能会有一些错误。 如果是这样,请在[GitHub](https://github.com/diglos/ethereumonarm)上开立问题,或在[Twitter](https://twitter.com/EthereumOnARM)上联系我们。
## 参考: {#references}
1. [Geth 反复出现 SIGSEGV 崩溃](https://github.com/ethereum/go-ethereum/issues/20190)
-2. [https://github.com/diglos/pi-gen](https://github.com/diglos/pi-gen)
+2. [https://github.com/diglos/ethereumonarm](https://github.com/diglos/ethereumonarm)
3. https://ubuntu.com/download/raspberry-pi
4. https://en.wikipedia.org/wiki/Port_forwarding
5. https://prometheus.io
diff --git a/src/content/translations/zh/learn/index.md b/src/content/translations/zh/learn/index.md
deleted file mode 100644
index fe10364eb8f..00000000000
--- a/src/content/translations/zh/learn/index.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: 了解以太坊
-description: 用于了解以太坊的一整套技术性和非技术性文章、指南和资源。
-lang: zh
-sidebar: true
----
-
-# 了解以太坊 {#learn-about-ethereum}
-
-**欢迎来到 [ethereum.org/learn](/zh/learn/),这里提供了一些资源来帮助您进一步了解以太坊。** 此页面包含技术性**和**非技术性文章、指南以及资源。 如果此前对以太坊完全没有认识,我们建议您[从这里开始](/zh/what-is-ethereum/)。
-
-下面是一些不错的入门贴士:
-
-- [Decentralizing Everything](https://www.youtube.com/watch?v=WSN5BaCzsbo&feature=youtu.be) _Sep 18, 2017 - Vitalik Buterin (Video)_
-- [Why Decentralization Matters](https://medium.com/s/story/why-decentralization-matters-5e3f79f7638e) _Feb 18, 2018 - Chris Dixon_
-- [The Year in Ethereum](https://medium.com/@jjmstark/the-year-in-ethereum-87a17d6f8276) _Jan 16, 2019 - Josh Stark, Evan Van Ness, and Daniel Zakrisson_
-- [Ethereum is game-changing technology, literally](https://medium.com/@virgilgr/ethereum-is-game-changing-technology-literally-d67e01a01cf8) _Mar 29, 2019 - Virgil Griffith_
-
-除了本页提供的部分信息之外,还有许多社区资源值得探索:
-
-- [EthHub](https://docs.ethhub.io) _全面的以太坊知识库_
-- [District0x](https://education.district0x.io/general-topics/understanding-ethereum/) _面向以太坊初学者的学习资源_
-- [Ethereum.wiki](https://eth.wiki) _以太坊社区成员编纂的技术百科_
-- [Kauri](https://kauri.io) _以太坊技术文章、教程、相关项目_
-- [以太坊基金会 YouTube 频道](https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g) _与以太坊相关的视频、演讲_
-- [以太坊周报](https://weekinethereumnews.com/) _包含过去一周以太坊生态中各个方面的重要进展_
-- [ETH 2.0 最新进度](https://eth2.news) _ETH 2.0 开发进度的定期通报_
-- [ethresearch 论坛](https://ethresear.ch/) _以太坊上关于 ETH2.0 和后续版本更深入的技术讨论_
-- [ETHGlobal](https://ethglobal.co) _以太坊黑客马拉松活动——赶快参与您周边的黑客松吧!_
-
-## 以太坊入门 {#ethereum-basics}
-
-以太坊新手? 这里的文章和资源可以助您有一个好的开始。
-
-- [A Beginner’s Guide to Ethereum](https://blog.coinbase.com/a-beginners-guide-to-ethereum-46dd486ceecf) _Feb 23, 2017 - Linda Xie_
-- [Video: What is ether and Ethereum?](https://www.youtube.com/watch?v=fjnovGRQrRE) _April 25, 2019 - CME Group_
-- [What is Ethereum?](https://education.district0x.io/general-topics/understanding-ethereum/what-is-ethereum/) _District0x_
-- [What is ether?](https://docs.ethhub.io/ethereum-basics/what-is-ether/) _Updated often - EthHub_
-- [Absolute Beginner Introduction to Ethereum](https://www.mewtopia.com/absolute-beginners-guide/) _July 23, 2019_
-- [The Case for Ethereum](http://blog.eladgil.com/2018/01/the-case-for-ethereum.html) _Jan 30, 2018 - Elad Gil_
-- [Blockchains: How they Work and Why they’ll Change the World](https://spectrum.ieee.org/computing/networks/blockchains-how-they-work-and-why-theyll-change-the-world) _Sept 28, 2017 - Morgan Peck_
-
-## 以太坊如何运作 {#how-ethereum-works}
-
-从宏观角度对以太坊和区块链技术作进一步介绍。
-
-- [How does Ethereum work, anyway?](https://medium.com/@preethikasireddy/how-does-ethereum-work-anyway-22d1df506369) _Sept 27, 2017 - Preethi Kasireddy_
-- [A Gentle Introduction to Ethereum](https://bitsonblocks.net/2016/10/02/gentle-introduction-ethereum/) _Oct 2, 2016 - Antony Lewis_
-- [Introduction to Blockchain through Cryptoeconomics - Part 1](https://medium.com/blockchain-at-berkeley/introduction-to-blockchain-through-cryptoeconomics-part-1-bitcoin-369f245067f9) _Jan 26, 2018 - Zubin Koticha_
-- [Introduction to Blockchain through Cryptoeconomics - Part 2](https://medium.com/mechanism-labs/introduction-to-bitcoin-through-cryptoeconomics-part-2-proof-of-work-and-nakamoto-consensus-1252f6a6c012) _July 19, 2018 - Zubin Koticha_
-
-## 智能合约 {#smart-contracts}
-
-简单来说,“智能合约”就是一段可以运行在以太坊上的代码。 之所以被称作“合约”,是因为用户可以通过这段运行在以太坊上的代码控制有价值的事物,例如 ETH 或其他数字资产。
-
-- 想要了解如何在以太坊上使用智能合约编程?可以看看这里: [ethereum.org/developers](/zh/developers/)
-- [什么是智能合约?](https://github.com/ethereumbook/ethereumbook/blob/develop/07smart-contracts-solidity.asciidoc#what-is-a-smart-contract) _Nov 12, 2018 - Andreas M. Antonopoulos, Gavin Wood_
-- [什么是智能合约/去中心化应用?](https://docs.ethhub.io/ethereum-basics/what-is-ethereum/#what-are-smart-contracts-and-decentralized-applications) _Updated often - Ethhub_
-
-## 工作量证明和挖矿 {#proof-of-work-and-mining}
-
-以太坊目前使用的系统是“工作量证明”机制。 这种机制使得以太坊网络能够就以太坊区块链上所记录的信息状态达成一致,并使其免受某些经济攻击。
-
-- [What does it mean to mine Ethereum?](https://docs.ethhub.io/using-ethereum/mining/) _Updated often - Ethhub_
-
-在 ETH 2.0 中,以太坊将转向另一种不同的系统——“权益证明” (proof-of-stake)。 [浏览更多 ETH 2.0 相关信息](#eth-2-0)。
-
-## 客户端和节点 {#clients-and-nodes}
-
-以太坊网络由许多节点组成,它们各自运行兼容的客户端软件。 大多数节点都使用这两个客户端: [Geth](https://geth.ethereum.org/) (采用 Go 语言编写)和 [Parity](https://www.parity.io/ethereum/)(采用 Rust 语言编写)。
-
-- 想学习如何运行你自己的节点? → [ethereum.org/developers](/zh/developers/#clients-running-your-own-node/)
-- [所有以太坊客户端详细列表](https://github.com/ConsenSys/ethereum-developer-tools-list#ethereum-clients)
-
-## 企业级以太坊 {#enterprise-ethereum}
-
-企业级以太坊是指利用太坊代码库进行商业应用的私有、联盟或混合部署方式。 全球各地的公司已经在利用企业以太坊简化金融市场、管理供应链和建立新的商业模式。
-
-了解更多关于[企业级以太坊](/zh/enterprise/)的信息。
-
-## 优化以太坊的可扩展性 {#improving-ethereums-scalability}
-
-为了使以太坊具有更好的可扩展性,目前已经有许多工作投入到提升以太坊的速度和总交易吞吐量方面。 通常这些工作被划分为“第一层” (Layer 1) 和“第二层” (Layer2) 解决方案。
-
-“第一层” (Layer 1) 解决方案指对核心以太坊协议进行升级。 其中致力于提升以太坊核心协议的主要项目是 [ETH 2.0](#eth-2-0)。
-
-“第二层” (Layer2) 解决方案指的是构建在基础以太坊协议“之上”的技术,能够在优化可扩展性的同时不妨害网络的安全性。 其中也包含“链下”解决方案,例如侧链技术,通过进行不同的安全性权衡以实现更好的可扩展性。
-
-- [Making Sense of Layer 2](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _Feb 12, 2018 - Josh Stark_
-- [The Case for Ethereum Scalability](https://medium.com/connext/the-case-for-ethereum-scalability-d2a8035f880f) _Jan 18, 2019 - Hunter Hillman, Steven McKie, and Eric Olszewski_
-- [扩大以太坊去中心应用规模的 5 种方式](https://kauri. io/article/7ccaaa2fe7f344d5bf53807cb5c01530) _Apr 23, 2019 - Andreas Wallendahl_
-
-### 支付与状态通道 {#payment--state-channels}
-
-- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
-- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
-- [State Channels](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/state-channels/) _Updated often - EthHub_
-
-### 侧链 {#sidechains}
-
-- [Scaling Ethereum Dapps through Sidechains](https://medium.com/loom-network/dappchains-scaling-ethereum-dapps-through-sidechains-f99e51fff447) _Feb 8, 2018 - Georgios Konstantopoulos_
-
-### 以太坊 Plasma 扩容解决方案 {#plasma}
-
-- [Understanding Plasma, Part 1: The Basics](https://www.theblockcrypto.com/2019/02/07/understanding-plasma-part-1-the-basics/) _Feb 7, 2019 - Daniel Goldman_
-- [Understanding Plasma](https://education.district0x.io/general-topics/understanding-ethereum/understanding-plasma/) _District0x_
-- [学习 Plasma 扩容解决方案 - Plasma 框架的学习资源](https://www.learnplasma.org/en/)
-
-## ETH 2.0 {#eth-2-0}
-
-ETH 2.0(也称为“Serenity”)指的是以太坊核心协议的下一次重大升级。 它结合了以太坊核心协议,也就是“第一层”(Layer 1) 的几项改进。
-
-- [ETH 2.0 Roadmap and Phases](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/eth-2.0-phases/) _Updated often - EthHub_
-- [8 Teams Are Sprinting to Build the Next Generation of Ethereum](https://www.coindesk.com/next-gen-buidlers-the-8-teams-working-on-ethereum-2-0) _Dec 9, 2018 - Christine Kim_
-- [Proof of Stake](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/proof-of-stake/) _Updated often - EthHub_
-- [Sharding](https://docs.ethhub.io/ethereum-roadmap/ethereum-2.0/sharding/) _Updated often - EthHub_
-- [ETH 2.0 - The Road to Scaling Ethereum - Vitalik Buterin](https://youtu.be/kCVpDrlVesA) _(Video) November, 2018 - YouTube_
-- [ETH 2.0 Researchers AMA Part 1](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-1) _Jan 24, 2019 - EthHub_
-- [ETH 2.0 Researchers AMA Part 2](https://docs.ethhub.io/other/ethereum-2.0-ama/#part-2) _Jul 15, 2019 - EthHub_
-- [9 Things You Didn't Know About Ethereum 2.0](https://our.status.im/9-things-you-didnt-know-about-ethereum-2-0/) _July 18, 2019 - Bruno Škvorc_
-
-## ETH 1.x {#eth-1x}
-
-ETH 1.x 是现有以太坊平台协议升级集合的名称。 目标是在开发和实施 ETH 2.0 的同时,继续改进和维护以太坊。
-
-有关详细信息,请参阅 [EthHub 关于 ETH 1 的解释页面](https://docs.ethhub.io/ethereum-roadmap/ethereum-1.x/)
-
-## 加密经济学 {#cryptoeconomics}
-
-“加密经济学”是构建分布式系统的实用科学,这些系统的属性通过财富激励来保证,而其经济机制通过密码学来保证。 它是实际设计和扩展区块链的通用术语,就像以太坊和比特币一样。
-
-- [Cryptoeconomics.study](https://cryptoeconomics.study/)
-- [Intro to Cryptoeconomics](https://www.youtube.com/watch?v=F0FCI8GxO5I) _(Video) Aug 19, 2018 - Karl Floersch_
-- [Making Sense of Cryptoeconomics](https://medium.com/l4-media/making-sense-of-cryptoeconomics-5edea77e4e8d) _Nov 16 2017 - Josh Stark_
-
-## 评论和质疑 {#critique-and-skepticism}
-
-对于以太坊和加密货币的不同看法
-
-- [Ethereum’s roadmap isn’t ambitious enough](https://decryptmedia.com/6136/vulcanize-rick-dudley-ethereum-roadmap-makerdao-polkadot) _March 27, 2019 - Interview with Rick Dudley_
-- [The Challenges of Building Ethereum Infrastructure](https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b) _Jan 8, 2018 - Jameson Lopp_
-- [Parsimonious Answers to Difficult Questions](https://www.youtube.com/watch?v=GOkSg0BuSdw&feature=youtu.be) _(Video) March 10, 2019 - Rick Dudley_
-- [There’s no good reason to trust blockchain technology](https://www.wired.com/story/theres-no-good-reason-to-trust-blockchain-technology/) _Feb 6, 2019 - Bruce Schneier_
diff --git a/src/data/community-meetups.json b/src/data/community-meetups.json
index 9c8b41d736a..d2c25cfefc0 100644
--- a/src/data/community-meetups.json
+++ b/src/data/community-meetups.json
@@ -41,6 +41,12 @@
"location": "São Paulo",
"link": "https://www.meetup.com/Ethereum-Developers-Sao-Paulo/"
},
+ {
+ "title": "Calgary NFT (Non-fungible Tokens) Meetup Group",
+ "emoji": ":canada:",
+ "location": "Calgary",
+ "link": "https://www.meetup.com/calgary-nft-non-fungible-tokens-meetup-group/"
+ },
{
"title": "Ethereum Developers",
"emoji": ":canada:",
diff --git a/src/data/translation-reports/alltime-data.json b/src/data/translation-reports/alltime-data.json
index ddcf0a79e3d..604a95484e4 100644
--- a/src/data/translation-reports/alltime-data.json
+++ b/src/data/translation-reports/alltime-data.json
@@ -1,81516 +1,144720 @@
{
- "name": "Ethereum.org Translations Top Members Report",
+ "name": "Ethereum.org Translations Translation Costs Report",
"url": "https://translate.ethereum.org/project/ethereum-org",
"unit": "words",
"dateRange": {
"from": "2019-06-27",
"to": "2021-11-30"
},
- "language": "All",
+ "currency": "USD",
+ "mode": "simple",
+ "roleBasedCosts": true,
+ "totalCosts": 3360471,
+ "totalTMSavings": 0,
+ "totalPreTranslated": 315848,
"data": [
{
"user": {
- "id": "13897487",
- "username": "ethdotorg",
- "fullName": "Ethereum.org Team (ethdotorg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13897487/medium/246e50d7e9ccde07088ed892b07a0efd.png",
- "joined": "2019-06-27 06:42:56"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- },
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "bg",
- "name": "Bulgarian"
- },
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "da",
- "name": "Danish"
- },
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "eu",
- "name": "Basque"
- },
- {
- "id": "fi",
- "name": "Finnish"
- },
- {
- "id": "gu-IN",
- "name": "Gujarati"
- },
- {
- "id": "he",
- "name": "Hebrew"
- },
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "ko",
- "name": "Korean"
- },
- {
- "id": "ku",
- "name": "Kurdish"
- },
- {
- "id": "lt",
- "name": "Lithuanian"
- },
- {
- "id": "mk",
- "name": "Macedonian"
- },
- {
- "id": "mn",
- "name": "Mongolian"
- },
- {
- "id": "nl",
- "name": "Dutch"
- },
- {
- "id": "no",
- "name": "Norwegian"
- },
- {
- "id": "pa-IN",
- "name": "Punjabi"
- },
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sk",
- "name": "Slovak"
- },
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "mr",
- "name": "Marathi"
- },
- {
- "id": "th",
- "name": "Thai"
- },
- {
- "id": "hr",
- "name": "Croatian"
- },
- {
- "id": "kk",
- "name": "Kazakh"
- },
- {
- "id": "et",
- "name": "Estonian"
- },
- {
- "id": "az",
- "name": "Azerbaijani"
- },
- {
- "id": "hi",
- "name": "Hindi"
- },
- {
- "id": "ky",
- "name": "Kyrgyz"
- },
- {
- "id": "ms",
- "name": "Malay"
+ "id": 14955083,
+ "username": "0x",
+ "fullName": "0x",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/103e771b57ead1687a85576f1d604d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 84
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 84
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 63,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14600656,
+ "username": "0xl",
+ "fullName": "0xl",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b82b7f4ff4cd75ce06bd2eb38b0ac9cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 470
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 470
+ },
+ "translated": {
+ "tmMatch": 70,
+ "default": 400,
+ "total": 470
+ },
+ "targetTranslated": {
+ "tmMatch": 74,
+ "default": 358,
+ "total": 432
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 73,
+ "total": 74
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 70,
+ "default": 400,
+ "total": 470
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897770,
+ "username": "0xmike7",
+ "fullName": "0xmike7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e1316d7734c2eb6961aac5d35ad9aabe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1585
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1585
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 1575,
+ "total": 1585
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 1612,
+ "total": 1629
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 1575,
+ "total": 1585
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14265346,
+ "username": "1789frn",
+ "fullName": "1789frn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2887373c7c2342c4e1518046b8bd4483?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 88
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 88
+ },
+ "translated": {
+ "tmMatch": 80,
+ "default": 8,
+ "total": 88
+ },
+ "targetTranslated": {
+ "tmMatch": 74,
+ "default": 10,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 80,
+ "default": 8,
+ "total": 88
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896464,
+ "username": "420Monty69",
+ "fullName": "420Monty69",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896464/medium/4358f147e415e6175d852389f1075884.png",
+ "preTranslated": 0,
+ "totalCosts": 409
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 113,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "te",
- "name": "Telugu"
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 215
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 209,
+ "total": 215
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 186,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 209,
+ "total": 215
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "my",
- "name": "Burmese"
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575762,
+ "username": "4mfetamin",
+ "fullName": "4mfetamin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9df8a46a49e1f7123f659ecaf2208430?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733134,
+ "username": "5rovic",
+ "fullName": "5rovic",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f861c4c39057970932d63c3e9759ddd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5846
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 31,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 34,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 31,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "eo",
- "name": "Esperanto"
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5812
+ },
+ "translated": {
+ "tmMatch": 205,
+ "default": 5607,
+ "total": 5812
+ },
+ "targetTranslated": {
+ "tmMatch": 209,
+ "default": 5155,
+ "total": 5364
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 205,
+ "default": 5607,
+ "total": 5812
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14791710,
+ "username": "7TRESSLESS",
+ "fullName": "7TRESSLESS",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a8762a651e6f41bdf0abd6336e0f1a15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1091
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1091
+ },
+ "translated": {
+ "tmMatch": 60,
+ "default": 1031,
+ "total": 1091
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 911,
+ "total": 962
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 27,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 60,
+ "default": 1031,
+ "total": 1091
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784336,
+ "username": "8rax",
+ "fullName": "8rax",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784336/medium/9acf0e353a205518b69bcf8b130aacf7.gif",
+ "preTranslated": 0,
+ "totalCosts": 1130
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1130
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 1099,
+ "total": 1130
+ },
+ "targetTranslated": {
+ "tmMatch": 31,
+ "default": 1135,
+ "total": 1166
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 96,
+ "total": 96
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 1099,
+ "total": 1130
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14147283,
+ "username": "ABcryfi",
+ "fullName": "ABcryfi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c7d2007efe75e8dbb3193ba04fe6f30?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 37,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 35,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 37,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951357,
+ "username": "AH1309",
+ "fullName": "AH1309",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/156ac9572ac855bbe6d377cb2175d948?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 7,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024397,
+ "username": "AM113",
+ "fullName": "AM113",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b735be89478a1b1d81ca55d1cc4e2cce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14715154,
+ "username": "AURICHEST",
+ "fullName": "AURICHEST",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/be1895e0f0de06d5fd9a2dc15821bca4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958579,
+ "username": "AWZ",
+ "fullName": "AWZ",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c1847aceaa5b7bb77810b614a56de60e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725086,
+ "username": "Ackermann",
+ "fullName": "Ackermann",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/55f6733f811a59351c943a13950dc228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15012107,
+ "username": "Aco_FR",
+ "fullName": "Aco_FR",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/02036de3a59a96080761f7fff486db8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 478,
+ "total": 508
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 601,
+ "total": 630
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 763
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14179845,
+ "username": "Aco_FroilanM",
+ "fullName": "Aco_FroilanM",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/ff8c78e2a23bd56fe26dede8086f2ede?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 103,
+ "default": 666,
+ "total": 769
+ },
+ "targetTranslated": {
+ "tmMatch": 114,
+ "default": 698,
+ "total": 812
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1071
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "fil",
- "name": "Filipino"
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 213,
+ "default": 1897,
+ "total": 2110
+ },
+ "targetTranslated": {
+ "tmMatch": 236,
+ "default": 2130,
+ "total": 2366
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5942
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005475,
+ "username": "Aco_MLY",
+ "fullName": "Aco_MLY",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/d561292be8daa0a3d305dea33fed9465?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 472,
+ "total": 527
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 478,
+ "total": 542
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005635,
+ "username": "Aco_Stergiopoulou_Michaela",
+ "fullName": "Aco_Stergiopoulou_Michaela",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/9885ded5d890367e60df4ea1479b8104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 132,
+ "default": 689,
+ "total": 821
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 770,
+ "total": 907
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1044
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15012031,
+ "username": "Aco_VTM",
+ "fullName": "Aco_VTM",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/02c6804ff53675aeacabacad44ff5d1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 626,
+ "total": 689
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 939,
+ "total": 1017
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005293,
+ "username": "Aco_Zinacle",
+ "fullName": "Aco_Zinacle",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/5016dc5d64f6e86078cc0191822ffff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 88,
+ "default": 660,
+ "total": 748
+ },
+ "targetTranslated": {
+ "tmMatch": 106,
+ "default": 713,
+ "total": 819
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 39,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 100
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880416,
+ "username": "Adasovec",
+ "fullName": "Adasovec",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/30b9c71e72ed76c0ef447e9148bab31b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6438
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6438
+ },
+ "translated": {
+ "tmMatch": 173,
+ "default": 6265,
+ "total": 6438
+ },
+ "targetTranslated": {
+ "tmMatch": 174,
+ "default": 5662,
+ "total": 5836
+ },
+ "translatedByMt": {
+ "tmMatch": 33,
+ "default": 434,
+ "total": 467
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 173,
+ "default": 6265,
+ "total": 6438
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14532170,
+ "username": "Adelino_Francisco",
+ "fullName": "Adelino_Francisco",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14532170/medium/1de0a3ea0efc06f96a81d634424fdda6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 500
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 500
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 497,
+ "total": 500
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 557,
+ "total": 560
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 497,
+ "total": 500
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14710420,
+ "username": "Afshin4030",
+ "fullName": "Afshin4030",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/095e0bdee3d3f914fe82205d5e3a267a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ml-IN",
- "name": "Malayalam"
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "br-FR",
- "name": "Breton"
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 10,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582304,
+ "username": "Ahmed-Raafat",
+ "fullName": "Ahmed-Raafat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/54109d0b4c19d010e6c1c5494efc46cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 935
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 935
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 889,
+ "total": 935
+ },
+ "targetTranslated": {
+ "tmMatch": 54,
+ "default": 855,
+ "total": 909
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 389,
+ "total": 401
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 889,
+ "total": 935
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14981773,
+ "username": "Alaeddin",
+ "fullName": "Alaeddin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/56396ba09b27eff0a61a37cc5b7a4a2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 230
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 230
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 226,
+ "total": 230
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 195,
+ "total": 199
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 226,
+ "total": 230
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14620810,
+ "username": "AlekseySmiian",
+ "fullName": "AlekseySmiian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bca9046311c7beb695ef7d9827a93064?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 235
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 235
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 229,
+ "total": 235
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 193,
+ "total": 199
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 81,
+ "total": 83
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 229,
+ "total": 235
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13988359,
+ "username": "Alex-crowdin1",
+ "fullName": "Alex-crowdin1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1f1fb859727ed0498314b12d234a3468?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 14,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14242960,
+ "username": "AlexMetz",
+ "fullName": "AlexMetz",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e80ce0da4206ae158ca9e373977ca803?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 46,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 47,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 46,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14857374,
+ "username": "AlexandraM",
+ "fullName": "AlexandraM",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/03efa1ca80db76aa09b28020af3e68bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 512
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 512
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 509,
+ "total": 512
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 429,
+ "total": 432
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 509,
+ "total": 512
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779128,
+ "username": "Alexandros_An",
+ "fullName": "Alexandros_An",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/12664a63595289ebc401fba5acab07c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 181
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 181
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 137,
+ "total": 181
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 133,
+ "total": 186
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 137,
+ "total": 181
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14440508,
+ "username": "Alina_RU",
+ "fullName": "Alina_RU",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14440508/medium/1fa0afd59cad693e0b9ffab7bc776948.jpg",
+ "preTranslated": 0,
+ "totalCosts": 231
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 231
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 230,
+ "total": 231
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 217,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 230,
+ "total": 231
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968479,
+ "username": "Alinka24",
+ "fullName": "Alinka24",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/215d13cb9f433d294c78399716a0f1ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1020
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1020
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 1000,
+ "total": 1020
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 818,
+ "total": 838
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 1000,
+ "total": 1020
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14590022,
+ "username": "AlixRoyere",
+ "fullName": "AlixRoyere",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3591737588695ee50969a84549376b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 275
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 275
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 265,
+ "total": 275
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 277,
+ "total": 287
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 129,
+ "total": 131
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 265,
+ "total": 275
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14710314,
+ "username": "Almadepato",
+ "fullName": "Almadepato",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f725d06abbea057d95a1db4daf9775e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 209
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 209
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 204,
+ "total": 209
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 21,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 204,
+ "total": 209
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14613102,
+ "username": "Amaramalik99",
+ "fullName": "Amaramalik99",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3638e6814fc5c256b8dcbf6052f87cc7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 70
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "si-LK",
- "name": "Sinhala"
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 65,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 99,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 65,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14036291,
+ "username": "AmoweOlubusayo",
+ "fullName": "AmoweOlubusayo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/49406c4b7ba28aff04ef1e072bac8bb7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 511
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 511
+ },
+ "translated": {
+ "tmMatch": 210,
+ "default": 301,
+ "total": 511
+ },
+ "targetTranslated": {
+ "tmMatch": 322,
+ "default": 392,
+ "total": 714
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 210,
+ "default": 301,
+ "total": 511
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951235,
+ "username": "Ana_translator",
+ "fullName": "Ana_translator",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cd57a583744dfe7cb4b1cd19671c5b93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3457
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3457
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 3394,
+ "total": 3457
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 2968,
+ "total": 3025
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 30,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 63,
+ "default": 3394,
+ "total": 3457
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969651,
+ "username": "AnastasiaT",
+ "fullName": "AnastasiaT",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/800eef961b53a206d4bdb43a4a036789?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1094
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1094
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1094,
+ "total": 1094
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 866,
+ "total": 866
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1094,
+ "total": 1094
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14769736,
+ "username": "Andpatagon",
+ "fullName": "Andpatagon",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5aa159c0ea923eba17a923ca3c2930c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 295
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 295
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 280,
+ "total": 295
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 272,
+ "total": 289
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 280,
+ "total": 295
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996735,
+ "username": "AndreaBadini",
+ "fullName": "AndreaBadini",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/95266066115a8f09d277ee565691426a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14848404,
+ "username": "Andreccr",
+ "fullName": "Andreccr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/15114d1438719a62279c133fda3e78be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14696346,
+ "username": "AndrewLillie64",
+ "fullName": "AndrewLillie64",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6a0fb4762b881cf0387a8169650751e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14940333,
+ "username": "Angela_Borda",
+ "fullName": "Angela_Borda",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1bf93e45fbc3caf8e5f4be83fff266eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 241
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 241
+ },
+ "translated": {
+ "tmMatch": 107,
+ "default": 134,
+ "total": 241
+ },
+ "targetTranslated": {
+ "tmMatch": 135,
+ "default": 171,
+ "total": 306
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 107,
+ "default": 134,
+ "total": 241
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545368,
+ "username": "Anlaky",
+ "fullName": "Anlaky",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f8bdd868ba5c22fc854adce47220e168?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 343
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 343
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 343,
+ "total": 343
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 349,
+ "total": 349
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 343,
+ "total": 343
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14621656,
+ "username": "Anna-Sophie",
+ "fullName": "Anna-Sophie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/020cdcc2f8b97e0f256c812ee74bb17e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005487,
+ "username": "Anna_Shirkova",
+ "fullName": "Anna_Shirkova",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/db6b29e6ea944a2b355e690459255898?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 162
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 160,
+ "total": 162
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 160,
+ "total": 162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023385,
+ "username": "Aparticle",
+ "fullName": "Aparticle",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7145c493f2cd4d97b93ef42b16a88478?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 34,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14550974,
+ "username": "Arlind2000",
+ "fullName": "Arlind2000",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4ac57bab98686af7080edbe4b5208cef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 103
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 103
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 85,
+ "total": 103
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 84,
+ "total": 102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 85,
+ "total": 103
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987665,
+ "username": "Artem_Levenko",
+ "fullName": "Artem_Levenko",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/17f91c5dddb6c7766a5153a009880b3b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884874,
+ "username": "AsUsedtobe",
+ "fullName": "AsUsedtobe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/77a168de5071ef93f6ebe9e6bf01a6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 172
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 172
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 172,
+ "total": 172
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 172,
+ "total": 172
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14980905,
+ "username": "Ash601",
+ "fullName": "Ash601",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0c0e62552585e1262e035565688260e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002255,
+ "username": "AsharFR",
+ "fullName": "AsharFR",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dffad03f7c651a72565b53bef30adba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 485
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 485
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 429,
+ "total": 485
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 496,
+ "total": 555
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 429,
+ "total": 485
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14022613,
+ "username": "Ashley.li",
+ "fullName": "Ashley.li",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/034f5cf453826439c38da40a65993c7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 160
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "uz",
- "name": "Uzbek"
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 603
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "kn",
- "name": "Kannada"
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 26
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "sw",
- "name": "Swahili"
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "sr-CS",
- "name": "Serbian (Latin)"
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "am",
- "name": "Amharic"
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 110
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ne-NP",
- "name": "Nepali"
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 14
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ru-UA",
- "name": "Russian, Ukraine"
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ha",
- "name": "Hausa"
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 135
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "tg",
- "name": "Tajik"
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 162
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 33,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 25,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 481
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 33,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ig",
- "name": "Igbo"
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 110
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "yo",
- "name": "Yoruba"
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 30
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "bi",
- "name": "Bislama"
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ur-IN",
- "name": "Urdu (India)"
- }
- ],
- "translated": 307304,
- "target": 355884,
- "approved": 58966,
- "voted": 0,
- "positiveVotes": 4005,
- "negativeVotes": 281,
- "winning": 112057
- },
- {
- "user": {
- "id": "14779158",
- "username": "K0ue1",
- "fullName": "Kouei (K0ue1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png",
- "joined": "2021-05-30 18:24:45"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 142719,
- "target": 199457,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 21,
- "negativeVotes": 1,
- "winning": 34
- },
- {
- "user": {
- "id": "14866604",
- "username": "yeremiaryangunadi",
- "fullName": "Yeremia Ryan Gunadi (yeremiaryangunadi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png",
- "joined": "2021-08-05 04:15:14"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 140705,
- "target": 127579,
- "approved": 0,
- "voted": 1207,
- "positiveVotes": 130,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14087195",
- "username": "nicklcanada",
- "fullName": "Nicolae Liviu (nicklcanada)",
- "avatarUrl": "https://www.gravatar.com/avatar/6ba04182461bb02bcf5d19d81c9b1cb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-31 00:00:13"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 104583,
- "target": 108475,
- "approved": 0,
- "voted": 588,
- "positiveVotes": 979,
- "negativeVotes": 14,
- "winning": 80448
- },
- {
- "user": {
- "id": "14775946",
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752158,
+ "username": "AuFish",
+ "fullName": "AuFish",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/75191ff4b83c212b9c5a39d7108c8ddd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 47,
+ "total": 58
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 96,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 47,
+ "total": 58
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907079,
+ "username": "Ayano85",
+ "fullName": "Ayano85",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/640e34ede10c1d066f45c5b529790ffb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1071
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1071
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 1023,
+ "total": 1071
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 885,
+ "total": 927
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 1023,
+ "total": 1071
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035745,
+ "username": "Aymaneeli",
+ "fullName": "Aymaneeli",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1a230fc1b0cce68cd6c9a7e3fa9e8c11?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 328
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 328
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 328,
+ "total": 328
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 358,
+ "total": 358
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 229,
+ "total": 229
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 328,
+ "total": 328
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029781,
+ "username": "B0nst3r",
+ "fullName": "B0nst3r",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7275eb6c8622d46317cbbc160c0ac843?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14878048,
+ "username": "BINOMFX",
+ "fullName": "BINOMFX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a6dfc7e15329eadbc61eb905f1bab860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 313
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 313
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 311,
+ "total": 313
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 249,
+ "total": 251
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 311,
+ "total": 313
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000681,
+ "username": "BXS",
+ "fullName": "BXS",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7d9b2aad645e110ad96a043cbdef7a18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 142,
+ "total": 142
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14718040,
+ "username": "BXS1001",
+ "fullName": "BXS1001",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/021246c2d0d014a20365c486197f1735?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 133
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 130,
+ "total": 133
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 116,
+ "total": 119
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 130,
+ "total": 133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973491,
+ "username": "Baby_Bubbles",
+ "fullName": "Baby_Bubbles",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/86fafd1bed94890980c573a4d411ea60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14676268,
+ "username": "Bachan",
+ "fullName": "Bachan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d7091aa68a00d2256eb9f3b5709bf974?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1046
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1046
+ },
+ "translated": {
+ "tmMatch": 39,
+ "default": 1007,
+ "total": 1046
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 1138,
+ "total": 1186
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 39,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 39,
+ "default": 1007,
+ "total": 1046
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771990,
+ "username": "Badzso7",
+ "fullName": "Badzso7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/18691a412a18e3ebfcde4550b1f19748?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13845025,
+ "username": "Bajoodle",
+ "fullName": "Bajoodle",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9a43f170b18626ddce403ce0b81ced35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 223
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 223
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 174,
+ "total": 223
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 176,
+ "total": 225
+ },
+ "translatedByMt": {
+ "tmMatch": 24,
+ "default": 99,
+ "total": 123
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 174,
+ "total": 223
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14058399,
+ "username": "Balgair",
+ "fullName": "Balgair",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a318cde2d96baed55dddfe59a1a91a1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 55
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 55
+ },
+ "translated": {
+ "tmMatch": 36,
+ "default": 19,
+ "total": 55
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 21,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 36,
+ "default": 19,
+ "total": 55
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13718717,
+ "username": "Bartolumiu",
+ "fullName": "Bartolumiu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e5de67486ef5e5afe9cc67b56a6eef23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 553
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eu",
+ "name": "Basque",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 553
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 499,
+ "total": 553
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 365,
+ "total": 415
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 499,
+ "total": 553
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775946,
"username": "Beas",
"fullName": "Beas",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775946/medium/22ad4db44fa2f657ec257775cddc899c.jpg",
- "joined": "2021-05-28 09:52:04"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 89959,
- "target": 73956,
- "approved": 0,
- "voted": 442,
- "positiveVotes": 755,
- "negativeVotes": 0,
- "winning": 47020
- },
- {
- "user": {
- "id": "13974365",
- "username": "LQS_Italian",
- "fullName": "LQS_Italian",
- "avatarUrl": "https://www.gravatar.com/avatar/67c435dc825cb94ac38e8522d4c57c31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-06 12:31:41"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 88340,
- "target": 84653,
- "approved": 108154,
- "voted": 0,
- "positiveVotes": 19,
- "negativeVotes": 1,
- "winning": 88376
- },
- {
- "user": {
- "id": "14357794",
- "username": "robertdosa",
- "fullName": "Robert Dosa (robertdosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png",
- "joined": "2020-07-27 14:12:54"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 78308,
- "target": 67472,
- "approved": 0,
- "voted": 44,
- "positiveVotes": 7,
- "negativeVotes": 1,
- "winning": 67119
- },
- {
- "user": {
- "id": "14566994",
- "username": "papoy3",
- "fullName": "Hydro Honey 3000 (papoy3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566994/medium/27c38d4eb236018e454793c342fbf118.jpg",
- "joined": "2021-02-04 05:37:47"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 70148,
- "target": 69684,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 180,
- "negativeVotes": 2,
- "winning": 71
- },
- {
- "user": {
- "id": "13461670",
- "username": "GiorgioHerbie",
- "fullName": "GiorgioHerbie",
- "avatarUrl": "https://www.gravatar.com/avatar/842f442aeb23dc0a3f89ad10e1ba7a04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-05 13:07:19"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 67643,
- "target": 66249,
- "approved": 0,
- "voted": 37,
- "positiveVotes": 17,
- "negativeVotes": 0,
- "winning": 7576
- },
- {
- "user": {
- "id": "14153057",
- "username": "LQS_FR_linguist",
- "fullName": "LQS_FR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/0cf48fed2dada8814d963ea205313494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-11 15:31:46"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 63078,
- "target": 63988,
- "approved": 79750,
- "voted": 0,
- "positiveVotes": 30,
- "negativeVotes": 1,
- "winning": 62909
- },
- {
- "user": {
- "id": "14880458",
- "username": "sekisanchi",
- "fullName": "Kazunori Seki (sekisanchi)",
- "avatarUrl": "https://www.gravatar.com/avatar/7434df198795c08088636407dc7f96c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 19:25:29"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 60458,
- "target": 145148,
- "approved": 0,
- "voted": 1814,
- "positiveVotes": 26,
- "negativeVotes": 20,
- "winning": 0
- },
- {
- "user": {
- "id": "14466218",
- "username": "LQS_ESEM_linguist",
- "fullName": "LQS_ESEM_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/d5f26cf99fa7c6116b75f499f8de93ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 13:41:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 58381,
- "target": 61553,
- "approved": 90222,
- "voted": 0,
- "positiveVotes": 56,
- "negativeVotes": 11,
- "winning": 57737
- },
- {
- "user": {
- "id": "13973069",
- "username": "LQS_CHS_linguist",
- "fullName": "LQS_CHS_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/4848f87680943cbc4389240c602aeb2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-05 10:43:18"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 55718,
- "target": 80642,
- "approved": 116435,
- "voted": 0,
- "positiveVotes": 27,
- "negativeVotes": 4,
- "winning": 55028
- },
- {
- "user": {
- "id": "14146621",
- "username": "LQS_PL_linguist1",
- "fullName": "LQS_PL_linguist1",
- "avatarUrl": "https://www.gravatar.com/avatar/6337f9f650b5632e54dcb6ddfe091422?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 05:47:50"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 52368,
- "target": 42833,
- "approved": 113066,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 52298
- },
- {
- "user": {
- "id": "14977831",
- "username": "peterskoda7",
- "fullName": "Peter Škoda Kecman (peterskoda7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977831/medium/e1e3f150ce524a6cb88fccb8b4f52422.png",
- "joined": "2021-10-27 05:26:28"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 45872,
- "target": 41674,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14505360",
- "username": "konovalenko1990miha",
- "fullName": "Міхаіл Коноваленко (konovalenko1990miha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14505360/medium/81612903e2bb240e7ff8365f5f3b42d8.jpg",
- "joined": "2021-03-23 21:54:27"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 43215,
- "target": 41467,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 265
- },
- {
- "user": {
- "id": "13959389",
- "username": "inlak16",
- "fullName": "inlak16",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png",
- "joined": "2019-08-22 11:41:47"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 43119,
- "target": 38721,
- "approved": 0,
- "voted": 110,
- "positiveVotes": 263,
- "negativeVotes": 16,
- "winning": 7342
- },
- {
- "user": {
- "id": "14568334",
- "username": "norhorn",
- "fullName": "george kitsoukakis (norhorn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/eb41460b41717d2eb2d49964b63c7c0d.jpeg",
- "joined": "2021-01-14 01:35:04"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 41216,
- "target": 42214,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 26,
- "negativeVotes": 1,
- "winning": 11814
- },
- {
- "user": {
- "id": "14681570",
- "username": "Val21",
- "fullName": "Val21",
- "avatarUrl": "https://www.gravatar.com/avatar/a751b71711e0d1fb7c0ff58e27f21750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 08:07:57"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 38899,
- "target": 38253,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 30,
- "negativeVotes": 1,
- "winning": 10042
- },
- {
- "user": {
- "id": "14633448",
- "username": "ilrado",
- "fullName": "Matteo Radice (ilrado)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633448/medium/00e36a91231d5f6980f4ea96c1f24ab9.jpg",
- "joined": "2021-02-20 15:35:40"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 34751,
- "target": 34170,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 18,
- "negativeVotes": 0,
- "winning": 3987
- },
- {
- "user": {
- "id": "14553216",
- "username": "rielychen",
- "fullName": "Riely (rielychen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/2fd387175612fea1ecb0db49b0178419.png",
- "joined": "2021-01-13 01:04:21"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 32535,
- "target": 48670,
- "approved": 0,
- "voted": 53,
- "positiveVotes": 143,
- "negativeVotes": 10,
- "winning": 5667
- },
- {
- "user": {
- "id": "14227150",
- "username": "vidhyanand",
- "fullName": "Vidhyanand Cs (vidhyanand)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227150/medium/105fd3bc6a1a8f005dcb0b64a03d22a6.jpg",
- "joined": "2020-04-26 13:12:55"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 28483,
- "target": 48145,
- "approved": 0,
- "voted": 59,
- "positiveVotes": 9,
- "negativeVotes": 5,
- "winning": 9737
- },
- {
- "user": {
- "id": "14884558",
- "username": "Ethereum.org_Discord-Nuble",
- "fullName": "Ethereum.org_Discord-Nuble",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884558/medium/0094ad75d25cfe8961a0e8318ff5d7f8.jpg",
- "joined": "2021-08-19 05:13:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 28162,
- "target": 23201,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14141643",
- "username": "LQS_RO_linguist",
- "fullName": "LQS_RO_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/206e28dd1d437b3d3016495805493763?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-02 05:46:06"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 26093,
- "target": 25881,
- "approved": 117684,
- "voted": 0,
- "positiveVotes": 162,
- "negativeVotes": 9,
- "winning": 25940
- },
- {
- "user": {
- "id": "14564238",
- "username": "FreddyAndresParra",
- "fullName": "Фредди Андрес Парра Орельяна (FreddyAndresParra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg",
- "joined": "2021-01-05 16:17:05"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 25617,
- "target": 27633,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 288,
- "negativeVotes": 15,
- "winning": 4942
- },
- {
- "user": {
- "id": "14792498",
- "username": "tyevlag",
- "fullName": "tyevlag",
- "avatarUrl": "https://www.gravatar.com/avatar/16e0cdde1a9cb6ce5788ff1f24cb89f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 05:09:21"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 21646,
- "target": 28226,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1022
- },
- {
- "user": {
- "id": "14136969",
- "username": "LQS_TR_linguist",
- "fullName": "LQS_TR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/836d07f2a54868c7738a512b955e306e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-27 09:26:43"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 21547,
- "target": 19211,
- "approved": 30683,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 1,
- "winning": 21534
- },
- {
- "user": {
- "id": "14294594",
- "username": "LQS_MLIN_linguist",
- "fullName": "LQS_MLIN_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/7eb92f37b99e62fc4a247eb58e8359bd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-07 08:49:17"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 19167,
- "target": 31412,
- "approved": 32868,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19111
- },
- {
- "user": {
- "id": "14075861",
- "username": "ClaireBeydon",
- "fullName": "Claire Beydon (ClaireBeydon)",
- "avatarUrl": "https://www.gravatar.com/avatar/91c39f2896fb48bdd42c5cc53e42d2ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-14 10:33:39"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 18537,
- "target": 19548,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 104,
- "negativeVotes": 0,
- "winning": 3447
- },
- {
- "user": {
- "id": "14524548",
- "username": "bhattg",
- "fullName": "Naveen Bhatt (bhattg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14524548/medium/14197a8630271202eb6371b01ec63028.png",
- "joined": "2020-12-17 11:49:29"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 17999,
- "target": 30917,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 5,
- "negativeVotes": 7,
- "winning": 2135
- },
- {
- "user": {
- "id": "14411552",
- "username": "LQS_HU_Linguist",
- "fullName": "LQS_HU_Linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/debd0759ebd4f0a2323b63d06d3fbd33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 07:21:52"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 17395,
- "target": 14850,
- "approved": 96086,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 17371
- },
- {
- "user": {
- "id": "14030478",
- "username": "LQS_PTBR_linguist",
- "fullName": "LQS_PTBR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/02c91c3d77c3bed75edc672e2df15004?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-06 01:57:32"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 16832,
- "target": 18146,
- "approved": 31453,
- "voted": 0,
- "positiveVotes": 51,
- "negativeVotes": 1,
- "winning": 16632
- },
- {
- "user": {
- "id": "14815312",
- "username": "001-uk_00455358",
- "fullName": "001-UK_00455358 (001-uk_00455358)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815312/medium/866bc874cf7462eff3219fa2d337e5f2.png",
- "joined": "2021-06-25 10:49:14"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 16625,
- "target": 14784,
- "approved": 16009,
- "voted": 0,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 15359
- },
- {
- "user": {
- "id": "13544774",
- "username": "LukaK",
- "fullName": "Luka Kropec (LukaK)",
- "avatarUrl": "https://www.gravatar.com/avatar/4536fcbc2dc226c427318126070e090d?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 15:15:26"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "bg",
- "name": "Bulgarian"
- },
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "da",
- "name": "Danish"
- },
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "fi",
- "name": "Finnish"
- },
- {
- "id": "gu-IN",
- "name": "Gujarati"
- },
- {
- "id": "he",
- "name": "Hebrew"
- },
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "ko",
- "name": "Korean"
- },
- {
- "id": "lt",
- "name": "Lithuanian"
- },
- {
- "id": "mk",
- "name": "Macedonian"
- },
- {
- "id": "mn",
- "name": "Mongolian"
- },
- {
- "id": "nl",
- "name": "Dutch"
- },
- {
- "id": "no",
- "name": "Norwegian"
- },
- {
- "id": "pa-IN",
- "name": "Punjabi"
- },
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sk",
- "name": "Slovak"
- },
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "mr",
- "name": "Marathi"
- },
- {
- "id": "th",
- "name": "Thai"
- },
- {
- "id": "hr",
- "name": "Croatian"
- },
- {
- "id": "kk",
- "name": "Kazakh"
- },
- {
- "id": "hi",
- "name": "Hindi"
- },
- {
- "id": "ky",
- "name": "Kyrgyz"
- },
- {
- "id": "ms",
- "name": "Malay"
- },
- {
- "id": "te",
- "name": "Telugu"
- },
- {
- "id": "fil",
- "name": "Filipino"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- },
- {
- "id": "br-FR",
- "name": "Breton"
- },
- {
- "id": "uz",
- "name": "Uzbek"
- },
- {
- "id": "kn",
- "name": "Kannada"
- },
- {
- "id": "sw",
- "name": "Swahili"
- },
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- },
- {
- "id": "am",
- "name": "Amharic"
- },
- {
- "id": "tg",
- "name": "Tajik"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- },
- {
- "id": "ig",
- "name": "Igbo"
- },
- {
- "id": "yo",
- "name": "Yoruba"
- },
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 15978,
- "target": 15082,
- "approved": 3883,
- "voted": 68,
- "positiveVotes": 185,
- "negativeVotes": 15,
- "winning": 8434
- },
- {
- "user": {
- "id": "14611130",
- "username": "PeterAdrian",
- "fullName": "Vlado Bošnjaković (PeterAdrian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14611130/medium/4620c8912d5e34aacdd0f143ecc13219.jpeg",
- "joined": "2021-02-05 17:35:00"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 15760,
- "target": 14556,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 28,
- "negativeVotes": 0,
- "winning": 4906
- },
- {
- "user": {
- "id": "14737644",
- "username": "DylanCONIN",
- "fullName": "conin dylan (DylanCONIN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737644/medium/d981e7d9ae1b98b7e8a21245675fc0e0.jpg",
- "joined": "2021-05-04 07:58:25"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 15610,
- "target": 15293,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3165
- },
- {
- "user": {
- "id": "13971441",
- "username": "lucidtranslations",
- "fullName": "lucidtranslations",
- "avatarUrl": "https://www.gravatar.com/avatar/8260e1494a988a5c98616aae905d4496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-14 07:05:04"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 15413,
- "target": 41169,
- "approved": 27601,
- "voted": 0,
- "positiveVotes": 147,
- "negativeVotes": 27,
- "winning": 10103
- },
- {
- "user": {
- "id": "14957177",
- "username": "joeurassa",
- "fullName": "joeurassa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957177/medium/08012a4e9504cbd69401e4ef97702ca2.jpeg",
- "joined": "2021-10-10 11:00:56"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 15181,
- "target": 14909,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688126",
- "username": "HerbertDu",
- "fullName": "HerbertDu",
- "avatarUrl": "https://www.gravatar.com/avatar/cb52b90ca2e9f8cb5cc2b5d6f577f3bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 05:32:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 15151,
- "target": 22184,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 12587
- },
- {
- "user": {
- "id": "14289592",
- "username": "justaspauser",
- "fullName": "Eduardo Gutierrez (justaspauser)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289592/medium/7d255374ccf7df84b6367ee880659fc7.png",
- "joined": "2021-02-22 23:10:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 15010,
- "target": 15872,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10935
- },
- {
- "user": {
- "id": "14582152",
- "username": "Shokhe",
- "fullName": "Shokhrukh Ermanov (Shokhe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582152/medium/4fc89c53adc0e65a7af6a181eba9a10d.jpg",
- "joined": "2021-01-18 03:45:48"
- },
- "languages": [
- {
- "id": "uz",
- "name": "Uzbek"
- }
- ],
- "translated": 14921,
- "target": 12728,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14624926",
- "username": "LQS_Hindi_linguist",
- "fullName": "LQS_Hindi_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/283bf7a87124cfc5bc5d2021783f463d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 03:24:54"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 14465,
- "target": 25402,
- "approved": 16886,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 14459
- },
- {
- "user": {
- "id": "13993717",
- "username": "LQS_RU_linguist",
- "fullName": "LQS_RU_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/e2e6b964a673a040b806c3dff5267f4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-25 03:33:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 14348,
- "target": 13241,
- "approved": 20747,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 2,
- "winning": 14255
- },
- {
- "user": {
- "id": "14942589",
- "username": "Marcus_Aureliee",
- "fullName": "Marcus_Aureliee",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942589/medium/b4c7f32eef26b3a02fb112cd161792fd.jpg",
- "joined": "2021-09-29 00:42:33"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 13709,
- "target": 23017,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658876",
- "username": "Industry_Arabic",
- "fullName": "Industry_Arabic",
- "avatarUrl": "https://www.gravatar.com/avatar/5d53f4e53843e1c474c13632321af591?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 12:08:46"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 13604,
- "target": 11312,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14861756",
- "username": "RahayuRafika_12",
- "fullName": "Rahayu Rafikahwulan Sari (RahayuRafika_12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg",
- "joined": "2021-08-01 20:12:38"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- },
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 13492,
- "target": 11268,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 264,
- "negativeVotes": 17,
- "winning": 0
- },
- {
- "user": {
- "id": "14689490",
- "username": "LQS_ESEM_proofreader",
- "fullName": "LQS_ESEM_proofreader",
- "avatarUrl": "https://www.gravatar.com/avatar/dc5e8f633364be63c5708828228875d5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 12:02:23"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 13268,
- "target": 14719,
- "approved": 16216,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 1,
- "winning": 13255
- },
- {
- "user": {
- "id": "14180479",
- "username": "LQS_BN_linguist",
- "fullName": "Debjit Sarkar (LQS_BN_linguist)",
- "avatarUrl": "https://www.gravatar.com/avatar/b5cc2b3a1a09f2b31913f407846d0f9f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-30 12:58:14"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 12933,
- "target": 23304,
- "approved": 13498,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 12870
- },
- {
- "user": {
- "id": "13256540",
- "username": "Scruffy",
- "fullName": "Scruffy",
- "avatarUrl": "https://www.gravatar.com/avatar/6945acf728d14d64c7b660a31ddd9f8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-21 06:18:02"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 12852,
- "target": 12787,
- "approved": 0,
- "voted": 94,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2646
- },
- {
- "user": {
- "id": "14359912",
- "username": "henkkarop",
- "fullName": "Henri Ropponen (henkkarop)",
- "avatarUrl": "https://www.gravatar.com/avatar/65122d511e2911c2ab686e1bfe2fb168?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-29 09:55:31"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 12849,
- "target": 11032,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 3242
- },
- {
- "user": {
- "id": "14111943",
- "username": "fluffay",
- "fullName": "Adina Cretu (fluffay)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14111943/medium/161bdceb6b4652143236637b21f7b3b5.png",
- "joined": "2020-02-10 02:50:23"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 12525,
- "target": 12969,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 22,
- "negativeVotes": 0,
- "winning": 6958
- },
- {
- "user": {
- "id": "14958819",
- "username": "C91F37",
- "fullName": "Edmund Sze (C91F37)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958819/medium/969ab87657bee77450e67bd3a62c709e.png",
- "joined": "2021-10-11 15:42:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 11924,
- "target": 13946,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14044792",
- "username": "LQS_SV_linguist",
- "fullName": "LQS_SV_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/ba028f2d3f1cc09f57c63b38141671d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-29 18:29:33"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 11849,
- "target": 11488,
- "approved": 13815,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 10702
- },
- {
- "user": {
- "id": "14978447",
- "username": "DanDaro",
- "fullName": "André Abner (DanDaro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978447/medium/6c0a867cdc72f871a6dd35862afa1562.jpg",
- "joined": "2021-10-27 17:35:00"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 11814,
- "target": 11916,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14056918",
- "username": "LQS_DE_SR",
- "fullName": "LQS_DE_SR",
- "avatarUrl": "https://www.gravatar.com/avatar/69f27da60e0b3b3772cbbd55a97ef260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-23 05:38:16"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 11785,
- "target": 11426,
- "approved": 27483,
- "voted": 0,
- "positiveVotes": 21,
- "negativeVotes": 0,
- "winning": 11695
- },
- {
- "user": {
- "id": "14046447",
- "username": "bolbo0x",
- "fullName": "bolbo (bolbo0x)",
- "avatarUrl": "https://www.gravatar.com/avatar/64a80a8ef05eb451ede2579735f1bbe5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-02 23:47:18"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 11781,
- "target": 12317,
- "approved": 0,
- "voted": 83,
- "positiveVotes": 49,
- "negativeVotes": 1,
- "winning": 7981
- },
- {
- "user": {
- "id": "14966275",
- "username": "zer0knowledge",
- "fullName": "Demir (zer0knowledge)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966275/medium/dead80d7c0e54990ad4fee448e0aacaa.jpeg",
- "joined": "2021-10-17 20:22:40"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 11758,
- "target": 9796,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034260",
- "username": "LQS_AR_linguist",
- "fullName": "LQS_AR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/4299e95f2805914901d31d70d3e716d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-11 04:01:55"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 11749,
- "target": 11237,
- "approved": 16670,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 1,
- "winning": 11632
- },
- {
- "user": {
- "id": "13989107",
- "username": "DjangoM",
- "fullName": "Jaroslav Macej (DjangoM)",
- "avatarUrl": "https://www.gravatar.com/avatar/5e55c27275162876144f25ae45dac6bd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-20 02:34:24"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 11738,
- "target": 11741,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 24,
- "negativeVotes": 0,
- "winning": 4938
- },
- {
- "user": {
- "id": "14030666",
- "username": "LQS_SL_linguist",
- "fullName": "LQS_SL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/d8bbdd1ddae3369c37aee919a054d00d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 13:45:21"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 11648,
- "target": 11254,
- "approved": 20710,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 11604
- },
- {
- "user": {
- "id": "14555882",
- "username": "ElAmir",
- "fullName": "Amir Reza (ElAmir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/edcaf24c34ef3506613bad9099389fc6.jpg",
- "joined": "2020-12-30 03:39:19"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "tg",
- "name": "Tajik"
- }
- ],
- "translated": 11435,
- "target": 13586,
- "approved": 0,
- "voted": 249,
- "positiveVotes": 151,
- "negativeVotes": 3,
- "winning": 59
- },
- {
- "user": {
- "id": "14320782",
- "username": "JoseDeFreitas",
- "fullName": "José De Freitas (JoseDeFreitas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320782/medium/988805bcea26898a44f89f036124c176.png",
- "joined": "2021-11-07 20:20:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11329,
- "target": 12659,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 943
- },
- {
- "user": {
- "id": "14957477",
- "username": "asdcBRA",
- "fullName": "André Silva de Carvalho (asdcBRA)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957477/medium/4731034c4ad881ab8ce76389b7952162.jpeg",
- "joined": "2021-10-10 15:55:03"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 11094,
- "target": 11785,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 58,
- "negativeVotes": 0,
- "winning": 36
- },
- {
- "user": {
- "id": "14850810",
- "username": "esdi",
- "fullName": "dapalek (esdi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850810/medium/7e3a7993a59f2402dd2a2a32c2d92aed.png",
- "joined": "2021-07-23 17:12:46"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 11051,
- "target": 9027,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14356104",
- "username": "cryptoseeker",
- "fullName": "cryptoseeker",
- "avatarUrl": "https://www.gravatar.com/avatar/6b6158035dae7efa632101945b8c3eb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-26 03:47:13"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 10987,
- "target": 14997,
- "approved": 0,
- "voted": 65,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 5354
- },
- {
- "user": {
- "id": "14587094",
- "username": "Fabs86",
- "fullName": "Fabs86",
- "avatarUrl": "https://www.gravatar.com/avatar/20e38dd33b57b81f2b986fb99e732bb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 01:05:04"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 10832,
- "target": 12771,
- "approved": 0,
- "voted": 33,
- "positiveVotes": 82,
- "negativeVotes": 2,
- "winning": 2721
- },
- {
- "user": {
- "id": "14643068",
- "username": "egelizo",
- "fullName": "Eduardo Gelizo (egelizo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643068/medium/f6f25b4f0e429a11e235ade8d866b314.jpeg",
- "joined": "2021-02-26 02:54:23"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 10699,
- "target": 11955,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 2129
- },
- {
- "user": {
- "id": "14274478",
- "username": "LQS_NO_linguist",
- "fullName": "LQS_NO_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/77921a1d767de0fcdf033d0e5f3640ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-26 08:56:39"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 10569,
- "target": 10210,
- "approved": 13347,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 10535
- },
- {
- "user": {
- "id": "14690454",
- "username": "sekoman01",
- "fullName": "Uğur Daloğlu (sekoman01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690454/medium/595a121d4a7427f7a21b75b32017c247.jpg",
- "joined": "2021-03-30 16:22:03"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 10436,
- "target": 8335,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 1327
- },
- {
- "user": {
- "id": "14708760",
- "username": "hypebeans",
- "fullName": "Muumi (ミュウミ) (hypebeans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708760/medium/f039dc85a8469b65d9e3e2413f9c4710.png",
- "joined": "2021-04-12 11:22:28"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 10330,
- "target": 14255,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 270,
- "negativeVotes": 111,
- "winning": 250
- },
- {
- "user": {
- "id": "14657804",
- "username": "jhonnyvianello",
- "fullName": "jhonnyvianello",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg",
- "joined": "2021-03-07 19:07:27"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 10282,
- "target": 10337,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 41,
- "negativeVotes": 0,
- "winning": 48
- },
- {
- "user": {
- "id": "14686678",
- "username": "ametel01",
- "fullName": "Alessandro Metelli (ametel01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686678/medium/42da64bc8743fcf14d7efc7aaebbd99f.jpeg",
- "joined": "2021-03-28 03:40:06"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 10222,
- "target": 9691,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1252
- },
- {
- "user": {
- "id": "14008271",
- "username": "comodoro",
- "fullName": "Vojtěch Drábek (comodoro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008271/medium/c7b5cf629f7c0a1a3c8be6944f69983e.png",
- "joined": "2019-10-09 08:41:38"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 10198,
- "target": 10110,
- "approved": 0,
- "voted": 172,
- "positiveVotes": 54,
- "negativeVotes": 3,
- "winning": 4823
- },
- {
- "user": {
- "id": "13971447",
- "username": "LQSReviewFr",
- "fullName": "LQSReviewFr",
- "avatarUrl": "https://www.gravatar.com/avatar/39a45008bd00a53a540ea8d8cdd6a28d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-04 04:04:22"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 10142,
- "target": 11773,
- "approved": 19989,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 10108
- },
- {
- "user": {
- "id": "14958973",
- "username": "cryptobull",
- "fullName": "Crypto Bull (cryptobull)",
- "avatarUrl": "https://www.gravatar.com/avatar/2b07e9d536f4e7644986d9dc17d31753?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 19:18:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 10070,
- "target": 11009,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711854",
- "username": "Gamma-Software",
- "fullName": "Valentin Rudloff (Gamma-Software)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711854/medium/0ae62f880c9fdec755310b2d551953ae.jpeg",
- "joined": "2021-04-14 14:22:21"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 9868,
- "target": 9562,
- "approved": 0,
- "voted": 95,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1065
- },
- {
- "user": {
- "id": "14848176",
- "username": "rustamg23",
- "fullName": "Rustam Gubaydullin (rustamg23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848176/medium/31ad821cd8075115d725d13c885e9669.jpeg",
- "joined": "2021-07-21 14:03:24"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 9823,
- "target": 7417,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779018",
- "username": "jaskoeth",
- "fullName": "jaskoeth",
- "avatarUrl": "https://www.gravatar.com/avatar/8985ed0bd166da1b98c9c957829d0c24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 04:59:16"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 9798,
- "target": 8181,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663076",
- "username": "LQS_HR_linguist",
- "fullName": "LQS_HR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/b0d21b6ac5ef5d0ffde74179308cd3a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 06:24:10"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 9628,
- "target": 8833,
- "approved": 16817,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 9620
- },
- {
- "user": {
- "id": "14143907",
- "username": "LQS_ZHTW_linguist",
- "fullName": "LQS_ZHTW_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/bfccd98f25bea1b676f45938fc8a92ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-04 00:21:12"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 9403,
- "target": 14598,
- "approved": 14473,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 5,
- "winning": 9330
- },
- {
- "user": {
- "id": "14555766",
- "username": "tokuryoo",
- "fullName": "tokuryoo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555766/medium/c3219692eb549ef2a8ed8cb1f745db3e.jpg",
- "joined": "2020-12-30 00:41:14"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 9248,
- "target": 26799,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 73,
- "negativeVotes": 22,
- "winning": 5453
- },
- {
- "user": {
- "id": "14228166",
- "username": "Viktoriia_Zelinska",
- "fullName": "Viktoriia_Zelinska",
- "avatarUrl": "https://www.gravatar.com/avatar/662756ae14fd7fd08f0c97de30ba64b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-29 09:47:21"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 9194,
- "target": 8870,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 70,
- "negativeVotes": 19,
- "winning": 311
- },
- {
- "user": {
- "id": "14274492",
- "username": "alexander.lysenko",
- "fullName": "Alexander Lysenko (alexander.lysenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14274492/medium/b4f4de8fa9091b8949ab83d81e16c8bd.jpeg",
- "joined": "2020-05-26 09:03:21"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 9156,
- "target": 9292,
- "approved": 9580,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 3,
- "winning": 8718
- },
- {
- "user": {
- "id": "14230432",
- "username": "Hermos",
- "fullName": "Marija Grinevičiūtė (Hermos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230432/medium/c78f61962f97f11d7a3c29d288d493c2.jpg",
- "joined": "2020-04-28 11:40:32"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 9150,
- "target": 8787,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7760
- },
- {
- "user": {
- "id": "14376958",
- "username": "TPTSeoul",
- "fullName": "TPTSeoul",
- "avatarUrl": "https://www.gravatar.com/avatar/5175bf557469cf5be83bb53f7ad1ae37?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-13 15:51:02"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 8827,
- "target": 8687,
- "approved": 10606,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8841
- },
- {
- "user": {
- "id": "14358488",
- "username": "jpaulet",
- "fullName": "jp_aulet (jpaulet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14358488/medium/f01f4d5062ccf8b6c32bcdc58e58f950.jpeg",
- "joined": "2020-07-28 06:50:10"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 8723,
- "target": 9794,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 398
- },
- {
- "user": {
- "id": "14690998",
- "username": "magus0219",
- "fullName": "magus0219",
- "avatarUrl": "https://www.gravatar.com/avatar/f66fd2e894a3e42037fad926d0830eb1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 03:58:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 8680,
- "target": 14737,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 7,
- "negativeVotes": 1,
- "winning": 5472
- },
- {
- "user": {
- "id": "14135743",
- "username": "LQS_PTPT_linguist",
- "fullName": "LQS_PTPT_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/18f2e0efe3821c96603232e53d4fae82?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-26 10:40:17"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 8539,
- "target": 9183,
- "approved": 7264,
- "voted": 0,
- "positiveVotes": 42,
- "negativeVotes": 0,
- "winning": 6223
- },
- {
- "user": {
- "id": "12804952",
- "username": "imgelu",
- "fullName": "Gelu Ungur (imgelu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12804952/medium/59d5d165d5b422c57908e7797d3b83ee.jpg",
- "joined": "2021-10-30 04:24:32"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 8530,
- "target": 9141,
- "approved": 0,
- "voted": 1548,
- "positiveVotes": 119,
- "negativeVotes": 413,
- "winning": 0
- },
- {
- "user": {
- "id": "14958061",
- "username": "Dearry",
- "fullName": "Dearry",
- "avatarUrl": "https://www.gravatar.com/avatar/c0545f4225c9b4184db8d4a7eef62a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 05:23:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 8450,
- "target": 13246,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14114827",
- "username": "LQS_Slovak_linguist",
- "fullName": "LQS_Slovak_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/5d855c97079066806b64b903c4ae0bd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-12 02:07:44"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 8443,
- "target": 8522,
- "approved": 12015,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8440
- },
- {
- "user": {
- "id": "14669202",
- "username": "Phintis",
- "fullName": "Phintis",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669202/medium/d020b1d7dfdc5782f15cbce0f6c0752b.jpg",
- "joined": "2021-03-15 15:41:55"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 8262,
- "target": 7492,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 23,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14673502",
- "username": "dartini123",
- "fullName": "dartini123",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673502/medium/1589de50b3256afbd8193b1b4befc4ce.jpg",
- "joined": "2021-03-18 14:05:26"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 8141,
- "target": 9426,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 21,
- "negativeVotes": 0,
- "winning": 2661
- },
- {
- "user": {
- "id": "14795502",
- "username": "dasomoli",
- "fullName": "dasomoli",
- "avatarUrl": "https://www.gravatar.com/avatar/a0d1d5726af9b80e94348af794c321e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 10:23:07"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 8061,
- "target": 5546,
- "approved": 0,
- "voted": 51,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915329",
- "username": "Mariam163",
- "fullName": "Mariam163",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14915329/medium/504f7acd4e8cb7ee70fbe35240bed705.jpg",
- "joined": "2021-09-09 08:12:15"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 7575,
- "target": 8414,
- "approved": 0,
- "voted": 29,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 156
- },
- {
- "user": {
- "id": "14586030",
- "username": "smolpadok",
- "fullName": "smolpadok",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586030/medium/3f48fc620d6f916aa24dd17f8777e487.png",
- "joined": "2021-01-20 08:46:02"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 7497,
- "target": 7208,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581548",
- "username": "danielpg2106",
- "fullName": "Daniel Pedraza G (danielpg2106)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581548/medium/15cfd2d3d8015efbcfbc20c47deeb5be.jpeg",
- "joined": "2021-01-17 15:29:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 7476,
- "target": 7897,
- "approved": 0,
- "voted": 193,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 2370
- },
- {
- "user": {
- "id": "14774614",
- "username": "biwenming",
- "fullName": "biwenming",
- "avatarUrl": "https://www.gravatar.com/avatar/ec1c9952af60a46c178ab66ac0873d50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 03:12:44"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 7378,
- "target": 10330,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2605
- },
- {
- "user": {
- "id": "14045791",
- "username": "zabir3",
- "fullName": "zabir3",
- "avatarUrl": "https://www.gravatar.com/avatar/240afaddfd72387021d4d6adff8a8376?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-01 17:57:55"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 7176,
- "target": 11654,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 6,
- "winning": 7
- },
- {
- "user": {
- "id": "14733070",
- "username": "loopersosa",
- "fullName": "loopersosa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg",
- "joined": "2021-04-30 11:10:38"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 7091,
- "target": 8197,
- "approved": 0,
- "voted": 183,
- "positiveVotes": 103,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "6154",
- "username": "translator",
- "fullName": "Jungho Jo (translator)",
- "avatarUrl": "https://www.gravatar.com/avatar/a7b2e150fb58a04645cd6da6db0508dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-11 04:42:18"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 7020,
- "target": 6677,
- "approved": 630,
- "voted": 0,
- "positiveVotes": 38,
- "negativeVotes": 0,
- "winning": 1751
- },
- {
- "user": {
- "id": "13490273",
- "username": "Cmml",
- "fullName": "Богдана Вознюк (Cmml)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13490273/medium/6492f5b552f926f396b1c2e28c8671d1.jpg",
- "joined": "2021-10-12 07:04:29"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 6955,
- "target": 6952,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14454884",
- "username": "howdyAnkit",
- "fullName": "ANKIT_PAL (howdyAnkit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14454884/medium/b1d7baf77a5bcf683b116f3ae6052c9d.jpeg",
- "joined": "2020-10-13 11:14:56"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 6867,
- "target": 10806,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14920111",
- "username": "JueK3y",
- "fullName": "JueK3y | Personal Account (JueK3y)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920111/medium/2a49cdd81e2cab1e2190009caa3de573.png",
- "joined": "2021-09-13 03:33:12"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 6731,
- "target": 6534,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832782",
- "username": "LQS_BG_Linguist",
- "fullName": "LQS_BG_Linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/6cab534abf8fcb64a00cbaa14521b384?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 00:05:58"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 6729,
- "target": 6943,
- "approved": 16830,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 6729
- },
- {
- "user": {
- "id": "14886730",
- "username": "charlyzona",
- "fullName": "Carlos Rodríguez (charlyzona)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg",
- "joined": "2021-08-18 20:18:09"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 6539,
- "target": 6323,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 29,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748480",
- "username": "rustle",
- "fullName": "Liu Min (rustle)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748480/medium/fb9b53571ebea873ce17257508a8c128.jpg",
- "joined": "2021-05-09 23:53:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 6523,
- "target": 9184,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 3443
- },
- {
- "user": {
- "id": "14880416",
- "username": "Adasovec",
- "fullName": "Adasovec",
- "avatarUrl": "https://www.gravatar.com/avatar/30b9c71e72ed76c0ef447e9148bab31b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 18:27:50"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 6438,
- "target": 5836,
- "approved": 0,
- "voted": 134,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14701334",
- "username": "ozora-ogino",
- "fullName": "Ozora Ogino (ozora-ogino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14701334/medium/3b0ac84d5b08a7171e0157caba5e6ece.png",
- "joined": "2021-04-07 05:08:39"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 6350,
- "target": 15052,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 70,
- "negativeVotes": 44,
- "winning": 627
- },
- {
- "user": {
- "id": "14369122",
- "username": "LQS_FI_linguist",
- "fullName": "LQS_FI_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/f41ca314dbb884a59c257099110b0129?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-06 07:13:22"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 6280,
- "target": 5007,
- "approved": 9632,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6274
- },
- {
- "user": {
- "id": "14952363",
- "username": "ensingerphilipp",
- "fullName": "Philipp Ensinger (ensingerphilipp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952363/medium/491e25bf6c69040369e342c3b1d12249.jpeg",
- "joined": "2021-10-06 10:21:56"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 6050,
- "target": 5925,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 13,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14875990",
- "username": "guilhermevendramini",
- "fullName": "Guilherme Vendramini (guilhermevendramini)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875990/medium/6c42a855600f60124d4fbb49962d2226.jpeg",
- "joined": "2021-08-11 22:26:41"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 5960,
- "target": 5717,
- "approved": 0,
- "voted": 958,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 24
- },
- {
- "user": {
- "id": "14733134",
- "username": "5rovic",
- "fullName": "5rovic",
- "avatarUrl": "https://www.gravatar.com/avatar/f861c4c39057970932d63c3e9759ddd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 11:54:40"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 5846,
- "target": 5401,
- "approved": 0,
- "voted": 56,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14386068",
- "username": "minaminao",
- "fullName": "Naoya Okanami (minaminao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14386068/medium/f08582fddeff0960412994f51377126c.png",
- "joined": "2020-08-21 00:57:39"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 5758,
- "target": 14226,
- "approved": 0,
- "voted": 39,
- "positiveVotes": 9,
- "negativeVotes": 1,
- "winning": 5498
- },
- {
- "user": {
- "id": "14770398",
- "username": "zhangyuenet",
- "fullName": "Yue Zhang (zhangyuenet)",
- "avatarUrl": "https://www.gravatar.com/avatar/91e5db633c553cc5938984a6711a32bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-24 05:24:08"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 5757,
- "target": 7592,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 1512
- },
- {
- "user": {
- "id": "14652378",
- "username": "ST19990909",
- "fullName": "ST19990909",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652378/medium/6898cf09dad007fbb48cae095467baf1.png",
- "joined": "2021-03-04 02:00:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 5747,
- "target": 8248,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 3,
- "winning": 1769
- },
- {
- "user": {
- "id": "14879616",
- "username": "ctossaphol",
- "fullName": "Tossaphol Chintanaphan (ctossaphol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879616/medium/2ec654c7bf81fc9fd46d1cafe971d586.jpeg",
- "joined": "2021-08-14 05:55:42"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 5646,
- "target": 2145,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14138507",
- "username": "LQS_IT_linguist",
- "fullName": "LQS_IT_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/f606b0f68b8dc2cbd68aa4f285fe2f3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-28 12:19:16"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 5614,
- "target": 6149,
- "approved": 7561,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5244
- },
- {
- "user": {
- "id": "14840796",
- "username": "Eniko.G",
- "fullName": "Eniko.G",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840796/medium/5803be055343fda6a020e05078f97815.jpg",
- "joined": "2021-07-15 10:35:57"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 5605,
- "target": 4794,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5151
- },
- {
- "user": {
- "id": "14326452",
- "username": "LQS_LT_linguist",
- "fullName": "LQS_LT_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/76452e8fac12178e2af8ff8a35797771?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-01 03:29:28"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 5598,
- "target": 5146,
- "approved": 13626,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5467
- },
- {
- "user": {
- "id": "14949595",
- "username": "Olesya711",
- "fullName": "Olesya711",
- "avatarUrl": "https://www.gravatar.com/avatar/9d1ee480b2b9b88ef95902096e52ab02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 11:37:19"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 5524,
- "target": 4801,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 60,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14829178",
- "username": "chenrui5199",
- "fullName": "陈蕊 (chenrui5199)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/e6159a10b18799b3820a73a86a3d8780.png",
- "joined": "2021-07-06 08:41:18"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 5205,
- "target": 7975,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14802894",
- "username": "015-uk_0002",
- "fullName": "015-UK_0002 (015-uk_0002)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802894/medium/588f892df67fca18b552e5c40980776e.png",
- "joined": "2021-06-24 09:36:29"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 4993,
- "target": 3793,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13962433",
- "username": "ethereum.cn",
- "fullName": "ethereum.cn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962433/medium/6a8b7d48c93a310b833e5f26db2aab4f.jpg",
- "joined": "2019-08-25 21:27:17"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 4901,
- "target": 7663,
- "approved": 0,
- "voted": 97,
- "positiveVotes": 27,
- "negativeVotes": 12,
- "winning": 1915
- },
- {
- "user": {
- "id": "14973471",
- "username": "hugo_ham",
- "fullName": "Hugo Hamaimi (hugo_ham)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973471/medium/e29e9241f0a96e4067f303459381e1d5.png",
- "joined": "2021-10-23 08:49:44"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 4879,
- "target": 5622,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14519338",
- "username": "VKogakis",
- "fullName": "VKogakis",
- "avatarUrl": "https://www.gravatar.com/avatar/ed231874be0072432e1d398c0f96267f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-02 04:42:50"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 4868,
- "target": 5374,
- "approved": 17066,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 4351
- },
- {
- "user": {
- "id": "14837806",
- "username": "yisosd",
- "fullName": "iso Y (yisosd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837806/medium/a024dfd35587ad67921934a9d6c6410e.png",
- "joined": "2021-07-13 07:50:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 4810,
- "target": 7414,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14943437",
- "username": "trungan1511",
- "fullName": "Nguyen An (trungan1511)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943437/medium/03d7b6c2f65c04c60b008a38a221cf5f.png",
- "joined": "2021-10-06 20:28:34"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 4775,
- "target": 7575,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647528",
- "username": "f101431",
- "fullName": "f101431",
- "avatarUrl": "https://www.gravatar.com/avatar/f84c6b598b9012bf922f6ccac4b8c03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 05:52:20"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 4648,
- "target": 4509,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 14,
- "negativeVotes": 1,
- "winning": 3257
- },
- {
- "user": {
- "id": "14665128",
- "username": "Pierlu_be",
- "fullName": "Pierluigi Belpassi (Pierlu_be)",
- "avatarUrl": "https://www.gravatar.com/avatar/b09dd2530fb46b957c0a8c72efb1fc5b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 12:58:35"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 4623,
- "target": 4539,
- "approved": 0,
- "voted": 42,
- "positiveVotes": 17,
- "negativeVotes": 2,
- "winning": 604
- },
- {
- "user": {
- "id": "14891244",
- "username": "vaiahmad",
- "fullName": "Ahmad Rifai (vaiahmad)",
- "avatarUrl": "https://www.gravatar.com/avatar/3d69123493966c573c54413f63909600?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 09:06:37"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 4563,
- "target": 4053,
- "approved": 0,
- "voted": 350,
- "positiveVotes": 51,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14010359",
- "username": "enochmbaebie",
- "fullName": "Chukwuemeka Mbaebie (enochmbaebie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14010359/medium/6009911d59d161eee816cb0694c5b8b7.jpg",
- "joined": "2019-10-11 07:24:05"
- },
- "languages": [
- {
- "id": "ha",
- "name": "Hausa"
- },
- {
- "id": "ig",
- "name": "Igbo"
- }
- ],
- "translated": 4556,
- "target": 4872,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1705
- },
- {
- "user": {
- "id": "14862916",
- "username": "mbolfova",
- "fullName": "mbolfova",
- "avatarUrl": "https://www.gravatar.com/avatar/3d32d7c204254b0149dadc35770f7eaf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 04:22:56"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 4492,
- "target": 3576,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14865328",
- "username": "Lostday",
- "fullName": "Manuel Ignacio Caviedes (Lostday)",
- "avatarUrl": "https://www.gravatar.com/avatar/6654ce365e1d6eae2c3928cd70daede3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 17:04:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 4433,
- "target": 4627,
- "approved": 0,
- "voted": 127,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 879
- },
- {
- "user": {
- "id": "14026881",
- "username": "LQS_FA_linguist",
- "fullName": "LQS_FA_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/0ed7e7989f1998e36a68bc257bec64f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-28 13:07:16"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 4420,
- "target": 5013,
- "approved": 4392,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 10,
- "winning": 4362
- },
- {
- "user": {
- "id": "14953253",
- "username": "biwenming7",
- "fullName": "毕文明 (biwenming7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953253/medium/8c44470b0c9c27bcbf8395dee10b20ff.png",
- "joined": "2021-10-07 04:00:33"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 4405,
- "target": 7174,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14041940",
- "username": "LQS_CS_linguist",
- "fullName": "LQS_CS_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/ee4f2fc9762c71e291da718a14a814ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-26 02:50:46"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 4263,
- "target": 4225,
- "approved": 11277,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4156
- },
- {
- "user": {
- "id": "14039178",
- "username": "sandy_sung",
- "fullName": "sandy_sung",
- "avatarUrl": "https://www.gravatar.com/avatar/7c96f2a8b23f9ee8db66ab0b0fd1c5ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-20 03:13:21"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 4185,
- "target": 5610,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1192
- },
- {
- "user": {
- "id": "15031693",
- "username": "KIP_KIP",
- "fullName": "KIP_KIP",
- "avatarUrl": "https://www.gravatar.com/avatar/940744a530616fa21717679e4178557d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 09:47:51"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 4171,
- "target": 4138,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12673951",
- "username": "LQS_VI_linguist",
- "fullName": "Truc Tran (LQS_VI_linguist)",
- "avatarUrl": "https://www.gravatar.com/avatar/ddd8677c1593059e7cd709b56c0e4161?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-06 23:27:44"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 4081,
- "target": 5868,
- "approved": 9639,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 4076
- },
- {
- "user": {
- "id": "14949555",
- "username": "yuliia_aminieva",
- "fullName": "Yuliia Aminieva (yuliia_aminieva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949555/medium/208c20c213ef41f03769a5be5fdc453c.jpg",
- "joined": "2021-10-05 02:41:49"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 4068,
- "target": 3441,
- "approved": 0,
- "voted": 84,
- "positiveVotes": 252,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14219550",
- "username": "Liang_liang",
- "fullName": "Liang_liang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14219550/medium/a095641e3396148666fb374bd2084728.jpeg",
- "joined": "2020-04-21 22:46:40"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3896,
- "target": 6111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1258
- },
- {
- "user": {
- "id": "14929095",
- "username": "dangchi",
- "fullName": "dangchi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929095/medium/a42410898b37c709ef4d76967a9b97a9.jpg",
- "joined": "2021-09-19 07:35:15"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 3863,
- "target": 5234,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804530",
- "username": "starcoinshine",
- "fullName": "frank wang (starcoinshine)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804530/medium/fd9833454bd05fff797a7ee790477d72.jpg",
- "joined": "2021-06-21 21:52:44"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3847,
- "target": 6142,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1403
- },
- {
- "user": {
- "id": "14643054",
- "username": "izayl",
- "fullName": "izayl",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643054/medium/d6dd01be4478ea8a2c0eb30797ab34cc.jpeg",
- "joined": "2021-05-28 23:42:25"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3842,
- "target": 4242,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 775
- },
- {
- "user": {
- "id": "13483129",
- "username": "matteopey",
- "fullName": "matteopey",
- "avatarUrl": "https://www.gravatar.com/avatar/ed7439b989f1706476071b7071ff7ff0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 09:17:02"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3834,
- "target": 4106,
- "approved": 0,
- "voted": 133,
- "positiveVotes": 204,
- "negativeVotes": 28,
- "winning": 509
- },
- {
- "user": {
- "id": "14550294",
- "username": "jleyendeckeratx",
- "fullName": "Jerry Louis Leyendecker, Living Soul (jleyendeckeratx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14550294/medium/ff2ad6121dcde0784a27d73ddac4077b.jpeg",
- "joined": "2021-10-22 03:53:33"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "gu-IN",
- "name": "Gujarati"
- },
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 3828,
- "target": 3587,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14999231",
- "username": "Slovak01",
- "fullName": "Slovak01",
- "avatarUrl": "https://www.gravatar.com/avatar/b73531365dc50a892ce2f96cdc22e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 11:42:31"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 3804,
- "target": 2969,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917179",
- "username": "reinholland88",
- "fullName": "Reza Al Farizi (reinholland88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917179/medium/92cd0de32c16fea70c7f00c6b3c2c9e4.PNG",
- "joined": "2021-09-10 12:20:11"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3781,
- "target": 3049,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13607408",
- "username": "P1X3L0V4",
- "fullName": "Anna Karpińska (P1X3L0V4)",
- "avatarUrl": "https://www.gravatar.com/avatar/006df509781bf12e7a75c092a2b8d9c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 02:56:14"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 3763,
- "target": 3499,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3819
- },
- {
- "user": {
- "id": "13959135",
- "username": "Jokyash",
- "fullName": "Kaji (Jokyash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959135/medium/94f75079747815393802e1f7d584eafb.jpg",
- "joined": "2019-08-22 07:26:20"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 3761,
- "target": 8533,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 51,
- "negativeVotes": 0,
- "winning": 2236
- },
- {
- "user": {
- "id": "13978963",
- "username": "alexiskefalas",
- "fullName": "Alexis Kefalas (alexiskefalas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978963/medium/fd2dd1fcfdaef0be5f80c40874f675ec.jpeg",
- "joined": "2019-09-10 14:10:28"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 3761,
- "target": 4052,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3469
- },
- {
- "user": {
- "id": "14693434",
- "username": "Mauguano",
- "fullName": "Mauguano",
- "avatarUrl": "https://www.gravatar.com/avatar/7e67f1e07c7db5ba5bb290e405b7b76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 13:33:40"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "br-FR",
- "name": "Breton"
- }
- ],
- "translated": 3740,
- "target": 3819,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 619
- },
- {
- "user": {
- "id": "14949359",
- "username": "anastasia.venhryn",
- "fullName": "Анастасія Венгрин (anastasia.venhryn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949359/medium/37d92ecbcb7a4b31c6fb6ced3b4c346b.jpeg",
- "joined": "2021-10-04 15:58:56"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3692,
- "target": 3151,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907071",
- "username": "HaiTran",
- "fullName": "Đăng Trần Hải (HaiTran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907071/medium/caa03486c3c1a189a0eb0c71a56702b3.png",
- "joined": "2021-09-03 03:32:58"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 3678,
- "target": 5183,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968209",
- "username": "vi_ryb05",
- "fullName": "Vitaliia Rybenchuk (vi_ryb05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968209/medium/02c2aae41308eec65dac12117f9dfc8d.jpg",
- "joined": "2021-10-20 04:24:57"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3670,
- "target": 3134,
- "approved": 0,
- "voted": 103,
- "positiveVotes": 58,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14819294",
- "username": "sekret.tikhon",
- "fullName": "Тихон Секретарев (sekret.tikhon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819294/medium/eba1fc89da13c46a9ab31296200085f5.png",
- "joined": "2021-06-28 16:30:25"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3627,
- "target": 2783,
- "approved": 0,
- "voted": 57,
- "positiveVotes": 14,
- "negativeVotes": 1,
- "winning": 5
- },
- {
- "user": {
- "id": "14024065",
- "username": "LQS_NL_linguist",
- "fullName": "LQS_NL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/5636b253d084ca5b3f4e25b9f18ffcdd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-24 08:35:37"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 3566,
- "target": 3606,
- "approved": 4604,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3375
- },
- {
- "user": {
- "id": "14834276",
- "username": "ElTitoDG",
- "fullName": "Julián Hinojosa Gil (ElTitoDG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png",
- "joined": "2021-07-10 06:14:07"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3497,
- "target": 3455,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 934
- },
- {
- "user": {
- "id": "13965277",
- "username": "eman.herawy",
- "fullName": "Eman Herawy (eman.herawy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13965277/medium/72ad97786d19f2619fc1b273b1a834ee.jpg",
- "joined": "2019-08-28 12:41:39"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 3494,
- "target": 3419,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 822
- },
- {
- "user": {
- "id": "14812492",
- "username": "samuelPapranec",
- "fullName": "Samuel Papranec (samuelPapranec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812492/medium/b30337d97ba9d1f073a090434191e294.jpeg",
- "joined": "2021-06-23 11:03:54"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 3492,
- "target": 2885,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14270636",
- "username": "elijose55",
- "fullName": "Eli Jose (elijose55)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14270636/medium/8c730bd4a4b8b15141241de2b42b1b96.png",
- "joined": "2020-05-23 19:56:50"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3477,
- "target": 3699,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 46,
- "negativeVotes": 0,
- "winning": 2085
- },
- {
- "user": {
- "id": "14514124",
- "username": "ViktorOn",
- "fullName": "Vik (ViktorOn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514124/medium/070d8d1854a62bf318b2dcb1a02052b9.jpeg",
- "joined": "2021-05-13 17:24:52"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3465,
- "target": 2874,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951235",
- "username": "Ana_translator",
- "fullName": "Ana_translator",
- "avatarUrl": "https://www.gravatar.com/avatar/cd57a583744dfe7cb4b1cd19671c5b93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 13:36:23"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3457,
- "target": 3025,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 165,
- "negativeVotes": 13,
- "winning": 0
- },
- {
- "user": {
- "id": "14804410",
- "username": "cartneywong",
- "fullName": "Cartney Wong (cartneywong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804410/medium/cba5413607865ca4efcda74f37ba418c.png",
- "joined": "2021-06-18 10:09:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3421,
- "target": 4332,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1574
- },
- {
- "user": {
- "id": "14593722",
- "username": "vania1366",
- "fullName": "Ivan Fossati (vania1366)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593722/medium/598730e9b33babb13b9d98095c3745ab.jpeg",
- "joined": "2021-01-26 12:13:08"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3393,
- "target": 3565,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 2,
- "winning": 504
- },
- {
- "user": {
- "id": "14687676",
- "username": "joseachemazzei",
- "fullName": "José A. Mazzei (joseachemazzei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg",
- "joined": "2021-03-28 21:04:49"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3362,
- "target": 3808,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 942
- },
- {
- "user": {
- "id": "13979819",
- "username": "petr.eli.cz",
- "fullName": "Petr Eliáš (petr.eli.cz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13979819/medium/acece5759ed12f18bedfd2ef2e5f11fa.jpeg",
- "joined": "2019-10-19 05:02:35"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 3356,
- "target": 3205,
- "approved": 0,
- "voted": 43,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1018
- },
- {
- "user": {
- "id": "14968213",
- "username": "igorivna_263",
- "fullName": "Мар'янка Тарчинська (igorivna_263)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968213/medium/b596e38999691d52c315084a56d60e4f.jpeg",
- "joined": "2021-10-19 09:46:16"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3328,
- "target": 2753,
- "approved": 0,
- "voted": 189,
- "positiveVotes": 176,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "13993811",
- "username": "LQS_ES_linguist",
- "fullName": "LQS_ES_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/81881e0b0c35c44e87398edeee73cd4b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-25 05:30:56"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3310,
- "target": 3759,
- "approved": 4604,
- "voted": 0,
- "positiveVotes": 15,
- "negativeVotes": 1,
- "winning": 3280
- },
- {
- "user": {
- "id": "14553474",
- "username": "donnoh",
- "fullName": "Luca Donno (donnoh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553474/medium/7ba6d6419135cee445a073a5c4277d4a.jpeg",
- "joined": "2020-12-28 08:09:11"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3308,
- "target": 3451,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 603
- },
- {
- "user": {
- "id": "14450042",
- "username": "Roxana_Calderon",
- "fullName": "Roxana_Calderon",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14450042/medium/e15c003f09ec85859808ac43512501c6.png",
- "joined": "2020-10-09 17:21:49"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3306,
- "target": 3680,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 338
- },
- {
- "user": {
- "id": "14965517",
- "username": "Valentyna_Boberska",
- "fullName": "Valentyna_Boberska",
- "avatarUrl": "https://www.gravatar.com/avatar/dd60ddbd850a18319b1f729948633370?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 03:24:09"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3285,
- "target": 2790,
- "approved": 0,
- "voted": 220,
- "positiveVotes": 181,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14678034",
- "username": "khtmn",
- "fullName": "khtmn",
- "avatarUrl": "https://www.gravatar.com/avatar/1440dc97ff736bbf78164794df7fb053?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 01:22:44"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 3227,
- "target": 8128,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 23,
- "negativeVotes": 35,
- "winning": 0
- },
- {
- "user": {
- "id": "14852734",
- "username": "0xEthDuzIt",
- "fullName": "ETHY-E (0xEthDuzIt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852734/medium/da1e9138c30b0fbcfd54f987a7e55328.jpg",
- "joined": "2021-07-25 19:01:51"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 3184,
- "target": 6108,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 80,
- "negativeVotes": 18,
- "winning": 0
- },
- {
- "user": {
- "id": "14730314",
- "username": "miekemouse123",
- "fullName": "miekemouse123",
- "avatarUrl": "https://www.gravatar.com/avatar/f13e090b894e27d422d9e2b74e50837c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 21:33:56"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 3174,
- "target": 2699,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819462",
- "username": "Finlynd",
- "fullName": "iamlynvely (Finlynd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819462/medium/89edd710c81f392464c405551b3fe3d9.jpg",
- "joined": "2021-06-28 23:12:36"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 3162,
- "target": 2317,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690748",
- "username": "penglaishan.cn",
- "fullName": "penglaishan.cn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690748/medium/dd3be098cca6b66915e02147fd6407e7.jpg",
- "joined": "2021-03-30 23:47:06"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3158,
- "target": 4601,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 1187
- },
- {
- "user": {
- "id": "14410848",
- "username": "vanohaa",
- "fullName": "Ivan Bodnariuk (vanohaa)",
- "avatarUrl": "https://www.gravatar.com/avatar/73810f162ad0c27e24731010b1fe8b4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:24:52"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3152,
- "target": 2784,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 47,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714290",
- "username": "Wisnuadity",
- "fullName": "Wisnu Aditya (Wisnuadity)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714290/medium/fbae35aeca0836b0acfa8d9ebebfdcd1.jpg",
- "joined": "2021-07-26 01:46:49"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3127,
- "target": 2752,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 111,
- "negativeVotes": 11,
- "winning": 0
- },
- {
- "user": {
- "id": "14006913",
- "username": "pjgeutjens",
- "fullName": "Pieter Jan Geutjens (pjgeutjens)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14006913/medium/583d19dbd62b786dcf5a3affaf7ad07f.jpeg",
- "joined": "2019-10-09 14:28:42"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 3117,
- "target": 3161,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 738
- },
- {
- "user": {
- "id": "14375988",
- "username": "rajeshkumar757575",
- "fullName": "Rajesh Kumar S (rajeshkumar757575)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14375988/medium/a81f95900709adc13e0a72e0c37ecb70.jpeg",
- "joined": "2020-08-12 07:45:25"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 3093,
- "target": 5597,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951249",
- "username": "Paul_Lelet",
- "fullName": "Pavlo Lelet (Paul_Lelet)",
- "avatarUrl": "https://www.gravatar.com/avatar/07aabb98c3af5848cad5d3b955c8bc04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 12:54:11"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3064,
- "target": 2557,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13964863",
- "username": "LQSreview",
- "fullName": "LQSreview",
- "avatarUrl": "https://www.gravatar.com/avatar/1fc7231d66b0da5d93cb15581154d35c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-28 05:27:53"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 2999,
- "target": 2940,
- "approved": 3761,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2988
- },
- {
- "user": {
- "id": "14982689",
- "username": "Sioux",
- "fullName": "Timothee Manh (Sioux)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982689/medium/fdc76838236e97df852a1fc98077f7d7.jpg",
- "joined": "2021-11-03 06:24:14"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2986,
- "target": 3333,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675630",
- "username": "masha_krolchenko",
- "fullName": "Masha (masha_krolchenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675630/medium/cbabfe3ec01a4c6ac9e5937ac3f690a1.JPG",
- "joined": "2021-03-20 05:38:17"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2985,
- "target": 2631,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 317
- },
- {
- "user": {
- "id": "14888562",
- "username": "FWW",
- "fullName": "Masato FUJII (FWW)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888562/medium/d82ec0de0a39d7f254ce38fc3840d529.png",
- "joined": "2021-08-20 03:50:39"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2971,
- "target": 8641,
- "approved": 0,
- "voted": 33,
- "positiveVotes": 20,
- "negativeVotes": 20,
- "winning": 0
- },
- {
- "user": {
- "id": "14787358",
- "username": "leideribeiro9150",
- "fullName": "leide mariana santos ribeiro (leideribeiro9150)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787358/medium/23937ae5016b2a370875018580c2905b.jpeg",
- "joined": "2021-06-14 13:58:06"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2938,
- "target": 2961,
- "approved": 0,
- "voted": 54,
- "positiveVotes": 33,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14969167",
- "username": "Chenguang",
- "fullName": "Guang Chen (Chenguang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969167/medium/836403c60f29409ef8ca2acc585c8d61.jpeg",
- "joined": "2021-10-19 22:09:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2914,
- "target": 4704,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951291",
- "username": "lutsakolha",
- "fullName": "lutsakolha",
- "avatarUrl": "https://www.gravatar.com/avatar/6d7701c5b56e9fe6a9dd3f0723e48a69?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 13:45:13"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2913,
- "target": 2326,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966927",
- "username": "NastyaK",
- "fullName": "NastyaK",
- "avatarUrl": "https://www.gravatar.com/avatar/d4e2090ed3ffc1a373973b07ee18752c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 10:06:26"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2903,
- "target": 2434,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 84,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631242",
- "username": "kasahiti",
- "fullName": "kasahiti",
- "avatarUrl": "https://www.gravatar.com/avatar/1108aa42304b44e1df76259f4f130ffd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 04:37:24"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2896,
- "target": 2838,
- "approved": 0,
- "voted": 38,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 242
- },
- {
- "user": {
- "id": "14046771",
- "username": "bayd",
- "fullName": "can d (bayd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14046771/medium/64f6ad3254ccf384070bde26cce963a2.jpeg",
- "joined": "2019-12-03 10:24:26"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2891,
- "target": 2644,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 387
- },
- {
- "user": {
- "id": "14951147",
- "username": "ChristinaTomaschuk",
- "fullName": "Christina Tomaschuk (ChristinaTomaschuk)",
- "avatarUrl": "https://www.gravatar.com/avatar/266d65118bfebbf56dec2e3321f2c99b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 11:19:43"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2885,
- "target": 2553,
- "approved": 0,
- "voted": 92,
- "positiveVotes": 64,
- "negativeVotes": 11,
- "winning": 0
- },
- {
- "user": {
- "id": "14179845",
- "username": "FroilanM",
- "fullName": "FroilanM",
- "avatarUrl": "https://www.gravatar.com/avatar/ff8c78e2a23bd56fe26dede8086f2ede?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 03:15:58"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2879,
- "target": 3178,
- "approved": 7013,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2803
- },
- {
- "user": {
- "id": "14050935",
- "username": "LQS_ID_linguist",
- "fullName": "LQS_ID_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/9e25efa0472c314604bdbebac0a9f8af?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-11 08:00:33"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2879,
- "target": 2930,
- "approved": 13733,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 2863
- },
- {
- "user": {
- "id": "14268970",
- "username": "Coinder",
- "fullName": "Coinder",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14268970/medium/480381094f413bb6119d3852fb2c22a8.png",
- "joined": "2020-05-22 14:37:37"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 2852,
- "target": 2885,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14395884",
- "username": "Frodo821",
- "fullName": "frodo821 (Frodo821)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395884/medium/be6488d24fd9f5ff7ac7d461e6cd6758.jpeg",
- "joined": "2021-10-05 18:15:09"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2848,
- "target": 7495,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577256",
- "username": "chem.imp",
- "fullName": "Chem (chem.imp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577256/medium/a0d54ab2947a76ac750b32aab4ad324c.jpeg",
- "joined": "2021-01-14 14:10:53"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 2787,
- "target": 2680,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636118",
- "username": "frontedu",
- "fullName": "frontedu",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636118/medium/d3d3ec3fab34702c4b19674b06e1ddff.png",
- "joined": "2021-02-22 09:10:41"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2779,
- "target": 2924,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 37,
- "negativeVotes": 2,
- "winning": 789
- },
- {
- "user": {
- "id": "14610974",
- "username": "siefca",
- "fullName": "Paweł Wilk (siefca)",
- "avatarUrl": "https://www.gravatar.com/avatar/09605c8aa8a94992806e6982bc79195f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 14:54:19"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 2779,
- "target": 2352,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 37,
- "negativeVotes": 0,
- "winning": 1666
- },
- {
- "user": {
- "id": "14958823",
- "username": "Ugneo",
- "fullName": "Ugneo",
- "avatarUrl": "https://www.gravatar.com/avatar/9c2073afe05dfa6e50845302373be26b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 08:47:51"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 2764,
- "target": 2720,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13991789",
- "username": "hacktar",
- "fullName": "hacktar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13991789/medium/5376e976d7fc676eb5b92f45175e23ac.jpeg",
- "joined": "2019-09-23 03:43:38"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2744,
- "target": 2949,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 761
- },
- {
- "user": {
- "id": "14013247",
- "username": "zoul.dev",
- "fullName": "Pavlo Makarov (zoul.dev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14013247/medium/2dc6b8dada85152cca8cacd239f65933.png",
- "joined": "2019-10-14 08:38:07"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2728,
- "target": 2925,
- "approved": 0,
- "voted": 37,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 58
- },
- {
- "user": {
- "id": "14687376",
- "username": "KlmnZ",
- "fullName": "KlmnZ",
- "avatarUrl": "https://www.gravatar.com/avatar/7e91a8df155651d6b2439ba7bbdf7a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 14:34:34"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2668,
- "target": 2804,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 16,
- "negativeVotes": 0,
- "winning": 896
- },
- {
- "user": {
- "id": "14971357",
- "username": "Vasyl_Yurkuts",
- "fullName": "Vasyl_Yurkuts",
- "avatarUrl": "https://www.gravatar.com/avatar/ae21ee99a161c56ff86e449cd0931e7e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:46:08"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2610,
- "target": 2254,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 121,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884086",
- "username": "491415x",
- "fullName": "Dino Kralj (491415x)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884086/medium/eefd2b974d2e5b296cc406dc3065fba0.png",
- "joined": "2021-08-17 06:03:59"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2566,
- "target": 1994,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "13959951",
- "username": "amchercashin",
- "fullName": "amchercashin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959951/medium/c19cf61cdac1006def518f01829a8980.png",
- "joined": "2019-08-23 02:29:47"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2562,
- "target": 2442,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 555
- },
- {
- "user": {
- "id": "14556868",
- "username": "Toms_Amway",
- "fullName": "Voper Tom (Toms_Amway)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14556868/medium/e73365d23b16289c375cdc7b684c7150.jpeg",
- "joined": "2020-12-30 23:58:32"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2540,
- "target": 3915,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 3,
- "winning": 1463
- },
- {
- "user": {
- "id": "13959227",
- "username": "Hachemih",
- "fullName": "Hachemih",
- "avatarUrl": "https://www.gravatar.com/avatar/161a6484fb9c8e2b3cb0f68aa7090c92?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 09:07:59"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2513,
- "target": 2777,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 199,
- "negativeVotes": 1,
- "winning": 714
- },
- {
- "user": {
- "id": "14864742",
- "username": "samson7125",
- "fullName": "samson7125",
- "avatarUrl": "https://www.gravatar.com/avatar/c27132d583ad290cc5c6e3db6b760069?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 09:10:18"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2510,
- "target": 1978,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14792200",
- "username": "liuxiaotong15",
- "fullName": "liuxiaotong (liuxiaotong15)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792200/medium/651095028597144eac73720a0c320b3d.jpeg",
- "joined": "2021-06-09 04:25:12"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2497,
- "target": 3412,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1206
- },
- {
- "user": {
- "id": "14895934",
- "username": "zajko",
- "fullName": "zajko",
- "avatarUrl": "https://www.gravatar.com/avatar/a8af8789126977526c620c2bd4b70daa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 18:03:51"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2487,
- "target": 2027,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967619",
- "username": "Liliia02",
- "fullName": "Liliia02",
- "avatarUrl": "https://www.gravatar.com/avatar/d92b7d370bc905ed131527729aaf8dfc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 13:38:37"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2484,
- "target": 2134,
- "approved": 0,
- "voted": 62,
- "positiveVotes": 91,
- "negativeVotes": 12,
- "winning": 0
- },
- {
- "user": {
- "id": "14963383",
- "username": "antoniobuttazzo23",
- "fullName": "Antonio Buttazzo (antoniobuttazzo23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963383/medium/0478800a5b79d2b1dbff376396d3758d.png",
- "joined": "2021-10-15 05:32:21"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2477,
- "target": 2652,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968325",
- "username": "Yana07Koval",
- "fullName": "Yana07Koval",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968325/medium/8c553a29e24897c09104eb989c3932da.jpeg",
- "joined": "2021-10-20 07:37:55"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2457,
- "target": 1882,
- "approved": 0,
- "voted": 143,
- "positiveVotes": 140,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553038",
- "username": "philippseifert",
- "fullName": "Philipp Seifert (philippseifert)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553038/medium/57eeff85645c6b316f8fd2338ead7e06.JPG",
- "joined": "2020-12-27 22:33:50"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 2451,
- "target": 2305,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 13,
- "negativeVotes": 1,
- "winning": 1376
- },
- {
- "user": {
- "id": "14551426",
- "username": "sady.souza",
- "fullName": "sady.souza",
- "avatarUrl": "https://www.gravatar.com/avatar/6ef5237fbd889fbc625756d68ad63a5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 15:38:55"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2432,
- "target": 2631,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 708
- },
- {
- "user": {
- "id": "14582998",
- "username": "mondini.marco",
- "fullName": "Marco Mondini (mondini.marco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582998/medium/6fa15c63ec087889a2ca1920905bc9b4.jpeg",
- "joined": "2021-01-18 14:27:18"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2428,
- "target": 2575,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 433
- },
- {
- "user": {
- "id": "13994825",
- "username": "jeffprestes",
- "fullName": "Jeff Prestes (jeffprestes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994825/medium/4a36bab27f88275f96ebbfa37e9fc518.jpeg",
- "joined": "2019-09-26 07:19:19"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2424,
- "target": 2599,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 881
- },
- {
- "user": {
- "id": "14005311",
- "username": "matjaz.verdnik",
- "fullName": "Matjaz Verdnik (matjaz.verdnik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14005311/medium/a78a0fca74ff7b447077bb25c0c17b5a.jpeg",
- "joined": "2019-10-07 01:47:57"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 2411,
- "target": 2314,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 378
- },
- {
- "user": {
- "id": "14942697",
- "username": "cclefjp",
- "fullName": "cclef (cclefjp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942697/medium/f0b6f7427184742914c4e061e485ecf0.jpeg",
- "joined": "2021-09-29 03:25:44"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2403,
- "target": 5127,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802836",
- "username": "Ryeore",
- "fullName": "Ryeore",
- "avatarUrl": "https://www.gravatar.com/avatar/fd23450634472a71b25a23da1ed4b329?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 02:10:37"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 2396,
- "target": 1919,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1036
- },
- {
- "user": {
- "id": "14670984",
- "username": "piaoguangxue",
- "fullName": "Tom Sirius (piaoguangxue)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14670984/medium/649b71541f103c94cfc301f43f06c547.jpeg",
- "joined": "2021-03-20 05:57:39"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2390,
- "target": 3789,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 461
- },
- {
- "user": {
- "id": "18711",
- "username": "NCAA",
- "fullName": "NCAA",
- "avatarUrl": "https://www.gravatar.com/avatar/11ce5effae85ae26135368340cbb32fe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 08:58:38"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 2380,
- "target": 1994,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887772",
- "username": "bruderbuck.eth",
- "fullName": "bruderbuck.eth",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887772/medium/38c9634b12b554feef20f4e9f88bf8c1.png",
- "joined": "2021-08-19 12:12:39"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 2362,
- "target": 2342,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 10,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "15012463",
- "username": "wanna_bee",
- "fullName": "wanna_bee",
- "avatarUrl": "https://www.gravatar.com/avatar/1c94006ffc800b682bcec23252528cdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 19:24:57"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2362,
- "target": 2127,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14594710",
- "username": "nataliab",
- "fullName": "nataliab",
- "avatarUrl": "https://www.gravatar.com/avatar/971af6cb5873875156c3d37c59745fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-26 04:55:40"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2291,
- "target": 2085,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 1112
- },
- {
- "user": {
- "id": "14968423",
- "username": "YuliiaBufan",
- "fullName": "YuliiaBufan",
- "avatarUrl": "https://www.gravatar.com/avatar/2764d7cdb4d94d3facb628364d1c2be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 06:23:27"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2286,
- "target": 2001,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 79,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712154",
- "username": "fivenicerice",
- "fullName": "fivenicerice",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712154/medium/3730e404a7ef0a2e5f76426f84376d53.jpg",
- "joined": "2021-04-14 20:03:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 2260,
- "target": 4128,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14661214",
- "username": "PetraTkalcec",
- "fullName": "PetraTkalcec",
- "avatarUrl": "https://www.gravatar.com/avatar/6c2d298c8225c96c53672f4eeb6988e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 04:09:18"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2228,
- "target": 1872,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 2069
- },
- {
- "user": {
- "id": "14984177",
- "username": "yangxiaoyang",
- "fullName": "yangxiaoyang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984177/medium/b47ea275e28b376850b3ee05c4f709e3.jpg",
- "joined": "2021-10-31 11:56:15"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 2207,
- "target": 1667,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599938",
- "username": "wjy7551376",
- "fullName": "jyfocus (wjy7551376)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599938/medium/7d58c031632657c5866ea32c4477e61b.jpeg",
- "joined": "2021-01-29 07:42:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2199,
- "target": 3438,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 136
- },
- {
- "user": {
- "id": "13959209",
- "username": "Filtertron",
- "fullName": "Jean Zundel (Filtertron)",
- "avatarUrl": "https://www.gravatar.com/avatar/1cbc889d0c73021eb6848405250cace1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 08:46:31"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2186,
- "target": 2527,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 66,
- "negativeVotes": 0,
- "winning": 965
- },
- {
- "user": {
- "id": "14949373",
- "username": "s_yuzva",
- "fullName": "Solomia Yuzva (s_yuzva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949373/medium/d4c3f633842279994b178a207831025d.jpg",
- "joined": "2021-10-05 09:40:53"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2162,
- "target": 1904,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800588",
- "username": "CarolinaFilipe",
- "fullName": "CarolinaFilipe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800588/medium/d8be152e1a3b5e6fbe43fadfe904a737.jpeg",
- "joined": "2021-06-15 11:17:37"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 2141,
- "target": 2284,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546284",
- "username": "ladidan",
- "fullName": "ladidan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546284/medium/3fed287323fd3ced8bb2e80624f9bc6f.png",
- "joined": "2020-12-22 09:51:25"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 2066,
- "target": 2251,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 110
- },
- {
- "user": {
- "id": "14029082",
- "username": "LQS_IGBO_linguist",
- "fullName": "LQS_IGBO_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/88301d908987bdfcb8110c8d69cff169?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-01 13:40:47"
- },
- "languages": [
- {
- "id": "ig",
- "name": "Igbo"
- }
- ],
- "translated": 2061,
- "target": 2392,
- "approved": 2294,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2060
- },
- {
- "user": {
- "id": "14727038",
- "username": "agolautner",
- "fullName": "agolautner",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727038/medium/4150668cd11c03c029aeaaa44409248e.png",
- "joined": "2021-04-26 05:47:12"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 2057,
- "target": 1544,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1735
- },
- {
- "user": {
- "id": "14751138",
- "username": "cryptohakka",
- "fullName": "hakka (cryptohakka)",
- "avatarUrl": "https://www.gravatar.com/avatar/67c7ea6eb6029a188b2757333abdf96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 10:25:28"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2055,
- "target": 5191,
- "approved": 0,
- "voted": 56,
- "positiveVotes": 16,
- "negativeVotes": 13,
- "winning": 607
- },
- {
- "user": {
- "id": "14623758",
- "username": "Vinaxe",
- "fullName": "Vinaxe",
- "avatarUrl": "https://www.gravatar.com/avatar/b499429ae0ffe9d4932ffb2ab0945bf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-14 06:01:58"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2030,
- "target": 2144,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 532
- },
- {
- "user": {
- "id": "14815414",
- "username": "KoelhoSec",
- "fullName": "Bruno Coelho (KoelhoSec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815414/medium/cc746b15dd6d2fa3bc01369caaef44ed.png",
- "joined": "2021-06-30 07:07:16"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2022,
- "target": 2130,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547948",
- "username": "sonja.richter89",
- "fullName": "Sonja Ri (sonja.richter89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547948/medium/7b4873057f37d4a3bc90b1f338a9362c.PNG",
- "joined": "2020-12-27 07:17:02"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 2017,
- "target": 2124,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 481
- },
- {
- "user": {
- "id": "14604868",
- "username": "ctx2012",
- "fullName": "Adam Adamowicz (ctx2012)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604868/medium/c6b287b0f1d173faedce0806420fc57b.jpeg",
- "joined": "2021-02-01 17:49:28"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 2007,
- "target": 1786,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 51,
- "negativeVotes": 1,
- "winning": 1139
- },
- {
- "user": {
- "id": "14339720",
- "username": "eltonbsousa",
- "fullName": "Elton Sousa (eltonbsousa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14339720/medium/bc7ec6601a6f1d6e011eb064d31520dc.jpg",
- "joined": "2020-08-06 22:26:35"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2005,
- "target": 2160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 1593
- },
- {
- "user": {
- "id": "15028671",
- "username": "folo2010",
- "fullName": "Vladimir Alexandrovich (folo2010)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028671/medium/ba01b8798dfc582c1878e173533aeae3.jpg",
- "joined": "2021-11-24 01:47:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2005,
- "target": 1678,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750044",
- "username": "eloise.emery",
- "fullName": "Éloïse Emery (eloise.emery)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750044/medium/9e793da12e9905e4598d0e0a2e191289.jpeg",
- "joined": "2021-05-10 19:54:36"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1991,
- "target": 1975,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 162
- },
- {
- "user": {
- "id": "14949549",
- "username": "SoniaKobryn_",
- "fullName": "SoniaKobryn_",
- "avatarUrl": "https://www.gravatar.com/avatar/d9e7edeec8255fe522c51d7b4778ce47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 13:03:04"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1984,
- "target": 1737,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 19,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987791",
- "username": "xefert",
- "fullName": "xefert",
- "avatarUrl": "https://www.gravatar.com/avatar/6a068cdf2e1768eeb6467c8ff06582d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 17:43:35"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1978,
- "target": 2345,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027913",
- "username": "lopezi",
- "fullName": "Nuno Lopes (lopezi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027913/medium/2adaffec100d7d6b3135442363319ea4.jpeg",
- "joined": "2019-10-30 11:54:25"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 1969,
- "target": 2057,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 130
- },
- {
- "user": {
- "id": "14794760",
- "username": "ignv",
- "fullName": "Ignacio Viggiani (ignv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794760/medium/2059ce788a83774e10a1ed6de1bf27ab.jpeg",
- "joined": "2021-06-10 19:39:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1957,
- "target": 1676,
- "approved": 0,
- "voted": 36,
- "positiveVotes": 24,
- "negativeVotes": 3,
- "winning": 647
- },
- {
- "user": {
- "id": "14949241",
- "username": "victorialiashuk",
- "fullName": "Вікторія Ляшук (victorialiashuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949241/medium/bc0802deb7a44714c47c0fedfc4d9086.png",
- "joined": "2021-10-04 11:46:16"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1944,
- "target": 1729,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 84,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715690",
- "username": "chrischengdzonglee",
- "fullName": "Nru Dzong (chrischengdzonglee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715690/medium/b16e71c8140694d52d36a746d33d78d7.jpeg",
- "joined": "2021-04-17 11:55:43"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 1936,
- "target": 3075,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 276
- },
- {
- "user": {
- "id": "14673942",
- "username": "ajacobsen",
- "fullName": "ajacobsen",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673942/medium/636c094dfc0580dd8d09d0f30cca33c8.jpg",
- "joined": "2021-03-18 22:57:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1935,
- "target": 1819,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 99
- },
- {
- "user": {
- "id": "12682536",
- "username": "Lulucmy",
- "fullName": "Lulucmy",
- "avatarUrl": "https://www.gravatar.com/avatar/3994e4ec5a07df9f43acb68f5c0e179f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 09:56:08"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1919,
- "target": 2149,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 59,
- "negativeVotes": 18,
- "winning": 26
- },
- {
- "user": {
- "id": "14971241",
- "username": "Evanilson98",
- "fullName": "Evanilson98",
- "avatarUrl": "https://www.gravatar.com/avatar/a68a1b6419e2a237b1cb00b21bd179b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-21 09:44:32"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 1904,
- "target": 1994,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14769148",
- "username": "tomonakar",
- "fullName": "Tomonakar (tomonakar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769148/medium/d22038e0d5ec47fc64ef9167da382c81.png",
- "joined": "2021-05-23 05:51:29"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1903,
- "target": 4751,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 9,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14704668",
- "username": "phrobinet",
- "fullName": "phrobinet",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704668/medium/f456203d0a45823ded3c364a95f57f3e.jpeg",
- "joined": "2021-04-19 06:03:34"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1869,
- "target": 1885,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "14584972",
- "username": "EnsarYusuf",
- "fullName": "Ensar Yusuf YILMAZ (EnsarYusuf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584972/medium/c24e039f3f95bea52a0f8742c23615c6.png",
- "joined": "2021-04-06 17:00:24"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1860,
- "target": 1706,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1173
- },
- {
- "user": {
- "id": "14968331",
- "username": "Ripa_Khrystyna01",
- "fullName": "Khrystyna Ripa (Ripa_Khrystyna01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968331/medium/e3b844b6bc7859c29a20d4b21bcd251c.jpeg",
- "joined": "2021-10-20 11:13:32"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1837,
- "target": 1577,
- "approved": 0,
- "voted": 150,
- "positiveVotes": 141,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868458",
- "username": "EiriniGearkidou",
- "fullName": "Eirini Gerakidou (EiriniGearkidou)",
- "avatarUrl": "https://www.gravatar.com/avatar/0473f289979b00a0ee2670e7337eabb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 03:40:05"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "eo",
- "name": "Esperanto"
- }
- ],
- "translated": 1820,
- "target": 1977,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14952323",
- "username": "Yakimchukt",
- "fullName": "Kate Yakymchuk (Yakimchukt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952323/medium/c59a0a6e58dd69b71e545016ee487d22.jpeg",
- "joined": "2021-10-07 13:52:14"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1815,
- "target": 1557,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13975691",
- "username": "samajammin",
- "fullName": "Sam Richards (samajammin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13975691/medium/3e46a11d03a06145d4fadc5cecc54b4c.jpeg",
- "joined": "2019-09-07 15:30:16"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "bg",
- "name": "Bulgarian"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "ko",
- "name": "Korean"
- },
- {
- "id": "lt",
- "name": "Lithuanian"
- },
- {
- "id": "nl",
- "name": "Dutch"
- },
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sk",
- "name": "Slovak"
- },
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "th",
- "name": "Thai"
- },
- {
- "id": "hi",
- "name": "Hindi"
- },
- {
- "id": "te",
- "name": "Telugu"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- },
- {
- "id": "ru-UA",
- "name": "Russian, Ukraine"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- },
- {
- "id": "ig",
- "name": "Igbo"
- },
- {
- "id": "yo",
- "name": "Yoruba"
- },
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 1802,
- "target": 1967,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 2,
- "winning": 683
- },
- {
- "user": {
- "id": "14791370",
- "username": "williamx",
- "fullName": "williamx",
- "avatarUrl": "https://www.gravatar.com/avatar/4eb4b1506023a58feece224f73949a43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 12:34:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1800,
- "target": 1878,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 29,
- "negativeVotes": 4,
- "winning": 525
- },
- {
- "user": {
- "id": "14828792",
- "username": "rioobudi",
- "fullName": "Aryo Pambudi (rioobudi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828792/medium/f69fd14bd2aa648696bac9e1eab3f927.jpeg",
- "joined": "2021-07-06 03:12:09"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1777,
- "target": 1695,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 60,
- "negativeVotes": 11,
- "winning": 0
- },
- {
- "user": {
- "id": "14733026",
- "username": "iborba",
- "fullName": "Israel Machado de Borba (iborba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733026/medium/ffb6aa67fea863e4898aa8a6e5c69e87.jpeg",
- "joined": "2021-04-30 10:52:10"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1775,
- "target": 1720,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 73,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14697378",
- "username": "raxveil",
- "fullName": "raxveil",
- "avatarUrl": "https://www.gravatar.com/avatar/bb6d2c3e9e7661448365f2cf3d739e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-04 16:25:11"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1718,
- "target": 1375,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 506
- },
- {
- "user": {
- "id": "14076463",
- "username": "EceBelgin",
- "fullName": "EceBelgin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14076463/medium/0f9f99426f4b3be4a7b50b719686556d.png",
- "joined": "2020-01-14 15:02:12"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1716,
- "target": 1719,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 2,
- "winning": 646
- },
- {
- "user": {
- "id": "14958659",
- "username": "rhswe",
- "fullName": "rhswe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958659/medium/8c1b0ec38bcb7f3fa9041e918949c5c8.jpg",
- "joined": "2021-10-11 13:35:25"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 1711,
- "target": 1671,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903047",
- "username": "hunryu",
- "fullName": "Hun Ryu (hunryu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903047/medium/6a9d0bbe46a24533019f33bee254b265.jpg",
- "joined": "2019-07-02 02:59:01"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1706,
- "target": 1503,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 2,
- "winning": 1313
- },
- {
- "user": {
- "id": "14950579",
- "username": "r1ngetsu",
- "fullName": "r1ngetsu",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950579/medium/e82f10a8d70c5bac37522b8ff1100ab8.png",
- "joined": "2021-10-05 04:21:17"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1689,
- "target": 1323,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 59,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13959933",
- "username": "gabririgo",
- "fullName": "gabririgo",
- "avatarUrl": "https://www.gravatar.com/avatar/01c68c406b8aa7925f73841aef24fe9d?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 01:41:35"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1685,
- "target": 1788,
- "approved": 0,
- "voted": 266,
- "positiveVotes": 63,
- "negativeVotes": 0,
- "winning": 109
- },
- {
- "user": {
- "id": "14846010",
- "username": "mfreeman59",
- "fullName": "Kengo,MATSUDA (mfreeman59)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846010/medium/efddb08fc8f1affe72a25cf693c1f947.jpeg",
- "joined": "2021-07-19 21:57:51"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1676,
- "target": 4412,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14698060",
- "username": "AbrahamYusuf",
- "fullName": "Abraham Yusuf (AbrahamYusuf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698060/medium/1bf8fb6a51e2a7684bb25b8a868d7204.png",
- "joined": "2021-04-05 05:24:48"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1669,
- "target": 1402,
- "approved": 0,
- "voted": 43,
- "positiveVotes": 39,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14580234",
- "username": "mouneer",
- "fullName": "mouneer",
- "avatarUrl": "https://www.gravatar.com/avatar/003a97f237eb7d3e3a88c2ef122062ef?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 15:48:51"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1653,
- "target": 1696,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 99
- },
- {
- "user": {
- "id": "14784198",
- "username": "Rojojue",
- "fullName": "Rojojue",
- "avatarUrl": "https://www.gravatar.com/avatar/4c2a031d6833806ff9578eacd213b471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 05:08:30"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1652,
- "target": 1459,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623800",
- "username": "ktachiya",
- "fullName": "Ken Tachiya (ktachiya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623800/medium/905b0878ef4d470f2ea237044f070df7.jpeg",
- "joined": "2021-02-14 07:06:17"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1649,
- "target": 4189,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 40,
- "negativeVotes": 22,
- "winning": 0
- },
- {
- "user": {
- "id": "13902877",
- "username": "wanseob",
- "fullName": "Wanseob Lim (wanseob)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13902877/medium/1f83176d2935849b5c4a30ef03cee94b.jpg",
- "joined": "2019-07-01 23:06:35"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1648,
- "target": 1568,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 626
- },
- {
- "user": {
- "id": "14760114",
- "username": "keinstn",
- "fullName": "keinstn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760114/medium/5b3fa243c923f93b7a7c7560a00b69cc.jpeg",
- "joined": "2021-05-16 21:23:50"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1648,
- "target": 3334,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 34,
- "negativeVotes": 30,
- "winning": 6
- },
- {
- "user": {
- "id": "14086827",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c53f0cf95ed195278cfe72a15f88f591?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-23 09:12:10"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1646,
- "target": 1814,
- "approved": 0,
- "voted": 192,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 191
- },
- {
- "user": {
- "id": "14571296",
- "username": "JurJr",
- "fullName": "Jurandi Novais Júnior (JurJr)",
- "avatarUrl": "https://www.gravatar.com/avatar/761c088f9674200e9b8066e16c79ca5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 15:36:00"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 1641,
- "target": 1727,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14897770",
- "username": "0xmike7",
- "fullName": "0xmike7",
- "avatarUrl": "https://www.gravatar.com/avatar/e1316d7734c2eb6961aac5d35ad9aabe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 03:10:27"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 1585,
- "target": 1629,
- "approved": 0,
- "voted": 18,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564426",
- "username": "bschorchit",
- "fullName": "Bárbara Schorchit (bschorchit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564426/medium/85aa92771b96f81e3a10f1580a58e799.jpeg",
- "joined": "2021-01-05 19:28:33"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1576,
- "target": 1760,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 22,
- "negativeVotes": 0,
- "winning": 501
- },
- {
- "user": {
- "id": "14659526",
- "username": "o7__o7",
- "fullName": "o7__o7",
- "avatarUrl": "https://www.gravatar.com/avatar/823385d0a4c6221b07ebb09440d38160?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 00:30:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1576,
- "target": 1431,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 509
- },
- {
- "user": {
- "id": "14733806",
- "username": "PlutoXI",
- "fullName": "Pluto (PlutoXI)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733806/medium/e09f8d8ae5c644cb039288e6af0a18cf.jpeg",
- "joined": "2021-05-01 03:22:27"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1570,
- "target": 1407,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 364
- },
- {
- "user": {
- "id": "14896794",
- "username": "Paulchemouni",
- "fullName": "Paul Chemouni (Paulchemouni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896794/medium/7c6117fe2c7fda4e2d5cc0c089d1d9e4.jpeg",
- "joined": "2021-08-26 09:30:05"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1559,
- "target": 1664,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968755",
- "username": "Oksana_Dunevych",
- "fullName": "Oksana_Dunevych",
- "avatarUrl": "https://www.gravatar.com/avatar/e5a8792ff0e233ead9ba070f5ebe67b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 10:20:09"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1557,
- "target": 1291,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263850",
- "username": "pswu11",
- "fullName": "pswu11",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263850/medium/05b1fe1f2abb5fd9c1b072e25a152aa1.jpg",
- "joined": "2020-05-19 10:25:25"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 1545,
- "target": 2484,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 788
- },
- {
- "user": {
- "id": "13959409",
- "username": "Crnls",
- "fullName": "Cornelius Ihle (Crnls)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959409/medium/6dd1d0fc14e003674c159aa9e911c4cb.jpg",
- "joined": "2019-08-22 11:56:02"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1526,
- "target": 1511,
- "approved": 0,
- "voted": 271,
- "positiveVotes": 84,
- "negativeVotes": 5,
- "winning": 182
- },
- {
- "user": {
- "id": "14594750",
- "username": "g1usy_joey",
- "fullName": "g1usy_joey",
- "avatarUrl": "https://www.gravatar.com/avatar/f2c301b06860d7978eb52033b947c76a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-26 07:28:58"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1510,
- "target": 1495,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 254
- },
- {
- "user": {
- "id": "15028385",
- "username": "oriolbcn",
- "fullName": "oriolbcn",
- "avatarUrl": "https://www.gravatar.com/avatar/c832775578714077b8e76c46d57276f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 19:02:25"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 1504,
- "target": 1726,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956479",
- "username": "akais315",
- "fullName": "Anthony Kaiser (akais315)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956479/medium/342153a6e0540337ea2efae82b1b98d4.png",
- "joined": "2021-10-09 18:02:15"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1496,
- "target": 1732,
- "approved": 0,
- "voted": 49,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837284",
- "username": "PaN-0-1",
- "fullName": "PaN-0-1",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837284/medium/7f1ad04832bb028fe66564804f5326ee.png",
- "joined": "2021-07-12 21:27:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1492,
- "target": 1489,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13993311",
- "username": "LQS_SK_linguist",
- "fullName": "LQS_SK_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/db387e60ee7f7fb7ab959a256137f551?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 15:12:29"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 1485,
- "target": 1451,
- "approved": 3857,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 1484
- },
- {
- "user": {
- "id": "14956243",
- "username": "Troyracer",
- "fullName": "Troyracer",
- "avatarUrl": "https://www.gravatar.com/avatar/f4543ec9465b3f1d1077e8cceb65a933?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-09 13:06:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1478,
- "target": 1671,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 10,
- "negativeVotes": 1,
- "winning": 350
- },
- {
- "user": {
- "id": "14454330",
- "username": "ahteewat123",
- "fullName": "Athiwat Klauythong (ahteewat123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14454330/medium/7b3646170a6320e44583d59e738f0db9.jpeg",
- "joined": "2020-10-13 03:53:24"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 1473,
- "target": 973,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796574",
- "username": "EthBasti",
- "fullName": "EthBasti",
- "avatarUrl": "https://www.gravatar.com/avatar/7a6732a86f7c1ccb5433213069d82c29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 07:39:33"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1457,
- "target": 1223,
- "approved": 0,
- "voted": 85,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14949231",
- "username": "khrystynaboitsun",
- "fullName": "khrystynaboitsun",
- "avatarUrl": "https://www.gravatar.com/avatar/3b995766e290dc6b35a2a18caa166394?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 13:20:58"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1457,
- "target": 1211,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 143,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14759220",
- "username": "arturlesniewski",
- "fullName": "Artur Leśniewski (arturlesniewski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759220/medium/ce0dfc426c882d10a157bb152afe3a16.png",
- "joined": "2021-05-16 07:03:04"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1451,
- "target": 1262,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 829
- },
- {
- "user": {
- "id": "12646942",
- "username": "polhenarejos",
- "fullName": "Pol Henarejos (polhenarejos)",
- "avatarUrl": "https://www.gravatar.com/avatar/06188d13a0a5f26e95a6136d18bde4a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-23 07:03:07"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1449,
- "target": 1566,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 162
- },
- {
- "user": {
- "id": "14005383",
- "username": "dTilen",
- "fullName": "Tilen Držan (dTilen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14005383/medium/bec643ba44c64e50df99683bab7f3efc.png",
- "joined": "2019-10-07 04:10:23"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 1449,
- "target": 1387,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 234
- },
- {
- "user": {
- "id": "14558188",
- "username": "crypto.scout.ita",
- "fullName": "Crypto Scout (crypto.scout.ita)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558188/medium/20deedb6f30a90a346f62cd892d22330.jpeg",
- "joined": "2021-01-01 07:35:03"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1447,
- "target": 1550,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 311
- },
- {
- "user": {
- "id": "14689660",
- "username": "SalvadorC",
- "fullName": "SalvadorC",
- "avatarUrl": "https://www.gravatar.com/avatar/8e96e3eccbbc48619793286ed5f08c2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 05:58:48"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 1440,
- "target": 1554,
- "approved": 0,
- "voted": 27,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14077417",
- "username": "cyreum",
- "fullName": "cyreum",
- "avatarUrl": "https://www.gravatar.com/avatar/8edb42a60b6a4511b662dba5c8d7af1a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-15 10:28:41"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1429,
- "target": 1313,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 587
- },
- {
- "user": {
- "id": "14726400",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/a3c8b6df152674573f363cd65e8acd8d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 15:45:22"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1423,
- "target": 1355,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 314
- },
- {
- "user": {
- "id": "14916229",
- "username": "yannfurrer33",
- "fullName": "Yann Furrer (yannfurrer33)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916229/medium/ef270c9207fc2731c23a32a1765629a1.png",
- "joined": "2021-09-09 19:53:07"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1419,
- "target": 1396,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14119193",
- "username": "zc_elephant",
- "fullName": "zhangchao (zc_elephant)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14119193/medium/d69b7d9169f3f903cd3da7b36a4955de.jpeg",
- "joined": "2020-02-14 21:08:31"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1417,
- "target": 2348,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 545
- },
- {
- "user": {
- "id": "14564174",
- "username": "lch5490",
- "fullName": "임치헌 (lch5490)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564174/medium/b8e4fee1f0c81e8ad49b606df8b07208.jpeg",
- "joined": "2021-01-05 15:19:43"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1408,
- "target": 1144,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 14,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630992",
- "username": "YeiOz",
- "fullName": "Yeison Ospino (YeiOz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630992/medium/5b635093aa84e77f956aba430141b90b.jpeg",
- "joined": "2021-02-19 01:10:10"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1403,
- "target": 1400,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 6,
- "winning": 672
- },
- {
- "user": {
- "id": "14568328",
- "username": "tn_q2",
- "fullName": "tn_q2",
- "avatarUrl": "https://www.gravatar.com/avatar/dde07d45133db02c1192b8b2a972a225?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 12:52:23"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1396,
- "target": 1564,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 316
- },
- {
- "user": {
- "id": "15023979",
- "username": "moirauche",
- "fullName": "moirauche",
- "avatarUrl": "https://www.gravatar.com/avatar/10382b9429b35bf72d096b02d923c250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 09:51:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1389,
- "target": 1474,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730600",
- "username": "Datenshi",
- "fullName": "Datenshi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730600/medium/562d4270c70922086fe1ce42f079e984.jpg",
- "joined": "2021-04-28 20:22:19"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1349,
- "target": 1160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 39,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14070193",
- "username": "ahmedcoe",
- "fullName": "Ahmed Alutaibi (ahmedcoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14070193/medium/b750710f4770c698f87958f3af233ff1.jpeg",
- "joined": "2020-01-09 11:16:56"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1327,
- "target": 1181,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 433
- },
- {
- "user": {
- "id": "14631802",
- "username": "edgargrau",
- "fullName": "eDgar gRau (edgargrau)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg",
- "joined": "2021-02-19 11:18:47"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1327,
- "target": 1384,
- "approved": 0,
- "voted": 131,
- "positiveVotes": 25,
- "negativeVotes": 2,
- "winning": 194
- },
- {
- "user": {
- "id": "14750098",
- "username": "eastudy1017",
- "fullName": "신동학 (eastudy1017)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750098/medium/265a5f8f4bc4cc63b8bf05a2d32e36f4.png",
- "joined": "2021-05-10 21:18:57"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1318,
- "target": 845,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842386",
- "username": "rxchard",
- "fullName": "Richard (rxchard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842386/medium/26d2e5d1d9b5f0e6ec25878feb24840b.jpeg",
- "joined": "2021-07-16 16:58:31"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1318,
- "target": 1221,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659020",
- "username": "DanielTaqueto",
- "fullName": "DanielTaqueto",
- "avatarUrl": "https://www.gravatar.com/avatar/2378cc044fca7bcd0a7199b9cbf5f3e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 14:05:00"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1317,
- "target": 1242,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 99,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14622230",
- "username": "rustik.zero94",
- "fullName": "Рустик Базаров (rustik.zero94)",
- "avatarUrl": "https://www.gravatar.com/avatar/1fc615de9f86f6972ad75abfe489ed67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 00:37:55"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1313,
- "target": 1160,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 549
- },
- {
- "user": {
- "id": "14809786",
- "username": "th851dan",
- "fullName": "Đặng Sơn (th851dan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809786/medium/9f51944f586e5ea82248a2fdc6b75265.png",
- "joined": "2021-06-21 11:29:30"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 1312,
- "target": 1766,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 7,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14657558",
- "username": "ravalsta",
- "fullName": "ravalsta",
- "avatarUrl": "https://www.gravatar.com/avatar/1ada6897e49ea580b390abf58cbad551?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 14:21:47"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1305,
- "target": 1159,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 14,
- "negativeVotes": 0,
- "winning": 999
- },
- {
- "user": {
- "id": "14937735",
- "username": "ilonaternovych",
- "fullName": "Ілона Тернович (ilonaternovych)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937735/medium/4121baba80985301f8e6d1ba5c829a6c.jpg",
- "joined": "2021-10-25 07:49:24"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1293,
- "target": 1156,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984219",
- "username": "James100",
- "fullName": "James100",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984219/medium/170c2a833d512d43190723fab37cb527.jpg",
- "joined": "2021-10-31 12:37:03"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "my",
- "name": "Burmese"
- }
- ],
- "translated": 1285,
- "target": 2582,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14086443",
- "username": "rak810",
- "fullName": "rak810",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14086443/medium/39269b4f7301c0e4b2ddb56fa91b7b24.png",
- "joined": "2020-01-23 03:17:27"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "eo",
- "name": "Esperanto"
- }
- ],
- "translated": 1282,
- "target": 2515,
- "approved": 0,
- "voted": 30,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14786554",
- "username": "themorit",
- "fullName": "Sami H. (themorit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786554/medium/3e41ddf73b067709e17114acc3057c3d.jpg",
- "joined": "2021-06-04 19:21:42"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1263,
- "target": 1156,
- "approved": 0,
- "voted": 41,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 108
- },
- {
- "user": {
- "id": "14805280",
- "username": "EckoZhang",
- "fullName": "Mengjia Zhang (EckoZhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805280/medium/a294008196ce6b1800aa175fc7112ad0.jpeg",
- "joined": "2021-06-18 09:53:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1258,
- "target": 1728,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 603
- },
- {
- "user": {
- "id": "14686790",
- "username": "Horus267",
- "fullName": "Horus267",
- "avatarUrl": "https://www.gravatar.com/avatar/0bd0c0622bb6a73c0650ed0f8196df99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 05:38:22"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1253,
- "target": 1049,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14251480",
- "username": "kate_oren",
- "fullName": "kate_oren",
- "avatarUrl": "https://www.gravatar.com/avatar/2c49f2fa25bb1e26d4a542f8c9c72436?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-11 11:15:43"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1252,
- "target": 1177,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13306330",
- "username": "Predatorix",
- "fullName": "Predatorix",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13306330/medium/3f9fa5756d0e506fae6e0c6ada57cfba.png",
- "joined": "2021-06-14 17:54:42"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1250,
- "target": 1112,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950947",
- "username": "suslenskaya19",
- "fullName": "suslenskaya19",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950947/medium/fa36c8a3dfb13be9af009f92644e8cd9.jpeg",
- "joined": "2021-10-05 17:40:23"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1248,
- "target": 1073,
- "approved": 0,
- "voted": 77,
- "positiveVotes": 79,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14424588",
- "username": "crowdsourcekurdi",
- "fullName": "Crowdsource Kurdish (crowdsourcekurdi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14424588/medium/f5640057ffa61f6c90deb847b4c2b622.jpeg",
- "joined": "2021-09-29 04:00:18"
- },
- "languages": [
- {
- "id": "ku",
- "name": "Kurdish"
- }
- ],
- "translated": 1239,
- "target": 1208,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968267",
- "username": "Dekicrypto",
- "fullName": "Hideki Kanazawa (Dekicrypto)",
- "avatarUrl": "https://www.gravatar.com/avatar/27f054c2f49a9bd452ec71b6e24364c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 07:34:44"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1237,
- "target": 3287,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959651",
- "username": "bettinabf",
- "fullName": "bettinabf",
- "avatarUrl": "https://www.gravatar.com/avatar/bdb17aa599969672335422360cbeb86b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 16:22:02"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1235,
- "target": 1401,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 116
- },
- {
- "user": {
- "id": "14956337",
- "username": "lidianycs",
- "fullName": "lidianycs",
- "avatarUrl": "https://www.gravatar.com/avatar/365d64ac7604ada9ad69e96374a5d6a2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-09 14:45:41"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1224,
- "target": 1285,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 39,
- "negativeVotes": 0,
- "winning": 178
- },
- {
- "user": {
- "id": "14481500",
- "username": "Diana1941",
- "fullName": "Diana1941",
- "avatarUrl": "https://www.gravatar.com/avatar/0bf123a83b3e58235bcbc4f2dae13aab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 11:49:15"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1219,
- "target": 1192,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14628426",
- "username": "Nif0",
- "fullName": "Nif0",
- "avatarUrl": "https://www.gravatar.com/avatar/87947ee2deff057405bb3690b537ba24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 07:44:09"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1218,
- "target": 888,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 75
- },
- {
- "user": {
- "id": "14895552",
- "username": "tutkun123",
- "fullName": "tutkun123",
- "avatarUrl": "https://www.gravatar.com/avatar/f3ea21ea1a9e2d03dc444f6a834df729?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 11:54:34"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 1217,
- "target": 1019,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035842",
- "username": "bing.galaxy05",
- "fullName": "galaxy bing (bing.galaxy05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035842/medium/7746e9de99ca0c7bb61db920ed027dde.png",
- "joined": "2019-11-13 21:52:48"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 1217,
- "target": 580,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14402352",
- "username": "winkybupt",
- "fullName": "winkybupt",
- "avatarUrl": "https://www.gravatar.com/avatar/f8437629a6bbe3dba71dee7eb19a2bbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 11:56:16"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1212,
- "target": 1671,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 420
- },
- {
- "user": {
- "id": "14838794",
- "username": "JuanB.Mont",
- "fullName": "JuanB.Mont",
- "avatarUrl": "https://www.gravatar.com/avatar/96849b7ff7bc62a4f1c9bebbcfebd42e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 02:20:54"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1212,
- "target": 1090,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 187
- },
- {
- "user": {
- "id": "14566754",
- "username": "asatzger",
- "fullName": "Armin Satzger (asatzger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566754/medium/788107353be234330a4067d7a51b7499.jpg",
- "joined": "2021-01-07 10:11:25"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1206,
- "target": 1181,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 441
- },
- {
- "user": {
- "id": "14587890",
- "username": "Elikill58",
- "fullName": "Elikill58",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587890/medium/1d5b3a9de8a7b7f6082357f1fe99d654.jpeg",
- "joined": "2021-01-21 12:06:22"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1203,
- "target": 1388,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 26,
- "negativeVotes": 4,
- "winning": 676
- },
- {
- "user": {
- "id": "13396896",
- "username": "xdt322",
- "fullName": "Andre Fuentes (xdt322)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13396896/medium/e1b1ff721de1da9afe469cfaa28e6cb3.jpg",
- "joined": "2019-09-17 13:30:05"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1199,
- "target": 1241,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 376
- },
- {
- "user": {
- "id": "13903111",
- "username": "philnshoo",
- "fullName": "Sangphil Kim (philnshoo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903111/medium/48315081e91573a7ac2f784e04651cbc.png",
- "joined": "2019-07-02 03:40:22"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1188,
- "target": 1143,
- "approved": 0,
- "voted": 33,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 290
- },
- {
- "user": {
- "id": "14907607",
- "username": "dqduong102",
- "fullName": "Quốc Dương Đàng (dqduong102)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907607/medium/4f8e413bd85cd3aabc332c49bab08fae.jpeg",
- "joined": "2021-09-03 10:19:26"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 1186,
- "target": 1678,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "12759752",
- "username": "seppewyns",
- "fullName": "Seppe (seppewyns)",
- "avatarUrl": "https://www.gravatar.com/avatar/4ceda449ddbb73e2b42b6bb0a63dcdbb?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-01 11:49:48"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 1179,
- "target": 1218,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 43
- },
- {
- "user": {
- "id": "14999587",
- "username": "muratgozel",
- "fullName": "Murat Gözel (muratgozel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999587/medium/e65a2434011d9519ff52ade683b53b8c.jpeg",
- "joined": "2021-11-11 17:15:04"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1176,
- "target": 767,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689000",
- "username": "mosaab.abumgarab",
- "fullName": "Mosaab Abu Mgarab (mosaab.abumgarab)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689000/medium/e98e57aa51c058cb9e04d1d3bc9251df.jpeg",
- "joined": "2021-03-29 17:19:03"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1174,
- "target": 1045,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903057",
- "username": "Jumin_Jessica",
- "fullName": "Jumin_Jessica",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903057/medium/049fcb6eb765b002ac5e5ee318fc3960.png",
- "joined": "2019-07-02 03:06:01"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1149,
- "target": 927,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778796",
- "username": "Tiara19",
- "fullName": "Fauzi Rahman (Tiara19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778796/medium/78468d88b1f5701e8d8aefa5c6272c4d.jpeg",
- "joined": "2021-05-30 12:34:50"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1148,
- "target": 924,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 32,
- "negativeVotes": 20,
- "winning": 0
- },
- {
- "user": {
- "id": "14553586",
- "username": "Otec_mk",
- "fullName": "Otec_mk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553586/medium/f7f9e730efd68d9bbf92991f88470a7e.jpg",
- "joined": "2020-12-28 09:48:41"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 1145,
- "target": 1018,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997595",
- "username": "decentra1ized",
- "fullName": "Chaerin Kim (decentra1ized)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14997595/medium/6b4e74c0fca0d1518f52a865ceec865a.jpeg",
- "joined": "2021-11-15 02:10:49"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1142,
- "target": 875,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631192",
- "username": "rafael.yanase",
- "fullName": "Rafael Rezende (rafael.yanase)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631192/medium/543e6b0627ae51d46ab52d78181f46be.jpeg",
- "joined": "2021-02-19 04:19:37"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1136,
- "target": 1185,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 198
- },
- {
- "user": {
- "id": "14969655",
- "username": "Marta.Boianivska",
- "fullName": "Marta.Boianivska",
- "avatarUrl": "https://www.gravatar.com/avatar/be2c6c760516e858293fc2e9907e924b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 07:55:05"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1133,
- "target": 939,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958773",
- "username": "drlachyman",
- "fullName": "Lukáš Lachkovič (drlachyman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958773/medium/1dbdc2e1f1d374a0308a505f42603e66.png",
- "joined": "2021-10-11 15:07:31"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 1131,
- "target": 1017,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784336",
- "username": "8rax",
- "fullName": "8rax",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784336/medium/9acf0e353a205518b69bcf8b130aacf7.gif",
- "joined": "2021-06-03 07:43:10"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1130,
- "target": 1166,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14603560",
- "username": "1204079083",
- "fullName": "1204079083",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14603560/medium/b2490ce0ddf53194d18780699c095dd6.png",
- "joined": "2021-01-31 23:33:42"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1130,
- "target": 2015,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 371
- },
- {
- "user": {
- "id": "14579816",
- "username": "fullak",
- "fullName": "Tristan Brochard (fullak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14579816/medium/86820f407ca3c52d5a2b7b81c18e7eec.jpeg",
- "joined": "2021-01-16 09:51:29"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1126,
- "target": 1258,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 27,
- "negativeVotes": 1,
- "winning": 284
- },
- {
- "user": {
- "id": "14973077",
- "username": "arin32",
- "fullName": "arin32",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973077/medium/bd7c4f92ab2c1f86489508b41262fdad.png",
- "joined": "2021-10-22 22:26:41"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 1124,
- "target": 323,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666300",
- "username": "matheusjordano",
- "fullName": "matheusjordano",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666300/medium/114f1708cbf583e87780f21f565f642f.jpg",
- "joined": "2021-03-13 11:15:13"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1121,
- "target": 1195,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 130
- },
- {
- "user": {
- "id": "14610346",
- "username": "Ziomal",
- "fullName": "Ziomal",
- "avatarUrl": "https://www.gravatar.com/avatar/9ca5941ecdd04cc72dfc2cb4040b0866?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 05:58:07"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1118,
- "target": 1020,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 3,
- "negativeVotes": 3,
- "winning": 31
- },
- {
- "user": {
- "id": "14752676",
- "username": "ftalijic",
- "fullName": "ftalijic",
- "avatarUrl": "https://www.gravatar.com/avatar/722c27843f7139864e3137863ad66413?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 08:31:14"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 1116,
- "target": 895,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959239",
- "username": "kevinalexander",
- "fullName": "Kevin Alexander (kevinalexander)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959239/medium/b99ff2880943456ec68996360243e73e.jpeg",
- "joined": "2021-10-30 20:27:08"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1109,
- "target": 1345,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14616556",
- "username": "M8-Research",
- "fullName": "Maurice Hmr (M8-Research)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616556/medium/08dc4b444eeae3ffdb2c3f20533bdf85.png",
- "joined": "2021-02-09 08:44:32"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1106,
- "target": 1210,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14974319",
- "username": "Yuriimalaniuk",
- "fullName": "Yuriimalaniuk",
- "avatarUrl": "https://www.gravatar.com/avatar/c19120a9901223403e524abdbe836db1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-24 06:54:44"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1104,
- "target": 923,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959887",
- "username": "emukhin",
- "fullName": "emukhin",
- "avatarUrl": "https://www.gravatar.com/avatar/b7de7b5aa443ebf593eb268a5df82ed2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 00:27:06"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1097,
- "target": 1032,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 168
- },
- {
- "user": {
- "id": "14969651",
- "username": "AnastasiaT",
- "fullName": "AnastasiaT",
- "avatarUrl": "https://www.gravatar.com/avatar/800eef961b53a206d4bdb43a4a036789?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 07:41:01"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1094,
- "target": 866,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14823260",
- "username": "omahs",
- "fullName": "omahs",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg",
- "joined": "2021-07-31 09:49:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1092,
- "target": 1047,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791710",
- "username": "7TRESSLESS",
- "fullName": "7TRESSLESS",
- "avatarUrl": "https://www.gravatar.com/avatar/a8762a651e6f41bdf0abd6336e0f1a15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 18:01:38"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1091,
- "target": 962,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 383
- },
- {
- "user": {
- "id": "14953975",
- "username": "Cyberdog",
- "fullName": "Cyberdog",
- "avatarUrl": "https://www.gravatar.com/avatar/637197c572b1479acb3e40d910bd3a21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 15:01:52"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1081,
- "target": 1827,
- "approved": 0,
- "voted": 84,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698674",
- "username": "alperbayrm",
- "fullName": "alper bayram (alperbayrm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698674/medium/caef6e7ebcde2cfccd4e804e5c920150.jpeg",
- "joined": "2021-04-05 14:07:13"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1077,
- "target": 806,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 14,
- "negativeVotes": 1,
- "winning": 44
- },
- {
- "user": {
- "id": "14655214",
- "username": "LeMarx",
- "fullName": "Marc-Antoine Blais (LeMarx)",
- "avatarUrl": "https://www.gravatar.com/avatar/41e83ec7a1d43762ea334db1e09e7ccf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 19:57:07"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1074,
- "target": 788,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 186
- },
- {
- "user": {
- "id": "14907079",
- "username": "Ayano85",
- "fullName": "Ayano85",
- "avatarUrl": "https://www.gravatar.com/avatar/640e34ede10c1d066f45c5b529790ffb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 03:36:38"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1071,
- "target": 927,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13543707",
- "username": "romanenkoisnot",
- "fullName": "Илья Романенко (romanenkoisnot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13543707/medium/f14c7c2e75adcbdf41c85ab9906f0c31.jpg",
- "joined": "2020-12-28 06:31:05"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1064,
- "target": 930,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 128
- },
- {
- "user": {
- "id": "14956849",
- "username": "steinbockj.ulian",
- "fullName": "Julian Steinbock (steinbockj.ulian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956849/medium/57fef07c08276b5cfdadb8590e85a91a.jpeg",
- "joined": "2021-10-10 03:47:46"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1058,
- "target": 1086,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 14,
- "winning": 0
- },
- {
- "user": {
- "id": "14923593",
- "username": "simone.pana.2",
- "fullName": "Simone Panattoni (simone.pana.2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14923593/medium/d109453b70ed12f8e71960dd652efd17.jpeg",
- "joined": "2021-09-15 09:27:41"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1054,
- "target": 1148,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14063663",
- "username": "lapointed338",
- "fullName": "Dominic Lapointe (lapointed338)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14063663/medium/f827847f36281a560fbcb6d06773c58e.jpg",
- "joined": "2020-01-03 23:34:37"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1049,
- "target": 1188,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 114,
- "negativeVotes": 5,
- "winning": 216
- },
- {
- "user": {
- "id": "14771104",
- "username": "Jonathereum",
- "fullName": "Jonathereum",
- "avatarUrl": "https://www.gravatar.com/avatar/73a76621e41852e8503594d132ed12c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-24 14:43:55"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 1048,
- "target": 1097,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14220136",
- "username": "Colinh",
- "fullName": "Colinhl8 (Colinh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220136/medium/e54405e5092398ddcabc9e6c84c757cf.jpg",
- "joined": "2020-04-22 05:48:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1046,
- "target": 1736,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 465
- },
- {
- "user": {
- "id": "14676268",
- "username": "Bachan",
- "fullName": "Bachan",
- "avatarUrl": "https://www.gravatar.com/avatar/d7091aa68a00d2256eb9f3b5709bf974?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 15:29:29"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1046,
- "target": 1186,
- "approved": 0,
- "voted": 95,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 121
- },
- {
- "user": {
- "id": "14903162",
- "username": "MatheusItagiba",
- "fullName": "MatheusItagiba",
- "avatarUrl": "https://www.gravatar.com/avatar/acdce498ab323bc42157ee44c4176a3f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 07:21:43"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1046,
- "target": 962,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959431",
- "username": "pedrorivera",
- "fullName": "Pedro Rivera (pedrorivera)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959431/medium/5b94294dd0b65203871821c8f2c74f4c.png",
- "joined": "2019-08-22 12:11:39"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1041,
- "target": 1070,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 45,
- "negativeVotes": 2,
- "winning": 465
- },
- {
- "user": {
- "id": "14866158",
- "username": "Kazel",
- "fullName": "Kazel",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866158/medium/95b9c5e14784dc12d1399307e66d4eb2.gif",
- "joined": "2021-08-04 08:56:36"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1040,
- "target": 975,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 24,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14968205",
- "username": "ir_zaborska",
- "fullName": "Iryna Zaborska (ir_zaborska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968205/medium/3cbbcd262107220dce0ea8e13747edd6.JPG",
- "joined": "2021-10-21 10:59:00"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1038,
- "target": 911,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949927",
- "username": "ann_plkh09",
- "fullName": "Anna Paliokha (ann_plkh09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949927/medium/6763baa1c9a6e9b197303ab3672469ab.jpg",
- "joined": "2021-10-05 09:04:34"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1037,
- "target": 769,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950847",
- "username": "sofiaobal",
- "fullName": "Cоня Обаль (sofiaobal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950847/medium/6be3834830841526542ebc644307b15a.jpeg",
- "joined": "2021-10-09 08:44:50"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1037,
- "target": 849,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14024277",
- "username": "LQS_PL_linguist",
- "fullName": "LQS_PL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/05d785da2f97f8f46cae785b698161d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-24 11:30:40"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1030,
- "target": 1017,
- "approved": 4514,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 1051
- },
- {
- "user": {
- "id": "14755966",
- "username": "RealGoye",
- "fullName": "RealGoye",
- "avatarUrl": "https://www.gravatar.com/avatar/9fa4dcc2b7a1d5d2cfa557bab4d94cbf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 08:02:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1028,
- "target": 1024,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 133
- },
- {
- "user": {
- "id": "14939633",
- "username": "nellikaminska1967",
- "fullName": "Неля Камінська (nellikaminska1967)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939633/medium/5533147ee1a8ba8dd395e949d74ead6e.png",
- "joined": "2021-11-08 08:43:56"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1027,
- "target": 891,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968479",
- "username": "Alinka24",
- "fullName": "Alinka24",
- "avatarUrl": "https://www.gravatar.com/avatar/215d13cb9f433d294c78399716a0f1ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 08:02:33"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1020,
- "target": 838,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 29,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14598510",
- "username": "arshengc",
- "fullName": "陳亞生 (arshengc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14598510/medium/dc5af8c666f76b88f0af685ab8574f16.jpeg",
- "joined": "2021-01-28 09:25:32"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 1017,
- "target": 1735,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 158
- },
- {
- "user": {
- "id": "13958039",
- "username": "wimel",
- "fullName": "wimel",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13958039/medium/b08ed358513657e8b3d502329886ff60.png",
- "joined": "2019-08-27 12:02:03"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1016,
- "target": 1083,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 188
- },
- {
- "user": {
- "id": "15023705",
- "username": "UmuTR42",
- "fullName": "Ümit Rahim MUTLU (UmuTR42)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023705/medium/74abbc96e311225d644210239912356c.png",
- "joined": "2021-11-20 04:56:52"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1014,
- "target": 913,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991283",
- "username": "imexcalibur",
- "fullName": "imexcalibur",
- "avatarUrl": "https://www.gravatar.com/avatar/04256138ca3ce9021a2323705e83f77e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 09:37:30"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1011,
- "target": 1657,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027079",
- "username": "wmduuh",
- "fullName": "José Eduardo (wmduuh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027079/medium/827d9b374220d233a59c4a1f2ffb1452.jpg",
- "joined": "2021-11-22 23:48:01"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1009,
- "target": 1085,
- "approved": 0,
- "voted": 31,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545218",
- "username": "CleVer85",
- "fullName": "Денис Ільїн (CleVer85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545218/medium/07ce2d1254dab4d9dcb1550ee75bb694.jpg",
- "joined": "2020-12-21 13:57:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1009,
- "target": 892,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 7,
- "winning": 181
- },
- {
- "user": {
- "id": "14978829",
- "username": "skarabhaa",
- "fullName": "Bhaskar Kashyap (skarabhaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978829/medium/3663a98d785554954dfd7008b7447181.jpg",
- "joined": "2021-10-27 22:11:32"
- },
- "languages": [
- {
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 1001,
- "target": 1624,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751422",
- "username": "Alexusz",
- "fullName": "Aléxis Moraes (Alexusz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751422/medium/1b45356738263d0753c5d9f87eacce86.jpg",
- "joined": "2021-05-14 12:50:11"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 999,
- "target": 1003,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 45,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14642544",
- "username": "Phoenix82",
- "fullName": "Phoenix82",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642544/medium/326ad622b0e7bf6487db9130898744ad.jpg",
- "joined": "2021-02-25 17:32:28"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 993,
- "target": 1131,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 375
- },
- {
- "user": {
- "id": "13473469",
- "username": "jules.seigneur77",
- "fullName": "Jules Seigneur (jules.seigneur77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13473469/medium/4118d6e220ce9b45529503a39159dc48.jpg",
- "joined": "2021-03-20 06:21:13"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 993,
- "target": 912,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 29,
- "negativeVotes": 0,
- "winning": 169
- },
- {
- "user": {
- "id": "14714470",
- "username": "samedmertoglu",
- "fullName": "Samed Mertoğlu (samedmertoglu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714470/medium/1da0c147be6e060995a0bfb20ed7a92f.jpeg",
- "joined": "2021-04-16 10:23:28"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 988,
- "target": 821,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 829
- },
- {
- "user": {
- "id": "14951371",
- "username": "Hosein396",
- "fullName": "Hosein Tayebi (Hosein396)",
- "avatarUrl": "https://www.gravatar.com/avatar/f41005e4e9ddd8dd69caab4670f5abd2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:34:59"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 986,
- "target": 1193,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 156
- },
- {
- "user": {
- "id": "14595260",
- "username": "AlanP",
- "fullName": "alanparsn (AlanP)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595260/medium/ed4bb504f0eb2e1c6721b389adf5a13f.png",
- "joined": "2021-01-26 11:49:09"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 984,
- "target": 1010,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 440
- },
- {
- "user": {
- "id": "14844258",
- "username": "lincoln019",
- "fullName": "lincoln019",
- "avatarUrl": "https://www.gravatar.com/avatar/72b791ed133af9f4ceab21e3c93547bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 11:56:07"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 984,
- "target": 973,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974343",
- "username": "George4530",
- "fullName": "George4530",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974343/medium/eccecfc959d5a742451c99f239351234.jpg",
- "joined": "2021-10-24 06:25:05"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 980,
- "target": 1013,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 85,
- "negativeVotes": 19,
- "winning": 0
- },
- {
- "user": {
- "id": "14785890",
- "username": "lu_schy",
- "fullName": "Lu (lu_schy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785890/medium/9af95930308caa40e0747a37886265d2.jpeg",
- "joined": "2021-06-04 13:11:00"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 977,
- "target": 827,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739682",
- "username": "mary.kuzmenko",
- "fullName": "Maryna K. (mary.kuzmenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739682/medium/599afacddc29bf1019c47919568f8b27.jpg",
- "joined": "2021-05-05 16:38:50"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 975,
- "target": 791,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950443",
- "username": "UX404",
- "fullName": "UX404",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950443/medium/06561e4c02ad1005099caaf66d873fd2.jpeg",
- "joined": "2021-10-05 00:48:21"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 973,
- "target": 1546,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986647",
- "username": "da447m",
- "fullName": "da447m",
- "avatarUrl": "https://www.gravatar.com/avatar/fa46389d10e6ec78a6b874a90fdfdc62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-17 15:56:25"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 973,
- "target": 1060,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 581
- },
- {
- "user": {
- "id": "14949283",
- "username": "Vikaa.kr",
- "fullName": "Vikaa.kr",
- "avatarUrl": "https://www.gravatar.com/avatar/743211e5328e2ba4d5c9fa7b7a2361eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 12:54:37"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 973,
- "target": 839,
- "approved": 0,
- "voted": 266,
- "positiveVotes": 50,
- "negativeVotes": 24,
- "winning": 0
- },
- {
- "user": {
- "id": "14910319",
- "username": "KHANAS",
- "fullName": "Khanas Roksolana (KHANAS)",
- "avatarUrl": "https://www.gravatar.com/avatar/d45cb6b71d538c2c6137e22eeeb523f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 17:24:01"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 971,
- "target": 757,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14584736",
- "username": "LeoGodinho",
- "fullName": "Leonardo Godinho (LeoGodinho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584736/medium/bf9a05b2fbb33eee9ab9ea59f5fb4424.jpeg",
- "joined": "2021-01-19 14:21:49"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 970,
- "target": 1035,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 181
- },
- {
- "user": {
- "id": "15026857",
- "username": "longtran02",
- "fullName": "Long Tran (longtran02)",
- "avatarUrl": "https://www.gravatar.com/avatar/7e42114d71608ad394a0b202d3abfb1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-22 17:36:29"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 970,
- "target": 1290,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559630",
- "username": "jorge.arveg",
- "fullName": "Jorge A.R.V (jorge.arveg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559630/medium/fe2910f8bbc5bd2e5c7a41ca4303943b.jpg",
- "joined": "2021-01-02 12:08:07"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 966,
- "target": 1031,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 55,
- "negativeVotes": 3,
- "winning": 57
- },
- {
- "user": {
- "id": "14718940",
- "username": "Vojtch",
- "fullName": "Vojtch",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718940/medium/18bee628523146dfcfbac68c4cb8367d.png",
- "joined": "2021-04-20 02:08:21"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 965,
- "target": 802,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12529583",
- "username": "Khan27",
- "fullName": "ShahinF27 (Khan27)",
- "avatarUrl": "https://www.gravatar.com/avatar/0cf99c0cb60485c150ea182afa7669f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 03:16:59"
- },
- "languages": [
- {
- "id": "az",
- "name": "Azerbaijani"
- }
- ],
- "translated": 945,
- "target": 885,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582304",
- "username": "Ahmed-Raafat",
- "fullName": "Ahmed-Raafat",
- "avatarUrl": "https://www.gravatar.com/avatar/54109d0b4c19d010e6c1c5494efc46cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 06:20:30"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 935,
- "target": 909,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645922",
- "username": "506utyutyuty",
- "fullName": "Marcos D. (506utyutyuty)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645922/medium/defd7b38618b1e500ae3c09e4b6f3f69.jpeg",
- "joined": "2021-02-28 05:09:08"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 932,
- "target": 968,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 494
- },
- {
- "user": {
- "id": "14729586",
- "username": "hila1gt2",
- "fullName": "Benjamin Mattmann (hila1gt2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729586/medium/b2148ad52e0bc29f3b569d164434a221.jpeg",
- "joined": "2021-04-28 04:06:53"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 932,
- "target": 842,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813326",
- "username": "lingwen",
- "fullName": "lingwen",
- "avatarUrl": "https://www.gravatar.com/avatar/a2ed20a7c9813e3e85a6ebb6c3397a7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-24 01:59:02"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 930,
- "target": 1236,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030216",
- "username": "udinujang",
- "fullName": "Sayid Almahdy (udinujang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14030216/medium/a9f8489aeec48632cf519aa826d8350c.jpg",
- "joined": "2019-11-03 18:38:57"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 929,
- "target": 936,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 6,
- "winning": 150
- },
- {
- "user": {
- "id": "15019927",
- "username": "Sewon",
- "fullName": "Sewon Park (Sewon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019927/medium/0ebf5c870c1c120a265fccba1a0d9d9a.png",
- "joined": "2021-11-17 08:47:39"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 925,
- "target": 703,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684212",
- "username": "KaddourAlabbas",
- "fullName": "KaddourAlabbas",
- "avatarUrl": "https://www.gravatar.com/avatar/89ca8a546b5675b4208524874cdeefbd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-26 05:06:53"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 924,
- "target": 924,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694992",
- "username": "Matthiti",
- "fullName": "Matthijs Roelink (Matthiti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694992/medium/ebb3402bec51d93fc48118628f8befc7.jpeg",
- "joined": "2021-04-02 16:15:36"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 922,
- "target": 929,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857902",
- "username": "ytsdts336",
- "fullName": "ytsdts336",
- "avatarUrl": "https://www.gravatar.com/avatar/20905d99c6ff28b4102d07d51e0af686?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 09:20:37"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 922,
- "target": 671,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14253108",
- "username": "chervol",
- "fullName": "Volodymyr Cherepanyak (chervol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14253108/medium/fc1083e2e10c3ebe3d5a82a3ec525c5f.png",
- "joined": "2020-05-12 11:34:03"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 921,
- "target": 890,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14953547",
- "username": "Tostaito",
- "fullName": "Tostaito",
- "avatarUrl": "https://www.gravatar.com/avatar/dfc450105a871dc30b6dd17a3ec27848?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 08:09:34"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 919,
- "target": 1025,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 223
- },
- {
- "user": {
- "id": "14855294",
- "username": "mikoto_1110",
- "fullName": "mikoto_1110",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855294/medium/31cdc00d3b06b364eb79cd47e3e25812.jpg",
- "joined": "2021-07-27 12:49:02"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 911,
- "target": 1672,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 16,
- "winning": 0
- },
- {
- "user": {
- "id": "13993041",
- "username": "LQS_EL_linguist",
- "fullName": "LQS_EL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/7923c0318fb7718899f5efcf235fa147?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 09:33:30"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 909,
- "target": 1024,
- "approved": 3758,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 903
- },
- {
- "user": {
- "id": "14414268",
- "username": "enricserra90",
- "fullName": "Enric Serra (enricserra90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14414268/medium/e35a7a7c2b65ad37a36cc01551c392b0.jpeg",
- "joined": "2020-09-13 15:34:54"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 905,
- "target": 978,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14427020",
- "username": "mvelebit",
- "fullName": "mvelebit",
- "avatarUrl": "https://www.gravatar.com/avatar/8b3c7265b6372156c006785b501942b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-22 08:10:06"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 900,
- "target": 865,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14527438",
- "username": "alina.savchak",
- "fullName": "alina.savchak",
- "avatarUrl": "https://www.gravatar.com/avatar/8858b017ffe17838ee9e03150f7e8d2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-08 04:55:59"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 898,
- "target": 829,
- "approved": 984,
- "voted": 0,
- "positiveVotes": 29,
- "negativeVotes": 0,
- "winning": 898
- },
- {
- "user": {
- "id": "13903787",
- "username": "vinhci5",
- "fullName": "Vinh (vinhci5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903787/medium/41c8c511377c86ed67aa786be0c4ea33.png",
- "joined": "2020-05-17 05:31:25"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 897,
- "target": 1208,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 25,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14559620",
- "username": "gregpich",
- "fullName": "gregpich",
- "avatarUrl": "https://www.gravatar.com/avatar/8dd9cf66464582d6640266702283d181?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 11:55:03"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 896,
- "target": 980,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 238
- },
- {
- "user": {
- "id": "13959163",
- "username": "bobjiang",
- "fullName": "Bob Jiang (bobjiang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959163/medium/f0592e36e25621172a739a84f69d3099.jpeg",
- "joined": "2019-08-22 08:03:05"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 892,
- "target": 1404,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 56,
- "negativeVotes": 30,
- "winning": 205
- },
- {
- "user": {
- "id": "14705886",
- "username": "jsssyc",
- "fullName": "jsssyc",
- "avatarUrl": "https://www.gravatar.com/avatar/80a4686cdfc3ce699c4ce9031432b3e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 06:21:40"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 887,
- "target": 1338,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 180
- },
- {
- "user": {
- "id": "14551466",
- "username": "jucsaba",
- "fullName": "jucsaba",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14551466/medium/59a3ef15e6bff31db5ec092837673271.png",
- "joined": "2020-12-26 16:38:41"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 885,
- "target": 644,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 22,
- "negativeVotes": 12,
- "winning": 129
- },
- {
- "user": {
- "id": "13466755",
- "username": "PfurtschellerP",
- "fullName": "PfurtschellerP",
- "avatarUrl": "https://www.gravatar.com/avatar/715821ec3b74a4ac559d57312abf8212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 18:28:13"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 884,
- "target": 812,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884278",
- "username": "snoopey",
- "fullName": "Vlad Styopin (snoopey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884278/medium/6b9b5c53c7e1fbcc9ecb49f7171ac225.jpeg",
- "joined": "2021-08-17 08:29:43"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 881,
- "target": 693,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865420",
- "username": "Sergitxin",
- "fullName": "Sergitxin22 (Sergitxin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865420/medium/c93a1a81a1c919979a6da85151c0bf66.png",
- "joined": "2021-08-03 19:19:10"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 881,
- "target": 842,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15019903",
- "username": "naaa187",
- "fullName": "naaa187",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019903/medium/eb71b3cb69bad0676610d45b7c805b46.png",
- "joined": "2021-11-24 06:20:35"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 880,
- "target": 639,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653310",
- "username": "Fjcerco",
- "fullName": "Fjcerco",
- "avatarUrl": "https://www.gravatar.com/avatar/b2f85155999765a60da620560da7fab9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 13:19:27"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 878,
- "target": 908,
- "approved": 0,
- "voted": 31,
- "positiveVotes": 17,
- "negativeVotes": 1,
- "winning": 173
- },
- {
- "user": {
- "id": "14982803",
- "username": "ahmadkzbar",
- "fullName": "Ahmad Kazbar (ahmadkzbar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982803/medium/9630fb2eb58f6274d257bfc1c287be61.jpeg",
- "joined": "2021-10-30 13:34:11"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 877,
- "target": 798,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14692406",
- "username": "evanxuw",
- "fullName": "miumiusf (evanxuw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14692406/medium/cd75843e806da42ffede4f72813bcd9e.JPG",
- "joined": "2021-04-01 00:02:38"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 873,
- "target": 1261,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 2,
- "negativeVotes": 3,
- "winning": 183
- },
- {
- "user": {
- "id": "14735822",
- "username": "tsukasanomori",
- "fullName": "TM (tsukasanomori)",
- "avatarUrl": "https://www.gravatar.com/avatar/159bc9f99bc6f8b607acf7cd9c0c716d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 22:44:59"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 872,
- "target": 1825,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 1,
- "negativeVotes": 5,
- "winning": 114
- },
- {
- "user": {
- "id": "14771472",
- "username": "Eason_Wang",
- "fullName": "Eason Wang (Eason_Wang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771472/medium/af427b7ae2024d379e57f6324179e0ad.jpeg",
- "joined": "2021-06-05 04:17:43"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 870,
- "target": 1193,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 280
- },
- {
- "user": {
- "id": "14653996",
- "username": "anhbaysgalan1",
- "fullName": "Anhbaysgalan D (anhbaysgalan1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653996/medium/754e257601bf73ab683d21c3c7938b04.jpeg",
- "joined": "2021-03-05 02:21:58"
- },
- "languages": [
- {
- "id": "mn",
- "name": "Mongolian"
- }
- ],
- "translated": 860,
- "target": 759,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959455",
- "username": "fede.viar",
- "fullName": "Fede Viarnés (fede.viar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959455/medium/c26b345de3294b71a14505b3fb93b412.jpeg",
- "joined": "2019-08-22 12:35:33"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 859,
- "target": 891,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 131
- },
- {
- "user": {
- "id": "14130355",
- "username": "tawanclubzaa",
- "fullName": "tawanclubzaa",
- "avatarUrl": "https://www.gravatar.com/avatar/9ddbbf6ccca3a87e2da160acc0eefa68?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-29 08:51:03"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 851,
- "target": 844,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750688",
- "username": "mjtbkh",
- "fullName": "mjtbkh",
- "avatarUrl": "https://www.gravatar.com/avatar/3b7400ed00e57c04004da965a90efd20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 05:41:34"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 845,
- "target": 944,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 50,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14057606",
- "username": "Dobrevmotorsport",
- "fullName": "Асен Добрев (Dobrevmotorsport)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057606/medium/01dca40d206446fe96ac6f46d8d04616.jpeg",
- "joined": "2019-12-24 13:33:17"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 845,
- "target": 830,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672670",
- "username": "MARG8",
- "fullName": "MARG8",
- "avatarUrl": "https://www.gravatar.com/avatar/f426789a5148e8597a7ec87981bd73b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 02:20:09"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 842,
- "target": 779,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 108
- },
- {
- "user": {
- "id": "14063281",
- "username": "franjoespejo",
- "fullName": "franjoespejo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14063281/medium/ca49be1a485757d76849be06da8432ce.jpeg",
- "joined": "2020-01-03 14:31:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 841,
- "target": 926,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 231
- },
- {
- "user": {
- "id": "14698898",
- "username": "Dooyoux",
- "fullName": "Dooyoux",
- "avatarUrl": "https://www.gravatar.com/avatar/be0c1f011a5fac7f97bb7836f5ef5834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 16:29:45"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 840,
- "target": 876,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14573360",
- "username": "lipan940414",
- "fullName": "Lee Pine (lipan940414)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573360/medium/4f14c291cef5a08b58eb3da1ccfd83fe.jpg",
- "joined": "2021-01-12 02:48:16"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 839,
- "target": 1372,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 32,
- "negativeVotes": 6,
- "winning": 315
- },
- {
- "user": {
- "id": "14732424",
- "username": "WUBAOYU",
- "fullName": "WUBAOYU",
- "avatarUrl": "https://www.gravatar.com/avatar/46770842d09b2550627b9248c530fdf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 03:38:23"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 829,
- "target": 1266,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 16,
- "negativeVotes": 2,
- "winning": 163
- },
- {
- "user": {
- "id": "14382632",
- "username": "gabe_san_",
- "fullName": "gabe_san_",
- "avatarUrl": "https://www.gravatar.com/avatar/ba104028940a36ea18502399fe70aef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 22:24:49"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 829,
- "target": 766,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 17,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903462",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/2452433cbabc01d17f146a15621a0c2d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 11:31:30"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 825,
- "target": 813,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 16,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005635",
- "username": "michaelast",
- "fullName": "michaelast",
- "avatarUrl": "https://www.gravatar.com/avatar/9885ded5d890367e60df4ea1479b8104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 11:23:40"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 821,
- "target": 907,
- "approved": 1044,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 806
- },
- {
- "user": {
- "id": "14091321",
- "username": "Huhh",
- "fullName": "Arsentiy Falinskiy (Huhh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14091321/medium/d8e72289853200fb1dbef3a723ce209b.jpeg",
- "joined": "2020-01-27 11:10:16"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 818,
- "target": 756,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 7,
- "negativeVotes": 1,
- "winning": 49
- },
- {
- "user": {
- "id": "14996091",
- "username": "divas7",
- "fullName": "divas7",
- "avatarUrl": "https://www.gravatar.com/avatar/c5bea20c781d457353d5dfe7a901c341?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 06:14:18"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 817,
- "target": 938,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14331852",
- "username": "keepsmile9735",
- "fullName": "Ehh BpakKau Hott (keepsmile9735)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14331852/medium/35e819d1e0f4934f8a96f32b0cda738c.jpeg",
- "joined": "2020-07-05 14:28:25"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 817,
- "target": 817,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660054",
- "username": "chandraciek",
- "fullName": "Chandra Brahmana (chandraciek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660054/medium/d5d65ffbc12b004ac94eeea2312811c0.jpeg",
- "joined": "2021-03-09 08:35:02"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 815,
- "target": 670,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14778910",
- "username": "dilian.nalbantov",
- "fullName": "Dilyan Nalbantov (dilian.nalbantov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778910/medium/00559aa3f79533afbbb0eee1b5be29f1.jpeg",
- "joined": "2021-05-30 14:15:21"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 811,
- "target": 825,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779546",
- "username": "arpit.kumar",
- "fullName": "ARPIT KUMAR (arpit.kumar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779546/medium/1b77f7cf2e4930307ad3dd36345e5017.png",
- "joined": "2021-05-31 03:31:39"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 810,
- "target": 1335,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13605239",
- "username": "cobject",
- "fullName": "cobject",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13605239/medium/625d6683b8f2d702392d3ac8b15c5494.png",
- "joined": "2019-07-01 23:36:54"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 810,
- "target": 638,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 17,
- "negativeVotes": 1,
- "winning": 46
- },
- {
- "user": {
- "id": "14607364",
- "username": "Guzzt",
- "fullName": "Guzzt",
- "avatarUrl": "https://www.gravatar.com/avatar/5cd3ee66cdf3d00cb3c1846147b367bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 08:41:50"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 809,
- "target": 847,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 44,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14800544",
- "username": "vj-codes",
- "fullName": "vj-codes",
- "avatarUrl": "https://www.gravatar.com/avatar/1801099ce8fed3e7e395524675b7c332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 10:47:24"
- },
- "languages": [
- {
- "id": "mr",
- "name": "Marathi"
- },
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 805,
- "target": 1328,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600152",
- "username": "hbarcelos",
- "fullName": "hbarcelos",
- "avatarUrl": "https://www.gravatar.com/avatar/ea10822d92db8b695ffa6d67727d672b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 10:32:38"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 804,
- "target": 893,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 367
- },
- {
- "user": {
- "id": "15004157",
- "username": "seventeenfive36",
- "fullName": "seventeenfive36",
- "avatarUrl": "https://www.gravatar.com/avatar/f61cd2c2dfe9ab7fb8ff014cfcf64596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 13:58:32"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 803,
- "target": 730,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14283246",
- "username": "bitcardo",
- "fullName": "Ricardo Carrasco (bitcardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14283246/medium/391b9d56cdeca52c3182f89ff57ea712.jpg",
- "joined": "2020-05-30 23:24:10"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 802,
- "target": 889,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14803566",
- "username": "w158rk",
- "fullName": "w158rk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803566/medium/25038b66bd6a7c6e5b55d2b4aa7681c0.png",
- "joined": "2021-06-17 22:44:14"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 801,
- "target": 960,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 83
- },
- {
- "user": {
- "id": "14989943",
- "username": "Saph",
- "fullName": "Saph",
- "avatarUrl": "https://www.gravatar.com/avatar/85790b7e21d231372b65133fa7124467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-04 08:57:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 801,
- "target": 860,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14266778",
- "username": "Causal1ty",
- "fullName": "Causal1ty",
- "avatarUrl": "https://www.gravatar.com/avatar/f0353cdb74175f1f3c05d8462b3d87b0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-21 07:19:30"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 800,
- "target": 732,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 76,
- "negativeVotes": 0,
- "winning": 206
- },
- {
- "user": {
- "id": "14038309",
- "username": "planepisode",
- "fullName": "Suraneti Rodsuwan (planepisode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14038309/medium/ad02fc352bbe13108d588527c438815d.jpeg",
- "joined": "2019-11-18 10:13:08"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 798,
- "target": 496,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784750",
- "username": "PaulOurs",
- "fullName": "PaulOurs",
- "avatarUrl": "https://www.gravatar.com/avatar/cd699edb9198b1b5c53f8dec55e5528c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 12:45:28"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 794,
- "target": 822,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959989",
- "username": "yennis",
- "fullName": "yennis",
- "avatarUrl": "https://www.gravatar.com/avatar/c07bba6a9bf7e875e5cff721b5be7349?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 03:25:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 787,
- "target": 851,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14592434",
- "username": "KemalK",
- "fullName": "Kemal KELES (KemalK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14592434/medium/72a3946d458fe6eb69dab1cf1561e934.png",
- "joined": "2021-01-24 14:14:08"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 786,
- "target": 922,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 1,
- "winning": 581
- },
- {
- "user": {
- "id": "14950903",
- "username": "Udete",
- "fullName": "Udete",
- "avatarUrl": "https://www.gravatar.com/avatar/a435f03885ccd6070df11ae043c3e6c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 08:17:08"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 780,
- "target": 826,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14821110",
- "username": "behzad6533999",
- "fullName": "behzad mehdizadeh (behzad6533999)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821110/medium/88b7c53f76930544c2c57861e65dab83.png",
- "joined": "2021-06-30 01:56:47"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 779,
- "target": 885,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13938553",
- "username": "ahmetemin08",
- "fullName": "Ahmet Emin Koçal (ahmetemin08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13938553/medium/93499dd97244086f423ea0611c82e186.jpg",
- "joined": "2019-10-25 17:11:23"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 774,
- "target": 639,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 1,
- "winning": 51
- },
- {
- "user": {
- "id": "14705794",
- "username": "arusatava",
- "fullName": "Arusatava Diсokusay (arusatava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705794/medium/7f35490773280819aaf885372c69589a.jpeg",
- "joined": "2021-04-10 04:28:55"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 772,
- "target": 688,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 198
- },
- {
- "user": {
- "id": "13714631",
- "username": "oonid",
- "fullName": "oon arfiandwi (oonid)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13714631/medium/613b365f3428c6f23b3ea3cf1d7549ec.jpg",
- "joined": "2020-07-29 12:17:53"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 770,
- "target": 713,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 77,
- "negativeVotes": 5,
- "winning": 1
- },
- {
- "user": {
- "id": "14677006",
- "username": "wvdgoot",
- "fullName": "wvdgoot",
- "avatarUrl": "https://www.gravatar.com/avatar/e03ead5e4d316ee864fce34f6dd65f52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 07:42:04"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 770,
- "target": 774,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14172881",
- "username": "47hzwhale",
- "fullName": "Ӓlibek Aytjan (47hzwhale)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14172881/medium/dfd0e5efd5dac49f200b7bd24503eb4c.jpg",
- "joined": "2021-08-30 11:20:22"
- },
- "languages": [
- {
- "id": "kk",
- "name": "Kazakh"
- }
- ],
- "translated": 768,
- "target": 622,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14665948",
- "username": "rosdec",
- "fullName": "Rosario De Chiara (rosdec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665948/medium/1c9ce66f9649bddfc810e39ee52ebf90.jpeg",
- "joined": "2021-03-13 05:55:11"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 759,
- "target": 785,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14955021",
- "username": "nurulayunikasra",
- "fullName": "Nurul Ayuni Kasra (nurulayunikasra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955021/medium/27403315b43bdeb02c23ac60235a8f74.png",
- "joined": "2021-10-11 22:51:04"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 757,
- "target": 745,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914333",
- "username": "SamB",
- "fullName": "Samira Bourai (SamB)",
- "avatarUrl": "https://www.gravatar.com/avatar/2d0de1488d23af8d721dca29ccec7577?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-28 15:12:16"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 756,
- "target": 717,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903009",
- "username": "igntsh",
- "fullName": "Heo Ignatius (igntsh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903009/medium/04ae0d1fd930da54d2c40b2d5e37e31c.jpg",
- "joined": "2019-07-02 02:09:45"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 755,
- "target": 509,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738168",
- "username": "KS.Park",
- "fullName": "Kyusuh Park (KS.Park)",
- "avatarUrl": "https://www.gravatar.com/avatar/36596a0ecfe66ec6e15351ecf01b3d78?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 15:19:35"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 753,
- "target": 542,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820320",
- "username": "hechao2258",
- "fullName": "hechao2258",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820320/medium/fefdde3b7e09d989f89e8b56f247f6d0.png",
- "joined": "2021-06-29 10:47:33"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 750,
- "target": 1245,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005293",
- "username": "Proofreader_PT",
- "fullName": "Proofreader_PT",
- "avatarUrl": "https://www.gravatar.com/avatar/5016dc5d64f6e86078cc0191822ffff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 06:36:27"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 748,
- "target": 819,
- "approved": 100,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14598082",
- "username": "mrip03",
- "fullName": "mrip03",
- "avatarUrl": "https://www.gravatar.com/avatar/ebe2b0d1b7864bf997b429ea6dce4f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-28 04:52:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 747,
- "target": 893,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 599
- },
- {
- "user": {
- "id": "14817838",
- "username": "Tadashi1024",
- "fullName": "Tadashi1024",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817838/medium/e8bbda9fb55464b5d13482f3f1bef0d4.jpg",
- "joined": "2021-06-27 13:11:02"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 743,
- "target": 1251,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553432",
- "username": "franzihei",
- "fullName": "Franziska Heintel (franzihei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553432/medium/1f1a5fa4da0d90d1c7853118ebe80f22.jpeg",
- "joined": "2020-12-28 07:16:12"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 741,
- "target": 744,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959473",
- "username": "xaler",
- "fullName": "xaler",
- "avatarUrl": "https://www.gravatar.com/avatar/e0b31348b98eb415336505db3b130695?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 12:54:02"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 739,
- "target": 817,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 21,
- "negativeVotes": 26,
- "winning": 40
- },
- {
- "user": {
- "id": "14297416",
- "username": "juampigilsola",
- "fullName": "juampigilsola",
- "avatarUrl": "https://www.gravatar.com/avatar/c604008c58573b0a5b7c53bd375a7854?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-13 10:47:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 737,
- "target": 796,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 81
- },
- {
- "user": {
- "id": "14951241",
- "username": "WhoamIXOXO00",
- "fullName": "Renie Chung (WhoamIXOXO00)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951241/medium/764650e8547dad13f3e3a2c862c1d28a.png",
- "joined": "2021-10-05 12:27:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 736,
- "target": 1237,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 22,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13517199",
- "username": "gustavnovotny",
- "fullName": "gustavnovotny",
- "avatarUrl": "https://www.gravatar.com/avatar/b6e4bd86c6b2e9c4863855bde9250545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 12:11:41"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 733,
- "target": 660,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855564",
- "username": "Budenkinder",
- "fullName": "Budenkinder",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855564/medium/18eaf43a19b5b5491d87b7e117eba1af.png",
- "joined": "2021-07-27 17:51:26"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 725,
- "target": 691,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "12578470",
- "username": "aalam",
- "fullName": "Aman Alam (aalam)",
- "avatarUrl": "https://www.gravatar.com/avatar/a95a917b5788edc7a1a0625a936673c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-27 02:23:50"
- },
- "languages": [
- {
- "id": "pa-IN",
- "name": "Punjabi"
- }
- ],
- "translated": 725,
- "target": 1196,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788394",
- "username": "k-sad",
- "fullName": "k-sad",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788394/medium/d36035c2e171b8c0a75df7a938eceadb.jpg",
- "joined": "2021-06-06 11:41:35"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 719,
- "target": 555,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 132
- },
- {
- "user": {
- "id": "14845960",
- "username": "matusame",
- "fullName": "matusame",
- "avatarUrl": "https://www.gravatar.com/avatar/2ba5acc9f88366ef55d0441d12483c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 20:06:03"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 719,
- "target": 668,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951383",
- "username": "pieter-astra",
- "fullName": "pieter-astra",
- "avatarUrl": "https://www.gravatar.com/avatar/73945ec73cbd868260048cbaad582e71?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:49:41"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 717,
- "target": 740,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 55,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820324",
- "username": "alenque82",
- "fullName": "alan chen (alenque82)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820324/medium/384f8a2be04550200050bdcdd22931dd.png",
- "joined": "2021-06-29 10:44:48"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 715,
- "target": 1045,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14872676",
- "username": "VLN_1",
- "fullName": "Vicente Lorente Noguera (VLN_1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872676/medium/8d173c43fac87f0975a31275048360c8.jpeg",
- "joined": "2021-08-09 14:31:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 714,
- "target": 652,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844054",
- "username": "Dimitar1512",
- "fullName": "Dimitar Ivanov (Dimitar1512)",
- "avatarUrl": "https://www.gravatar.com/avatar/21544dd242a11c209c548dd3889e9759?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 08:28:01"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 714,
- "target": 652,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197302",
- "username": "Nanshulot",
- "fullName": "Nans.hulot (Nanshulot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197302/medium/757e43b5b53dcd888a681e6dfa5c4997.png",
- "joined": "2020-04-08 14:54:33"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 713,
- "target": 827,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 17,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14891070",
- "username": "LinaUlles",
- "fullName": "LinaUlles",
- "avatarUrl": "https://www.gravatar.com/avatar/6da01d04cd125a243608323649042656?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 07:28:14"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 710,
- "target": 832,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14951039",
- "username": "nataliia.diakiv",
- "fullName": "nataliia.diakiv",
- "avatarUrl": "https://www.gravatar.com/avatar/815642073295ce00115a32e42bd49a3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 09:37:04"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 706,
- "target": 588,
- "approved": 0,
- "voted": 27,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14009413",
- "username": "rukuiza",
- "fullName": "rukuiza",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14009413/medium/1b2bfe82608da50af9bc1ec3e8636706.jpeg",
- "joined": "2019-11-05 12:14:42"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 705,
- "target": 646,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 2,
- "winning": 87
- },
- {
- "user": {
- "id": "14970993",
- "username": "vadzimchesh",
- "fullName": "vadzimchesh",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970993/medium/864bf7dad17fd4313cb5bb5656b4b547.jpg",
- "joined": "2021-10-21 06:05:14"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 701,
- "target": 540,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736264",
- "username": "purtual",
- "fullName": "Morten Lautrup (purtual)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736264/medium/bfa73783034f3c6b355dfc74f9a1a1cd.png",
- "joined": "2021-05-03 07:02:31"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 701,
- "target": 635,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031031",
- "username": "Ramonski88",
- "fullName": "Ramonski (Ramonski88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031031/medium/131fb2000b0b7fb9c5b1e66b48efc721.jpeg",
- "joined": "2021-11-25 20:41:02"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 699,
- "target": 943,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723446",
- "username": "DoGame5",
- "fullName": "DoGame5",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723446/medium/7dacda0b245cc793a6e0f617b699b92a.png",
- "joined": "2021-06-24 12:27:03"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 698,
- "target": 615,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664708",
- "username": "yorihito.tada",
- "fullName": "Yorihito Tada (yorihito.tada)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664708/medium/eec8e38895d8d1e900a8c4291a18a602.jpeg",
- "joined": "2021-03-12 07:59:30"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 695,
- "target": 1599,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002975",
- "username": "Sabine.Goesker",
- "fullName": "Sabine Gösker (Sabine.Goesker)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002975/medium/c27bb77b234f3e4492a3880925ffa6f3.jpeg",
- "joined": "2021-11-14 09:12:47"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 695,
- "target": 680,
- "approved": 0,
- "voted": 46,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14520190",
- "username": "LQS_IGBO2_linguist",
- "fullName": "LQS_IGBO2_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/dd22e80ae765c0e2b8fbd6ab75b00fc3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-03 06:04:18"
- },
- "languages": [
- {
- "id": "ig",
- "name": "Igbo"
- }
- ],
- "translated": 693,
- "target": 895,
- "approved": 745,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 691
- },
- {
- "user": {
- "id": "15012031",
- "username": "TTG_VTM",
- "fullName": "TTG_VTM",
- "avatarUrl": "https://www.gravatar.com/avatar/02c6804ff53675aeacabacad44ff5d1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 18:57:37"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 689,
- "target": 1017,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948719",
- "username": "zhao16813888",
- "fullName": "jun zhao (zhao16813888)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948719/medium/65b36e24dbfcf19c1bc04ba16d6f4151.png",
- "joined": "2021-10-03 16:02:31"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 688,
- "target": 1114,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667626",
- "username": "matheusrrugolo",
- "fullName": "Matheus Rodrigues (matheusrrugolo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667626/medium/8f3c59f10649fb1abbd53bee5614aa2b.jpeg",
- "joined": "2021-03-14 13:21:03"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 686,
- "target": 676,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969033",
- "username": "belajarkripto",
- "fullName": "belajarkripto",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969033/medium/53c6a8e2385987d4555337d628710e58.png",
- "joined": "2021-10-19 17:25:24"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 686,
- "target": 669,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14361586",
- "username": "zippoxer",
- "fullName": "Moshe Revah (zippoxer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14361586/medium/a4f460817c40656ad9863a2100816e77.png",
- "joined": "2020-07-30 16:53:02"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 684,
- "target": 602,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687522",
- "username": "anhelinamykytiuk",
- "fullName": "anhelinamykytiuk",
- "avatarUrl": "https://www.gravatar.com/avatar/33fa33b317efb0122aef411711c5c0d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 02:33:59"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 682,
- "target": 520,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824866",
- "username": "Worr",
- "fullName": "Kadir Ozmen (Worr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824866/medium/d9facd000e85e1be46f8d8f667b6f4d7.jpeg",
- "joined": "2021-07-02 16:58:23"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 679,
- "target": 494,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13651371",
- "username": "Pactera_Caiping",
- "fullName": "Pactera_Vietnamese_Proofreader (Pactera_Caiping)",
- "avatarUrl": "https://www.gravatar.com/avatar/3661624d771e84aa4f4d472588a5d823?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 06:16:35"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 679,
- "target": 1003,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669734",
- "username": "fcab",
- "fullName": "fcab",
- "avatarUrl": "https://www.gravatar.com/avatar/1c42ab8c861169042cb2d5c07074f541?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 02:30:22"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 677,
- "target": 687,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028647",
- "username": "hhkim0",
- "fullName": "Hanhui Kim (hhkim0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028647/medium/1ef77054a9896b40551efaac9878f218.png",
- "joined": "2021-11-24 01:21:02"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 675,
- "target": 525,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586012",
- "username": "ceasar.solucoes",
- "fullName": "Caio Cesar de O. Pereira (ceasar.solucoes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586012/medium/c4b345883e6638d7f10a70447369b2f5.png",
- "joined": "2021-01-20 08:33:29"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 673,
- "target": 726,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 45,
- "negativeVotes": 0,
- "winning": 421
- },
- {
- "user": {
- "id": "14723736",
- "username": "CDrosos",
- "fullName": "Christopher Drosos (CDrosos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723736/medium/9ed57e05be46fff5a97dba4af259a3ea.jpg",
- "joined": "2021-04-23 11:09:28"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 672,
- "target": 702,
- "approved": 0,
- "voted": 26,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698482",
- "username": "lucaiach",
- "fullName": "lucaiach",
- "avatarUrl": "https://www.gravatar.com/avatar/c0bed651d9243db22c8457703d915332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 12:13:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 668,
- "target": 740,
- "approved": 0,
- "voted": 52,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14957901",
- "username": "LiwenGou",
- "fullName": "kevingou (LiwenGou)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957901/medium/acd97ba37a23af54ecfa9e470fcb1f0d.jpeg",
- "joined": "2021-10-11 02:43:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 667,
- "target": 1123,
- "approved": 0,
- "voted": 37,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766056",
- "username": "george.vslv",
- "fullName": "George V (george.vslv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766056/medium/154d4f8776f49bc3b56ac57c0c2b02c9.png",
- "joined": "2021-05-20 17:44:43"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 667,
- "target": 614,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726596",
- "username": "cp_leonardo",
- "fullName": "César Pineda (cp_leonardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726596/medium/cae3d03e9fe8e133b699b393d72c87f4.jpeg",
- "joined": "2021-04-25 20:28:34"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 665,
- "target": 720,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 217
- },
- {
- "user": {
- "id": "14956879",
- "username": "ztibi",
- "fullName": "ztibi",
- "avatarUrl": "https://www.gravatar.com/avatar/6c447b75f354c7bdf296e135abf1928d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-10 04:12:50"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 663,
- "target": 580,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892798",
- "username": "Arkagedon",
- "fullName": "Arkagam A (Arkagedon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892798/medium/1590db87626e9cee6310c63f9d72a16e.jpeg",
- "joined": "2021-08-23 12:20:37"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 662,
- "target": 791,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 16,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820318",
- "username": "alongdlut",
- "fullName": "alongdlut",
- "avatarUrl": "https://www.gravatar.com/avatar/f42274c44090929249197ed6f3d8a999?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 10:34:14"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 661,
- "target": 924,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 381
- },
- {
- "user": {
- "id": "14967539",
- "username": "Dana_Oliinyk",
- "fullName": "Dana_Oliinyk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967539/medium/6c853b27ba244892f1f49a4e63ce06bf.jpg",
- "joined": "2021-10-23 11:52:11"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 661,
- "target": 569,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14737668",
- "username": "shexhx0906",
- "fullName": "知最 (shexhx0906)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737668/medium/b4101bd6f1d00337cb0d1ebf676e4323.jpeg",
- "joined": "2021-05-04 08:11:07"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 660,
- "target": 1062,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 289
- },
- {
- "user": {
- "id": "14911889",
- "username": "Doria98",
- "fullName": "Eduardo Doria (Doria98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911889/medium/6a8c99b54c65c2c66efadaa47f227bb0.jpeg",
- "joined": "2021-09-06 19:04:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 660,
- "target": 660,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968207",
- "username": "Vdovychyn_Oksana",
- "fullName": "Vdovychyn_Oksana",
- "avatarUrl": "https://www.gravatar.com/avatar/f751daa8f9217192b5333e29064e43f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 17:19:52"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 656,
- "target": 559,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14139071",
- "username": "LQS_KO_linguist",
- "fullName": "Kyoung-Jun Min (LQS_KO_linguist)",
- "avatarUrl": "https://www.gravatar.com/avatar/157e0850bff5d654100418259369d257?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-01 23:37:00"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 654,
- "target": 522,
- "approved": 811,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 654
- },
- {
- "user": {
- "id": "14146415",
- "username": "MonarthS",
- "fullName": "Monarth (MonarthS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146415/medium/df6676021062acadedbaf9d0935bcce3.jpg",
- "joined": "2020-03-06 01:47:38"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 654,
- "target": 1159,
- "approved": 0,
- "voted": 31,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 37
- },
- {
- "user": {
- "id": "14713664",
- "username": "joaopaulomoraes",
- "fullName": "João Paulo Moraes (joaopaulomoraes)",
- "avatarUrl": "https://www.gravatar.com/avatar/4405735f6f3129e0286d9d43e7b460d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:25:09"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 654,
- "target": 724,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868732",
- "username": "mykola.incognito",
- "fullName": "mykola incognito (mykola.incognito)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868732/medium/f62443bab75b8e6f6e607a4cf3df9a72.png",
- "joined": "2021-08-06 08:20:32"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 653,
- "target": 589,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13495634",
- "username": "aleksnder74",
- "fullName": "Александр Кирьянов (aleksnder74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13495634/medium/2bb6c9935c48233c344c42e22f7a0b64.jpg",
- "joined": "2021-05-16 21:04:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 653,
- "target": 595,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810702",
- "username": "Joisir",
- "fullName": "Joisir",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810702/medium/26fc6df7964704f4b4281510ca2a1d8f.png",
- "joined": "2021-06-22 03:33:48"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 651,
- "target": 574,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669040",
- "username": "skyfackr",
- "fullName": "fackr jiang (skyfackr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669040/medium/c7c3c2f784c18d73a0bb6c9f53665f11.jpeg",
- "joined": "2021-03-15 13:14:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 650,
- "target": 1346,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 288
- },
- {
- "user": {
- "id": "13475981",
- "username": "imfasa",
- "fullName": "imfasa",
- "avatarUrl": "https://www.gravatar.com/avatar/5d8ff0d4ff92058c76fdd3aa74adbad2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-17 10:12:13"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 650,
- "target": 642,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 386
- },
- {
- "user": {
- "id": "14966559",
- "username": "anacapito",
- "fullName": "Franc Monroe (anacapito)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966559/medium/0562cb42f70b521e24bfd625b8dce4b9.png",
- "joined": "2021-10-18 03:42:34"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 647,
- "target": 676,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642902",
- "username": "kfern",
- "fullName": "Fernando Navarro (kfern)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642902/medium/75be12c06ec6e9a77bd4ef4ed3582c3d.jpeg",
- "joined": "2021-02-26 00:10:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 646,
- "target": 589,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 36,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14984193",
- "username": "Mourad820",
- "fullName": "Mourad Tajja (Mourad820)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984193/medium/4f7d92fc7cf31a84b0319c093942aa1c.jpg",
- "joined": "2021-10-31 12:19:45"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 645,
- "target": 623,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968665",
- "username": "Col0nell94",
- "fullName": "Col0nell94",
- "avatarUrl": "https://www.gravatar.com/avatar/f70765489454b5fb16c0ed2e481f6c21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 11:47:00"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 644,
- "target": 666,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029495",
- "username": "caceres.jose.fr",
- "fullName": "Jose Caceres (caceres.jose.fr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029495/medium/6cfbaec8bb35e6835abad73d00c81517.jpeg",
- "joined": "2021-11-24 13:59:37"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 644,
- "target": 715,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977837",
- "username": "Orrama",
- "fullName": "Marlon Ramirez Ortega (Orrama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977837/medium/9fb2b9c153d600ab0ac8618c5499a33d.png",
- "joined": "2021-10-27 05:34:54"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 636,
- "target": 747,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 199
- },
- {
- "user": {
- "id": "14059101",
- "username": "Julayi",
- "fullName": "Julayi",
- "avatarUrl": "https://www.gravatar.com/avatar/3bc13f1e0186692b5f7a5dc87450cb17?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-27 23:53:54"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 632,
- "target": 794,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14541604",
- "username": "ivomarinovic2",
- "fullName": "ivomarinovic2",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14541604/medium/00626370d1fd9409081e94f7cca08433.jpg",
- "joined": "2020-12-18 14:49:01"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 630,
- "target": 605,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 2,
- "winning": 117
- },
- {
- "user": {
- "id": "14678636",
- "username": "ukmv",
- "fullName": "ukmv",
- "avatarUrl": "https://www.gravatar.com/avatar/d99ee381142524eea505c08d8b55d338?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 09:15:46"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 630,
- "target": 471,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13904511",
- "username": "jeedani",
- "fullName": "jeedani",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13904511/medium/6862a85849c0483552067158ca0f3b07.jpg",
- "joined": "2019-07-03 03:46:37"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 629,
- "target": 350,
- "approved": 0,
- "voted": 44,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12476506",
- "username": "rodrigohenrik",
- "fullName": "Rodrigo Henrik (rodrigohenrik)",
- "avatarUrl": "https://www.gravatar.com/avatar/cf014358a25e10213239dd22e2814072?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 22:11:31"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 627,
- "target": 1488,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767082",
- "username": "necouo",
- "fullName": "Nemanja Stefanović (necouo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767082/medium/0fccf3a82fbadce0ebb0435a070a3bdf.png",
- "joined": "2021-05-21 13:56:02"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 626,
- "target": 603,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675712",
- "username": "LEMIBANDDEXARI",
- "fullName": "MIBAND (LEMIBANDDEXARI)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/3416b6f2cac5da2e70205556774c847e.png",
- "joined": "2021-03-26 08:03:58"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 626,
- "target": 676,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 13,
- "negativeVotes": 0,
- "winning": 49
- },
- {
- "user": {
- "id": "14401162",
- "username": "ftorresbriseno",
- "fullName": "Fanny Alejandra Torres Briseño (ftorresbriseno)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14401162/medium/34f1aeea92bcd02c05235bf486354148.jpeg",
- "joined": "2020-09-02 21:41:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 626,
- "target": 703,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 77
- },
- {
- "user": {
- "id": "14691832",
- "username": "imrulo.eth",
- "fullName": "Ruslan Ferrales (imrulo.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691832/medium/edac3ef58631bde43e40ac815ef18dc5.png",
- "joined": "2021-03-31 14:20:40"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 625,
- "target": 875,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 2,
- "winning": 2
- },
- {
- "user": {
- "id": "14902040",
- "username": "umarhidayatullah16",
- "fullName": "Umar Hidayatullah (umarhidayatullah16)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902040/medium/873a0fe05a4609c6b051ecec7c6c9508.png",
- "joined": "2021-08-30 11:33:56"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 625,
- "target": 500,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681014",
- "username": "JSHan94",
- "fullName": "JSHan94",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681014/medium/89ff2ae90c0e12294883c85d65e97e9c.png",
- "joined": "2021-03-23 22:29:59"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 620,
- "target": 380,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766776",
- "username": "rociodg",
- "fullName": "rociodg",
- "avatarUrl": "https://www.gravatar.com/avatar/09514e41728e92cdf81fb58b8f487408?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-21 07:58:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 618,
- "target": 688,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 179
- },
- {
- "user": {
- "id": "14254006",
- "username": "HESI",
- "fullName": "Henri Sirkkavaara (HESI)",
- "avatarUrl": "https://www.gravatar.com/avatar/6ce1d46f74be9c51deedea4f3b2fa522?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-13 01:37:20"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 618,
- "target": 472,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12457393",
- "username": "rchk",
- "fullName": "Henrik Mattsson-Mårn (rchk)",
- "avatarUrl": "https://www.gravatar.com/avatar/e2e474e6bbb88bb35698cd85fc1ab43b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-21 18:28:12"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 615,
- "target": 572,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14967831",
- "username": "shugo.eth",
- "fullName": "Shugo (shugo.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967831/medium/767a4323cc726a28c6ee0fe469d3d2a7.jpeg",
- "joined": "2021-10-19 01:02:28"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 615,
- "target": 1868,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14838806",
- "username": "CONSEQUENL50",
- "fullName": "CONSEQUENL50",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838806/medium/f1b727400eeeff54d73ab03020db79b3.PNG",
- "joined": "2021-07-25 06:54:23"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 614,
- "target": 521,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771456",
- "username": "marcusma",
- "fullName": "marcusma",
- "avatarUrl": "https://www.gravatar.com/avatar/a91e4ae62ef84bb9fa2e63901510b03e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 21:10:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 614,
- "target": 930,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 189
- },
- {
- "user": {
- "id": "14154609",
- "username": "mustafaturan",
- "fullName": "Mustafa Turan (mustafaturan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14154609/medium/3855733ddf0efc6bcbdf6889afd13a76.png",
- "joined": "2021-05-11 09:46:25"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 613,
- "target": 486,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 255
- },
- {
- "user": {
- "id": "14592976",
- "username": "YorkSvit",
- "fullName": "YorkSvit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14592976/medium/8aac6eeb10b86733844156b774ca665b.png",
- "joined": "2021-01-25 01:07:52"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 612,
- "target": 535,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 15,
- "winning": 0
- },
- {
- "user": {
- "id": "14972963",
- "username": "basamg440",
- "fullName": "Bastian Mertes (basamg440)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14972963/medium/fefc21eb6d8e484ee13a2d12e123b192.png",
- "joined": "2021-10-22 19:35:01"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 612,
- "target": 601,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623194",
- "username": "Arapuan",
- "fullName": "Arapuan Celestino (Arapuan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623194/medium/d8d7edb7af635f68efa5791cee17aa63.png",
- "joined": "2021-02-13 16:25:28"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 605,
- "target": 697,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 237
- },
- {
- "user": {
- "id": "14017439",
- "username": "hoainama8",
- "fullName": "Nam Ngô (hoainama8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14017439/medium/8b8b669377a509774445a42c0c45ca23.jpeg",
- "joined": "2019-10-18 03:21:33"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 602,
- "target": 797,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13878813",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/dbab6b6e01c9a1ec979b27c96ef1c095?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-28 08:11:47"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 602,
- "target": 545,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646822",
- "username": "BenjaminDetre",
- "fullName": "BenjaminDetre",
- "avatarUrl": "https://www.gravatar.com/avatar/92ff582851df3c70085d904e94828b52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 19:32:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 600,
- "target": 680,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 310
- },
- {
- "user": {
- "id": "15019905",
- "username": "e06-tech",
- "fullName": "e06-tech",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019905/medium/8d5a2069e2825a02309a7da0b1e019bb.png",
- "joined": "2021-11-24 07:02:13"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 598,
- "target": 539,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965577",
- "username": "crystalwu",
- "fullName": "crystalwu",
- "avatarUrl": "https://www.gravatar.com/avatar/619b03efcd670823daed12ec87a7cef7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-28 21:29:59"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 598,
- "target": 941,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 10,
- "winning": 78
- },
- {
- "user": {
- "id": "14902838",
- "username": "xl11sunny",
- "fullName": "xl11sunny",
- "avatarUrl": "https://www.gravatar.com/avatar/67f7e8245031387087e1f6c9e11c1a67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 03:07:50"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 597,
- "target": 679,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896728",
- "username": "ilijarudes84",
- "fullName": "ilijarudes84",
- "avatarUrl": "https://www.gravatar.com/avatar/c78bc289dad4d5c5e1cd3315e7a6f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 08:54:36"
- },
- "languages": [
- {
- "id": "mk",
- "name": "Macedonian"
- }
- ],
- "translated": 597,
- "target": 628,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949085",
- "username": "BhavinF",
- "fullName": "BhavinF",
- "avatarUrl": "https://www.gravatar.com/avatar/8104f96a5da684deed00abd499610e8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 01:15:24"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 597,
- "target": 871,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959141",
- "username": "peijie",
- "fullName": "Peijie (peijie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959141/medium/82f925f467905ab620b70a4b48eb25e8.jpg",
- "joined": "2019-08-22 07:38:26"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 592,
- "target": 1007,
- "approved": 0,
- "voted": 32,
- "positiveVotes": 33,
- "negativeVotes": 3,
- "winning": 297
- },
- {
- "user": {
- "id": "14963363",
- "username": "andreas_koutsakis",
- "fullName": "Andreas (andreas_koutsakis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963363/medium/9c8cd9d629afa2226119c89d759b5125.jpg",
- "joined": "2021-10-15 05:15:15"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 589,
- "target": 708,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 86
- },
- {
- "user": {
- "id": "14705796",
- "username": "seladigitaltrading",
- "fullName": "jakob medina (seladigitaltrading)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705796/medium/45f9b46fda15609f204ff40ccb176998.jpg",
- "joined": "2021-04-10 04:05:05"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 588,
- "target": 649,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 12,
- "negativeVotes": 3,
- "winning": 37
- },
- {
- "user": {
- "id": "14049937",
- "username": "hcf12",
- "fullName": "hcf12",
- "avatarUrl": "https://www.gravatar.com/avatar/d48c2c9a90d337d55293388a210ac404?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-09 12:21:55"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 587,
- "target": 515,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 106
- },
- {
- "user": {
- "id": "14844866",
- "username": "PavelM56",
- "fullName": "PavelM56",
- "avatarUrl": "https://www.gravatar.com/avatar/6398b3e46a3e7054b7ca09c59d1ede2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 02:49:08"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 580,
- "target": 493,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13151214",
- "username": "Technolex",
- "fullName": "Technolex",
- "avatarUrl": "https://www.gravatar.com/avatar/791ecd38a944b240bea06694828e6dd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 11:00:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 580,
- "target": 547,
- "approved": 1007,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 578
- },
- {
- "user": {
- "id": "13426340",
- "username": "aitorla",
- "fullName": "aitorla",
- "avatarUrl": "https://www.gravatar.com/avatar/92407cd6fab51fd7b6d083d9f853515c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 08:32:26"
- },
- "languages": [
- {
- "id": "eu",
- "name": "Basque"
- }
- ],
- "translated": 579,
- "target": 445,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13618985",
- "username": "itsthesola10",
- "fullName": "Karim Vergnes (itsthesola10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13618985/medium/7dc1a64f667dd13f60de7487b886d8d3.jpeg",
- "joined": "2021-02-18 10:05:13"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 579,
- "target": 665,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 452
- },
- {
- "user": {
- "id": "14983201",
- "username": "longartdavid",
- "fullName": "heber longart (longartdavid)",
- "avatarUrl": "https://www.gravatar.com/avatar/050a2eebc902660c90b7272d1ee4390a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 22:53:11"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 579,
- "target": 606,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14661636",
- "username": "marino2105",
- "fullName": "marino2105",
- "avatarUrl": "https://www.gravatar.com/avatar/90b0ccf4eae1678d86f5580c79c1f2bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 18:58:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 575,
- "target": 668,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 87
- },
- {
- "user": {
- "id": "14865340",
- "username": "tolunaydundar",
- "fullName": "Tolunay Dündar (tolunaydundar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865340/medium/66516d0d0ba888ac686b0fcc44b9e321.jpg",
- "joined": "2021-08-03 17:25:38"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 574,
- "target": 487,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005335",
- "username": "Mamorim",
- "fullName": "Mamorim",
- "avatarUrl": "https://www.gravatar.com/avatar/f82ada829f5ae687a76827cd7b41f4ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 07:11:52"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 572,
- "target": 604,
- "approved": 347,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13720923",
- "username": "adjobs70",
- "fullName": "e.g NguyenVietThao (adjobs70)",
- "avatarUrl": "https://www.gravatar.com/avatar/e4e72c286eeabd8c5e5dc107f0bd4922?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-24 19:52:19"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 568,
- "target": 745,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 63
- },
- {
- "user": {
- "id": "14614016",
- "username": "Anonyma",
- "fullName": "Anonyma_z (Anonyma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614016/medium/447ae91eb97d464346003fe6532cda12.jpg",
- "joined": "2021-10-13 09:03:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 568,
- "target": 631,
- "approved": 0,
- "voted": 47,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14545698",
- "username": "androidy",
- "fullName": "mohammed al-abri (androidy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545698/medium/4144cf90366f7ae4eaf551b0ad22a0b2.jpeg",
- "joined": "2020-12-21 23:23:04"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 565,
- "target": 523,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673652",
- "username": "lhenriquepbueno",
- "fullName": "Luiz Henrique Picolo Buneo (lhenriquepbueno)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673652/medium/4945074272bb5d8396791bef29d66013.jpg",
- "joined": "2021-03-18 16:32:46"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 563,
- "target": 611,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 131
- },
- {
- "user": {
- "id": "14557116",
- "username": "LQS_CZ_David",
- "fullName": "LQS_CZ_David",
- "avatarUrl": "https://www.gravatar.com/avatar/d1b270bb1ae7d524c68e0b990b150008?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-31 04:38:11"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 562,
- "target": 582,
- "approved": 583,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 556
- },
- {
- "user": {
- "id": "14989997",
- "username": "Sirlupinwatson1",
- "fullName": "Armand Brunelle (Sirlupinwatson1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989997/medium/58dac31cb4d977a29d3caf7d37e7cd45.jpeg",
- "joined": "2021-11-04 10:50:41"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 562,
- "target": 676,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14989121",
- "username": "sylvianvanbemmel",
- "fullName": "Chyllvian (sylvianvanbemmel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989121/medium/1507b0b8f93626fb0c0c36cbc12b378d.jpeg",
- "joined": "2021-11-03 15:54:07"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 560,
- "target": 539,
- "approved": 0,
- "voted": 71,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755532",
- "username": "ksenija",
- "fullName": "ksenija",
- "avatarUrl": "https://www.gravatar.com/avatar/3e1c987582c590bd1a73beb827ca4a4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 03:48:07"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 554,
- "target": 435,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13718717",
- "username": "Bartolumiu",
- "fullName": "Bartolumiu",
- "avatarUrl": "https://www.gravatar.com/avatar/e5de67486ef5e5afe9cc67b56a6eef23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 08:36:21"
- },
- "languages": [
- {
- "id": "eu",
- "name": "Basque"
- }
- ],
- "translated": 553,
- "target": 415,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856762",
- "username": "richardostrmn",
- "fullName": "richardostrmn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14856762/medium/8ba94b1cc2b169f34e314c11a0e7880b.jpeg",
- "joined": "2021-07-31 15:00:56"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 552,
- "target": 544,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996861",
- "username": "kaanmetu",
- "fullName": "Kaan Ataman (kaanmetu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/a93e7675448b5ea3eaa4485b70cea4ec.jpeg",
- "joined": "2021-11-10 20:25:32"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 551,
- "target": 499,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "15005017",
- "username": "catmalark",
- "fullName": "catmalark",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005017/medium/ebecfd5187d2eafcc7a249142442c7e1.png",
- "joined": "2021-11-16 01:59:45"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 549,
- "target": 498,
- "approved": 0,
- "voted": 43,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959345",
- "username": "will17",
- "fullName": "will17",
- "avatarUrl": "https://www.gravatar.com/avatar/75985612c9ae20b39b4703866e19899d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 10:54:52"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 549,
- "target": 537,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 60,
- "negativeVotes": 11,
- "winning": 16
- },
- {
- "user": {
- "id": "13959413",
- "username": "jonnycrypto",
- "fullName": "jonnycrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/e5920de8c353bca8434dd58a9e272436?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 11:58:13"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 549,
- "target": 559,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 26,
- "negativeVotes": 6,
- "winning": 77
- },
- {
- "user": {
- "id": "13960195",
- "username": "DamianoDamiano",
- "fullName": "DamianoDamiano",
- "avatarUrl": "https://www.gravatar.com/avatar/1ddbde4d55a9208b8b7e7bb82151f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 07:22:20"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 548,
- "target": 579,
- "approved": 0,
- "voted": 89,
- "positiveVotes": 38,
- "negativeVotes": 4,
- "winning": 26
- },
- {
- "user": {
- "id": "14136377",
- "username": "ftureleo",
- "fullName": "ftureleo",
- "avatarUrl": "https://www.gravatar.com/avatar/201d0aaf8c279e2413d3e05c2081e65b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-27 18:06:11"
- },
- "languages": [
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 547,
- "target": 635,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814106",
- "username": "agatavital13",
- "fullName": "agatavital13",
- "avatarUrl": "https://www.gravatar.com/avatar/aa2bcddbcf212717c3391de55a6ac4e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 16:39:33"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 543,
- "target": 528,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14764738",
- "username": "semprepk13",
- "fullName": "Sempre Patricia Kelly (semprepk13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764738/medium/dc4b07533773785e8353c86472ba6fe0.jpeg",
- "joined": "2021-05-19 21:38:37"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 542,
- "target": 662,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554590",
- "username": "s.morales1994",
- "fullName": "Sergio Morales (s.morales1994)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554590/medium/6131b744b822e28dc51b0e23466c270d.jpeg",
- "joined": "2020-12-29 04:59:06"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 542,
- "target": 578,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 72
- },
- {
- "user": {
- "id": "14762802",
- "username": "IvanaEth",
- "fullName": "IvanaEth",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762802/medium/bf27721f20f228816129b84335301a7f.jpg",
- "joined": "2021-05-18 14:54:06"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 541,
- "target": 339,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946723",
- "username": "skirankumar882",
- "fullName": "Kiran Kumar (skirankumar882)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946723/medium/f5acc0bfebb2dc6fd4c3e487dbeeb25a.png",
- "joined": "2021-10-01 23:50:33"
- },
- "languages": [
- {
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 541,
- "target": 801,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14566830",
- "username": "mohammad10",
- "fullName": "Amin R (mohammad10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566830/medium/b36a8753b4c2f3b12cc7ddf31f0623c0.jpg",
- "joined": "2021-01-07 11:03:09"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 536,
- "target": 667,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14210528",
- "username": "DCBR",
- "fullName": "Jonathan Magalhães (DCBR)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14210528/medium/c7c6edf96670918fe49f544239a2b1ce.jpeg",
- "joined": "2020-04-16 12:53:33"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 535,
- "target": 586,
- "approved": 0,
- "voted": 38,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 181
- },
- {
- "user": {
- "id": "14835760",
- "username": "Pineapple010223",
- "fullName": "Pineapple010223",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14835760/medium/36a5126df6f3fab680a105268d03592c.jpg",
- "joined": "2021-07-11 16:14:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 535,
- "target": 848,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 148
- },
- {
- "user": {
- "id": "14912999",
- "username": "nemetz83",
- "fullName": "nemetz83",
- "avatarUrl": "https://www.gravatar.com/avatar/1ef6670a20f27964e1859f46824d0774?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 13:44:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 530,
- "target": 424,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005475",
- "username": "TTG_MLY",
- "fullName": "TTG_MLY",
- "avatarUrl": "https://www.gravatar.com/avatar/d561292be8daa0a3d305dea33fed9465?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 09:03:08"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 527,
- "target": 542,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717614",
- "username": "juniorphb",
- "fullName": "Fco Veras Jr (juniorphb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717614/medium/7a7c2429a4f8c7d13e760203abc0a708.jpeg",
- "joined": "2021-04-19 02:56:53"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 526,
- "target": 511,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949753",
- "username": "YuliiaPletenetska",
- "fullName": "YuliiaPletenetska",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949753/medium/8d95e7ca632d0227eefa906308e8b734.jpg",
- "joined": "2021-10-12 09:48:29"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 525,
- "target": 430,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 25,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962881",
- "username": "xSpeed",
- "fullName": "Reed-SolomonE (xSpeed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962881/medium/0c409aba2e7ab01ee0fe436b87395698.JPG",
- "joined": "2021-10-14 18:09:20"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 522,
- "target": 469,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576810",
- "username": "MaximeBtn",
- "fullName": "MaximeBtn",
- "avatarUrl": "https://www.gravatar.com/avatar/26dd6c4e6b4a9a5ac84abc1689df57ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 08:50:34"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 520,
- "target": 581,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "13981955",
- "username": "orzalaga",
- "fullName": "Julio César Velásquez Mejía (orzalaga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13981955/medium/dfd17ae7d8a17413f45733fb2c672a35.jpeg",
- "joined": "2021-11-06 00:51:46"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 519,
- "target": 609,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14574648",
- "username": "aveurora",
- "fullName": "eresytter (aveurora)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14574648/medium/d82aff1821b0583f8fe4673a272d2ee7.png",
- "joined": "2021-01-12 23:24:16"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 517,
- "target": 448,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 6,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14050969",
- "username": "juanfahler",
- "fullName": "juanfahler",
- "avatarUrl": "https://www.gravatar.com/avatar/7d55f23b74c20ace1d5f6dabcae4047b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-11 09:17:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 514,
- "target": 575,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 206
- },
- {
- "user": {
- "id": "14652358",
- "username": "Iberriak",
- "fullName": "4 Trastos Agencia Creativa (Iberriak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652358/medium/b670537abb6dfccf1ff57ac170a7d1ee.jpeg",
- "joined": "2021-03-04 01:39:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 513,
- "target": 552,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 1,
- "winning": 142
- },
- {
- "user": {
- "id": "14581500",
- "username": "hayat_diye_1_sey",
- "fullName": "Can Karataş (hayat_diye_1_sey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581500/medium/88fa54d8d612b9c26335b3a89b57da2e.jpeg",
- "joined": "2021-01-17 14:49:20"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 513,
- "target": 482,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 402
- },
- {
- "user": {
- "id": "14857374",
- "username": "AlexandraM",
- "fullName": "AlexandraM",
- "avatarUrl": "https://www.gravatar.com/avatar/03efa1ca80db76aa09b28020af3e68bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-29 05:05:52"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 512,
- "target": 432,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14036291",
- "username": "AmoweOlubusayo",
- "fullName": "AmoweOlubusayo",
- "avatarUrl": "https://www.gravatar.com/avatar/49406c4b7ba28aff04ef1e072bac8bb7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-14 14:44:34"
- },
- "languages": [
- {
- "id": "yo",
- "name": "Yoruba"
- }
- ],
- "translated": 511,
- "target": 714,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810002",
- "username": "pettinarip",
- "fullName": "Pablo Pettinari (pettinarip)",
- "avatarUrl": "https://www.gravatar.com/avatar/ba86a933c7e919a2b12f9a431e54fd9a?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 13:58:42"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 509,
- "target": 598,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 76
- },
- {
- "user": {
- "id": "15012107",
- "username": "TTG_FR",
- "fullName": "TTG_FR",
- "avatarUrl": "https://www.gravatar.com/avatar/02036de3a59a96080761f7fff486db8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 19:02:36"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 508,
- "target": 631,
- "approved": 763,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 508
- },
- {
- "user": {
- "id": "14307842",
- "username": "tiagomesquita",
- "fullName": "Tiago Mesquita (tiagomesquita)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14307842/medium/286c5d14d3436b1f58cb218e781f24cc.PNG",
- "joined": "2021-01-23 19:03:28"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 502,
- "target": 519,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684534",
- "username": "juniorhdblr",
- "fullName": "Jus1x (juniorhdblr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684534/medium/72b0043d6843b4f62a43797bb7b75848.jpg",
- "joined": "2021-03-26 09:26:13"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 502,
- "target": 452,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 78
- },
- {
- "user": {
- "id": "14532170",
- "username": "Adelino_Francisco",
- "fullName": "Adelino_Francisco",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14532170/medium/1de0a3ea0efc06f96a81d634424fdda6.jpeg",
- "joined": "2020-12-28 01:51:50"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 500,
- "target": 560,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966159",
- "username": "bafrani",
- "fullName": "Ahmad Pourbafrani (bafrani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966159/medium/c51fc2b1e6cf7ef020396751ad9b854b.png",
- "joined": "2021-10-17 17:02:03"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 499,
- "target": 675,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14014303",
- "username": "aturX",
- "fullName": "Atur (aturX)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14014303/medium/4abdce702cf667d98afe35be1e796b46.jpeg",
- "joined": "2020-03-18 22:08:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 496,
- "target": 808,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 200
- },
- {
- "user": {
- "id": "14895372",
- "username": "iosayin",
- "fullName": "iosayin",
- "avatarUrl": "https://www.gravatar.com/avatar/0106b5930267370e77a54b23cd022fec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 09:45:24"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 493,
- "target": 369,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732012",
- "username": "FlavioEPimentel",
- "fullName": "Flávio E Pimentel (FlavioEPimentel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732012/medium/202a93142c6959ff5855813a8735d10a.png",
- "joined": "2021-04-29 22:26:44"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 490,
- "target": 532,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14821880",
- "username": "jonathanandrade10",
- "fullName": "jonathanandrade10",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821880/medium/59c6c840e75ec03af8b88b5005744137.jpeg",
- "joined": "2021-06-30 12:47:47"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 489,
- "target": 500,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569018",
- "username": "zfrtmz89",
- "fullName": "Zafer Temiz (zfrtmz89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569018/medium/70435bca8b3029b694e77e3af1de845c.jpeg",
- "joined": "2021-01-09 02:10:34"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 488,
- "target": 408,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 420
- },
- {
- "user": {
- "id": "14814538",
- "username": "multilkyx",
- "fullName": "Multi lkyx (multilkyx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814538/medium/a758db833b50a769463ef35c5d5b99f1.gif",
- "joined": "2021-06-24 23:36:03"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 488,
- "target": 478,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 71
- },
- {
- "user": {
- "id": "14707230",
- "username": "M1ting",
- "fullName": "AKA.miting (M1ting)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707230/medium/ee5de7436e01ca1fae88b235cfa6adec.png",
- "joined": "2021-04-11 09:06:18"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 488,
- "target": 818,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 173
- },
- {
- "user": {
- "id": "14844630",
- "username": "federossotto",
- "fullName": "Federico Rossotto (federossotto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844630/medium/d45be4767bd1a7607afefb86919b908c.jpeg",
- "joined": "2021-08-24 13:29:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 487,
- "target": 583,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002239",
- "username": "maedrag0vich_",
- "fullName": "maedrag0vich_",
- "avatarUrl": "https://www.gravatar.com/avatar/80a8507728d5863c9be644372810a645?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 15:35:38"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 487,
- "target": 421,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002255",
- "username": "AsharFR",
- "fullName": "AsharFR",
- "avatarUrl": "https://www.gravatar.com/avatar/dffad03f7c651a72565b53bef30adba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 15:48:44"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 485,
- "target": 555,
- "approved": 0,
- "voted": 55,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733302",
- "username": "mandagala",
- "fullName": "mandagala",
- "avatarUrl": "https://www.gravatar.com/avatar/efc73254f033c8fbd2a69839cbd28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 14:09:33"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 484,
- "target": 467,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 61,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14953407",
- "username": "shuric31",
- "fullName": "shuric31",
- "avatarUrl": "https://www.gravatar.com/avatar/dcb97972b62b20ca269f5ed21b9bb7d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 06:11:06"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 482,
- "target": 435,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 277
- },
- {
- "user": {
- "id": "14575390",
- "username": "mdedeu",
- "fullName": "mdedeu",
- "avatarUrl": "https://www.gravatar.com/avatar/71cf96d6e9c3efaa1c23414185df79fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 10:24:05"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 481,
- "target": 565,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 120
- },
- {
- "user": {
- "id": "14779586",
- "username": "patrick020804",
- "fullName": "Patrick D. Halberg (patrick020804)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779586/medium/e95f76f316fe199da587bb52cdb0e89d.png",
- "joined": "2021-05-31 04:00:22"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 480,
- "target": 481,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669694",
- "username": "txlyre",
- "fullName": "Nika Kalanakova (txlyre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669694/medium/a562de0efbc590c1b69f67c3308c47ed.jpg",
- "joined": "2021-03-16 01:33:13"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 478,
- "target": 440,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 229
- },
- {
- "user": {
- "id": "13128900",
- "username": "YannAries",
- "fullName": "Y@nnick (YannAries)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13128900/medium/7d1e00ebe7aca553dd475b2b888e769f.jpeg",
- "joined": "2021-11-16 15:59:52"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 477,
- "target": 519,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734372",
- "username": "oliver-soeser",
- "fullName": "Oliver Söser (oliver-soeser)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734372/medium/4ef6d9d2327019661cc5b9191ce2ad32.png",
- "joined": "2021-05-01 14:05:43"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 476,
- "target": 400,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14752230",
- "username": "GreyWagtail",
- "fullName": "GreyWagtail",
- "avatarUrl": "https://www.gravatar.com/avatar/2134bb0381e2f0dd775e81236c470e08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 03:00:49"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 476,
- "target": 1339,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 15,
- "negativeVotes": 10,
- "winning": 0
- },
- {
- "user": {
- "id": "15002741",
- "username": "dariusheslamipor",
- "fullName": "Dariush Eslami (dariusheslamipor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002741/medium/368ee2e7888434a922e5781aa2c194bf.jpeg",
- "joined": "2021-11-14 04:44:37"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 475,
- "target": 581,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867990",
- "username": "jasperhart",
- "fullName": "Jasper 't Hart (jasperhart)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867990/medium/ff04b27d870cfd316e6f20cfd87e438a.png",
- "joined": "2021-08-05 16:24:39"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 472,
- "target": 480,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12358726",
- "username": "cardex",
- "fullName": "Selim Unver (cardex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12358726/medium/b3cea9e8e6ca4b84de7d0b0d3f071827.jpg",
- "joined": "2021-10-30 18:37:06"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 472,
- "target": 368,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "13903167",
- "username": "hskang9",
- "fullName": "Hyungsuk Kang (hskang9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903167/medium/db2b2e0dd9d6e8eb028cb29c3808a7a4.jpeg",
- "joined": "2019-07-02 04:25:03"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 472,
- "target": 423,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14787072",
- "username": "HidroGaming",
- "fullName": "_H1dR0_ (HidroGaming)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787072/medium/43874b3e9048a461c2bf7be02100d08d.png",
- "joined": "2021-09-29 08:13:38"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 471,
- "target": 584,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600656",
- "username": "0xl",
- "fullName": "0xl",
- "avatarUrl": "https://www.gravatar.com/avatar/b82b7f4ff4cd75ce06bd2eb38b0ac9cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 17:07:43"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 470,
- "target": 432,
- "approved": 0,
- "voted": 50,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 132
- },
- {
- "user": {
- "id": "14632172",
- "username": "NryxMusic",
- "fullName": "Nryx (NryxMusic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632172/medium/9b192bb4cb67d5b37ba5c7d6d6a52880.png",
- "joined": "2021-02-19 16:31:31"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 469,
- "target": 446,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14599908",
- "username": "translate.yandex.ru",
- "fullName": "translate.yandex.ru",
- "avatarUrl": "https://www.gravatar.com/avatar/c36c6dee92844a8b37472fe2637b4268?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 07:06:02"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 468,
- "target": 398,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 133
- },
- {
- "user": {
- "id": "12427762",
- "username": "zhous",
- "fullName": "zhous",
- "avatarUrl": "https://www.gravatar.com/avatar/151b6388b20487473d630f98ddf99805?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 04:34:34"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 468,
- "target": 834,
- "approved": 0,
- "voted": 243,
- "positiveVotes": 37,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982821",
- "username": "adriolguin",
- "fullName": "Adrian Olguin (adriolguin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982821/medium/1d14c841994683501efe6856e8ca396f.jpg",
- "joined": "2021-10-30 13:53:07"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 466,
- "target": 495,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978565",
- "username": "paulDE",
- "fullName": "paulDE",
- "avatarUrl": "https://www.gravatar.com/avatar/e610595f1678b9c8d02ad759c0944182?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-27 16:11:25"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 466,
- "target": 448,
- "approved": 0,
- "voted": 52,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023365",
- "username": "tomworxs",
- "fullName": "tomworxs",
- "avatarUrl": "https://www.gravatar.com/avatar/d58e0868ecaa2277d865042e97a961b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 20:59:26"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 462,
- "target": 516,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737978",
- "username": "ZeroSlayer",
- "fullName": "ZeroSlayer",
- "avatarUrl": "https://www.gravatar.com/avatar/380c49ddbb967b5cc345f3f544059f5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 11:59:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 459,
- "target": 438,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14614386",
- "username": "cyberlize",
- "fullName": "cyberlize",
- "avatarUrl": "https://www.gravatar.com/avatar/da13bd29e41187ca25f4cf1e1e2194e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 02:05:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 458,
- "target": 891,
- "approved": 0,
- "voted": 66,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 42
- },
- {
- "user": {
- "id": "14660858",
- "username": "Mahmoudalsyd",
- "fullName": "Philosophy فَلْسَفَة (Mahmoudalsyd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660858/medium/18b0483f449f20999652cc9384994164.jpg",
- "joined": "2021-03-09 20:35:08"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 456,
- "target": 452,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957505",
- "username": "joaopedroesteves",
- "fullName": "João Esteves de Carvalho (joaopedroesteves)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957505/medium/759c1369327c89f68c02c2e9e0c1f2a8.jpeg",
- "joined": "2021-10-10 16:36:57"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 456,
- "target": 500,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 60
- },
- {
- "user": {
- "id": "14609942",
- "username": "yuvi76",
- "fullName": "Yuvi (yuvi76)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609942/medium/fbeb5b19a1b160d02131066d3e1475ab.png",
- "joined": "2021-02-05 01:09:37"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 455,
- "target": 756,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710538",
- "username": "StayCoolDK",
- "fullName": "Frankieboy93 (StayCoolDK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710538/medium/43522513b3c357f3de6b6e0e0be597aa.jpg",
- "joined": "2021-04-13 15:41:13"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 450,
- "target": 450,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723652",
- "username": "nigthguarder",
- "fullName": "nigthguarder",
- "avatarUrl": "https://www.gravatar.com/avatar/9ed9f22ebeb82c371b8a30a4d9c28fb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 09:47:48"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 449,
- "target": 376,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905078",
- "username": "cryptoboi21",
- "fullName": "cryptoboi21",
- "avatarUrl": "https://www.gravatar.com/avatar/9f0cbdf8fc9e85ca33cb1952af123cfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 14:46:43"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 449,
- "target": 364,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723930",
- "username": "Ebisuzawa_Kurumi",
- "fullName": "Yuki Takeya (Ebisuzawa_Kurumi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723930/medium/2d6585159bd9080dcc59df93a2056fe7.jpeg",
- "joined": "2021-04-23 13:32:14"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 448,
- "target": 341,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786572",
- "username": "ohmygosh",
- "fullName": "ohmygosh",
- "avatarUrl": "https://www.gravatar.com/avatar/b304387a3d7f3421a5b6dbed250f7f67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 19:58:28"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 447,
- "target": 462,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12646084",
- "username": "punjabiangem",
- "fullName": "punjabiangem",
- "avatarUrl": "https://www.gravatar.com/avatar/00b6bbe15939f15a820ed0fadf8bf834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 10:24:47"
- },
- "languages": [
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 442,
- "target": 547,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773990",
- "username": "franrungo",
- "fullName": "Fran Rungo (franrungo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773990/medium/47a7bdb594a935a135b55d6fd938ff41.png",
- "joined": "2021-05-26 14:34:41"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 441,
- "target": 389,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 30
- },
- {
- "user": {
- "id": "15020371",
- "username": "danielsotog",
- "fullName": "danielsotog",
- "avatarUrl": "https://www.gravatar.com/avatar/0822f1dc9f3dec8545f759f0b092229c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 13:36:21"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 439,
- "target": 507,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732454",
- "username": "Eliseowzy",
- "fullName": "WangZY (Eliseowzy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732454/medium/02ecbccec638f087235f25edb54b61e4.png",
- "joined": "2021-04-30 04:17:23"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 439,
- "target": 746,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 228
- },
- {
- "user": {
- "id": "15028479",
- "username": "jtauil",
- "fullName": "Julieta Tauil (jtauil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028479/medium/ed3bfe8c5f223b62ec35989faa018bef.png",
- "joined": "2021-11-23 21:13:23"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 435,
- "target": 470,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13893213",
- "username": "RelliuG",
- "fullName": "Isaac Silva (RelliuG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13893213/medium/88d6b8bda7b6073efd27b5a1799694cc.jpeg",
- "joined": "2021-09-06 08:58:24"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 434,
- "target": 450,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995487",
- "username": "Gu1ll0t3",
- "fullName": "Gu1ll0t3",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995487/medium/f890d1e85e50d0289ca19930aae629d1.png",
- "joined": "2021-11-08 18:00:44"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 434,
- "target": 442,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14612382",
- "username": "burningtree",
- "fullName": "tree (burningtree)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612382/medium/2c404859485a4c240c8a12ad48584c00.jpeg",
- "joined": "2021-02-06 15:58:24"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 434,
- "target": 402,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740728",
- "username": "ALixx12",
- "fullName": "ALixx12",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740728/medium/e68abe778c3d7be95531e372a30169b1.jpeg",
- "joined": "2021-05-06 10:48:29"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 433,
- "target": 814,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 204
- },
- {
- "user": {
- "id": "14091097",
- "username": "mm319",
- "fullName": "mm319",
- "avatarUrl": "https://www.gravatar.com/avatar/bdac44f8d43892bc782c768b6bb2ef18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-27 08:28:51"
- },
- "languages": [
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 431,
- "target": 338,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977143",
- "username": "David0",
- "fullName": "David0",
- "avatarUrl": "https://www.gravatar.com/avatar/079915c43f9e9335cb9507680fb52dec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-26 14:29:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 428,
- "target": 464,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 45
- },
- {
- "user": {
- "id": "14660922",
- "username": "ysai",
- "fullName": "ysai",
- "avatarUrl": "https://www.gravatar.com/avatar/4f68febf1efc29b70458e1470a703904?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 21:41:52"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 428,
- "target": 388,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962531",
- "username": "danteivanelizondo",
- "fullName": "Dante Elizondo (danteivanelizondo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962531/medium/7a7bc42a3b25637aa087669e3e151de3.jpeg",
- "joined": "2021-10-14 12:02:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 428,
- "target": 456,
- "approved": 0,
- "voted": 119,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 46
- },
- {
- "user": {
- "id": "13988731",
- "username": "andresbonilla",
- "fullName": "andresbonilla",
- "avatarUrl": "https://www.gravatar.com/avatar/f462cd104ed966dbc4cd324b9f00e002?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-19 15:07:19"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 428,
- "target": 528,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 168
- },
- {
- "user": {
- "id": "14669508",
- "username": "Gianmarcodev",
- "fullName": "Gianmarco Venerito (Gianmarcodev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669508/medium/a8a764af2fe9af958a410c723fbd2167.png",
- "joined": "2021-04-05 12:19:10"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 427,
- "target": 364,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 126
- },
- {
- "user": {
- "id": "14988691",
- "username": "gargavar",
- "fullName": "gargavar",
- "avatarUrl": "https://www.gravatar.com/avatar/d2451670ce34a7f8ed1646923c0a6be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-03 09:26:22"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 423,
- "target": 409,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623006",
- "username": "nuke_stan",
- "fullName": "nuke_stan",
- "avatarUrl": "https://www.gravatar.com/avatar/605676bbe3582a9f48a17f150080aa33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 13:01:06"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 422,
- "target": 385,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 126
- },
- {
- "user": {
- "id": "14603102",
- "username": "nadja220376",
- "fullName": "Георгий Кудрявцев (nadja220376)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14603102/medium/e4d0c5d95c113fc5d67d01da1d90a091.jpeg",
- "joined": "2021-01-31 14:12:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 420,
- "target": 363,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 82
- },
- {
- "user": {
- "id": "12673086",
- "username": "alvaro3639",
- "fullName": "Alvaro Gutierrez (alvaro3639)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12673086/medium/c4dd31ecaaffcae28a9ec421a8a12248.jpg",
- "joined": "2021-06-12 07:52:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 418,
- "target": 390,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 70
- },
- {
- "user": {
- "id": "13697059",
- "username": "manfer33",
- "fullName": "Manuel J. Fernández (manfer33)",
- "avatarUrl": "https://www.gravatar.com/avatar/f9dee6ccff03adacb1ace021fba057b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 18:22:31"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 416,
- "target": 442,
- "approved": 0,
- "voted": 37,
- "positiveVotes": 6,
- "negativeVotes": 2,
- "winning": 75
- },
- {
- "user": {
- "id": "14863670",
- "username": "Fjip",
- "fullName": "Fjip",
- "avatarUrl": "https://www.gravatar.com/avatar/8bfdb4c5d5880bc97e561e52d640bfb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 14:29:19"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 416,
- "target": 417,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718106",
- "username": "xenwilliam",
- "fullName": "XENWILLIAM (xenwilliam)",
- "avatarUrl": "https://www.gravatar.com/avatar/0193309e1c9718da74e8031173710153?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 10:21:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 416,
- "target": 380,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14779212",
- "username": "matthewrock2011",
- "fullName": "Lil Homo (matthewrock2011)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779212/medium/39661a937aa3dc153a7acd8d06b4a8fd.jpeg",
- "joined": "2021-05-30 19:21:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 415,
- "target": 370,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14776668",
- "username": "ana.rodrigues",
- "fullName": "ana.rodrigues",
- "avatarUrl": "https://www.gravatar.com/avatar/67de41c05bb9a3bbf6ac836098557d26?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 12:57:57"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 415,
- "target": 387,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14758430",
- "username": "Maitha01",
- "fullName": "Maitha01",
- "avatarUrl": "https://www.gravatar.com/avatar/740fbf77f98b5235c9b65b1c5f607bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 15:38:15"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 413,
- "target": 402,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738174",
- "username": "viniciusfortuna",
- "fullName": "Vinicius Fortunato (viniciusfortuna)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738174/medium/a23ee260095a908ffd92c2aa8dd6d7e6.jpeg",
- "joined": "2021-05-04 15:35:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 413,
- "target": 391,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14245260",
- "username": "phichayut_N",
- "fullName": "Phichayut Ngoennim (phichayut_N)",
- "avatarUrl": "https://www.gravatar.com/avatar/306a9b5263f98bbabfa9bdd42f265133?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-07 04:48:34"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 413,
- "target": 169,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14223422",
- "username": "Tquintero",
- "fullName": "Tomas Quintero (Tquintero)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14223422/medium/4dc704a8cdf6f34719fec8d794700484.jpg",
- "joined": "2020-04-24 03:03:21"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 413,
- "target": 452,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 36
- },
- {
- "user": {
- "id": "14902198",
- "username": "sobna123lampa",
- "fullName": "sobna123lampa",
- "avatarUrl": "https://www.gravatar.com/avatar/f51085ad1e1a530e652e6b6ecd1b9296?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-30 13:44:13"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 410,
- "target": 291,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605908",
- "username": "datsyk",
- "fullName": "Володимир Дацик (datsyk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605908/medium/e9addc830e5cf287cd1fb145b40be05e.jpeg",
- "joined": "2021-02-02 10:04:34"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 409,
- "target": 358,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14947743",
- "username": "notcoolnickname",
- "fullName": "notcoolnickname",
- "avatarUrl": "https://www.gravatar.com/avatar/2d4d20425b5dfb7deb4b4956c7e5e382?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 19:27:25"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 409,
- "target": 340,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896464",
- "username": "420Monty69",
- "fullName": "420Monty69",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896464/medium/4358f147e415e6175d852389f1075884.png",
- "joined": "2021-08-26 04:58:46"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "hr",
- "name": "Croatian"
- },
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 409,
- "target": 364,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13629413",
- "username": "haikyuu.99",
- "fullName": "Muhammad Pandam Pramudya (haikyuu.99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13629413/medium/b9910bfed553c9bb03b18ff1d614273b.jpg",
- "joined": "2020-12-22 11:30:31"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 408,
- "target": 391,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 77,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14948857",
- "username": "ultralord97",
- "fullName": "ultralord97",
- "avatarUrl": "https://www.gravatar.com/avatar/0ba5ca3f7651df45d91f39bad69bd47a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-03 19:03:42"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 408,
- "target": 410,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960301",
- "username": "BlindNotDeaf",
- "fullName": "BlindNotDeaf",
- "avatarUrl": "https://www.gravatar.com/avatar/1a728f2b7b505565c96050fabecebb58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 09:34:31"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 404,
- "target": 450,
- "approved": 0,
- "voted": 47,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 42
- },
- {
- "user": {
- "id": "14896188",
- "username": "Megalo-don",
- "fullName": "Adonis Ferreira (Megalo-don)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896188/medium/f5f379d22d24f76f3a69d28b32c68e08.png",
- "joined": "2021-08-25 22:48:23"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 402,
- "target": 456,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572026",
- "username": "Lurdespons",
- "fullName": "Lurdespons",
- "avatarUrl": "https://www.gravatar.com/avatar/070122b85e82c3b6bcc63ab11eb0c46b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 04:36:14"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 401,
- "target": 492,
- "approved": 583,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 398
- },
- {
- "user": {
- "id": "13986393",
- "username": "ivanch",
- "fullName": "José Henrique Ivanchechen (ivanch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986393/medium/f7d4c9676c7577fc56ce937af1b6dd37.jpeg",
- "joined": "2019-09-17 17:50:20"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 401,
- "target": 420,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 110
- },
- {
- "user": {
- "id": "14645998",
- "username": "Sercangnc",
- "fullName": "Sercan Genç (Sercangnc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645998/medium/8f30fe98be89f8eb293918567bbf6bdd.jpeg",
- "joined": "2021-02-28 06:35:52"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 399,
- "target": 315,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 307
- },
- {
- "user": {
- "id": "14813188",
- "username": "zhizheng",
- "fullName": "Zack Wang (zhizheng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813188/medium/2e7f6339b3b0cef257f1a26dd6fdc970.jpeg",
- "joined": "2021-06-23 23:01:14"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 395,
- "target": 491,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14708670",
- "username": "antoniodepaos",
- "fullName": "Toño Pallarés (antoniodepaos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708670/medium/088fdcb540084a684d4a8f04acfd7144.jpg",
- "joined": "2021-04-12 10:19:15"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 395,
- "target": 437,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 242
- },
- {
- "user": {
- "id": "14966089",
- "username": "ignb",
- "fullName": "ignb",
- "avatarUrl": "https://www.gravatar.com/avatar/e20f697e42a3a97a570cf9837a242b9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-17 15:55:38"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 394,
- "target": 353,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197298",
- "username": "hamza.001ghz",
- "fullName": "Hamza El GhAZALY (hamza.001ghz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197298/medium/5ea8bb8d213209d9ac915d075bc4b61f.jpeg",
- "joined": "2020-04-08 15:33:16"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 391,
- "target": 371,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 1,
- "winning": 17
- },
- {
- "user": {
- "id": "14712840",
- "username": "FelipeMaitan",
- "fullName": "FelipeMaitan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712840/medium/cfd99eb4dba39d60d3f78be48724cebe.png",
- "joined": "2021-04-15 08:18:47"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 390,
- "target": 392,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 29,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765612",
- "username": "mintleaf",
- "fullName": "Shawna Lee (mintleaf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765612/medium/95146c9af272a6aa0fe1ee9060d19ab4.jpeg",
- "joined": "2021-05-20 11:18:22"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 390,
- "target": 778,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673994",
- "username": "JasmineHsu",
- "fullName": "Jasmine Hsu (JasmineHsu)",
- "avatarUrl": "https://www.gravatar.com/avatar/c9764a6beef68ac64ac12cee2416c972?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 00:08:59"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 389,
- "target": 793,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 73
- },
- {
- "user": {
- "id": "14950177",
- "username": "tapioka84",
- "fullName": "tapioka84",
- "avatarUrl": "https://www.gravatar.com/avatar/cbf38ef6587462d281c1e90c068b9cde?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 18:14:58"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 387,
- "target": 377,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559422",
- "username": "markxoe",
- "fullName": "Mark Oude Elberink (markxoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559422/medium/7531e2bf469cf5f588d633eccb3ab1ad.jpeg",
- "joined": "2021-01-27 08:43:26"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 386,
- "target": 376,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 75
- },
- {
- "user": {
- "id": "13830805",
- "username": "kecrily",
- "fullName": "Percy (kecrily)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13830805/medium/93feb6bb91075026d6409acb05c90edd.jpeg",
- "joined": "2021-07-05 04:30:56"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 386,
- "target": 500,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 220
- },
- {
- "user": {
- "id": "14680410",
- "username": "Stanley15",
- "fullName": "Stanley15",
- "avatarUrl": "https://www.gravatar.com/avatar/4c903bece031c7a39fffd7b5b5abbb8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 12:46:52"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 383,
- "target": 283,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 248
- },
- {
- "user": {
- "id": "14698688",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/b30370be580bd1fabe043525f3b43e28?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 14:08:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 381,
- "target": 386,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950209",
- "username": "cesarsscorpion",
- "fullName": "cesar llano (cesarsscorpion)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950209/medium/d999b054672bbfb715f0c09166aa4887.png",
- "joined": "2021-10-04 18:45:56"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 379,
- "target": 406,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 128,
- "negativeVotes": 3,
- "winning": 192
- },
- {
- "user": {
- "id": "12350818",
- "username": "anod1",
- "fullName": "anod1",
- "avatarUrl": "https://www.gravatar.com/avatar/736fb92e34dd85675a9e1b3c35369197?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-12 08:48:55"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 375,
- "target": 368,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 23,
- "negativeVotes": 1,
- "winning": 67
- },
- {
- "user": {
- "id": "14820306",
- "username": "yetangxu",
- "fullName": "yetangxu",
- "avatarUrl": "https://www.gravatar.com/avatar/4e66256fbbafcf872ad8db6f07173208?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 10:29:46"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 373,
- "target": 3330,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 82
- },
- {
- "user": {
- "id": "15025653",
- "username": "TsubTsub",
- "fullName": "TsubTsub",
- "avatarUrl": "https://www.gravatar.com/avatar/e4ae10f8e06992d98372770f0b7bf81c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 23:13:26"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 373,
- "target": 933,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905094",
- "username": "Robbie12Lawler",
- "fullName": "Robbie12Lawler",
- "avatarUrl": "https://www.gravatar.com/avatar/9047220ba1bae1ef155706e5c606e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 14:58:23"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 371,
- "target": 288,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558364",
- "username": "Zachinquarantine",
- "fullName": "Zachinquarantine",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558364/medium/f255e187347bd3356751f4c43d10f4be.jpeg",
- "joined": "2021-05-07 09:25:15"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 371,
- "target": 310,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896404",
- "username": "Gymfreak92",
- "fullName": "Gymfreak92",
- "avatarUrl": "https://www.gravatar.com/avatar/d33350c910d9b7b08a25c6e1c82e7ca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 04:05:38"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 370,
- "target": 287,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14011521",
- "username": "tmartinek3798",
- "fullName": "Tomáš Martinek (tmartinek3798)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14011521/medium/11d2b8b7556c6f6d65d6653cb793380a.jpeg",
- "joined": "2019-10-12 12:26:00"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 370,
- "target": 305,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 2,
- "winning": 49
- },
- {
- "user": {
- "id": "14952461",
- "username": "lucaGazzola",
- "fullName": "Luca Gazzola (lucaGazzola)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952461/medium/d9411adee28972f04109cfa53618d2f9.jpeg",
- "joined": "2021-10-06 11:48:12"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 369,
- "target": 381,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14137021",
- "username": "liraz.siri2",
- "fullName": "Liraz Siri (liraz.siri2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14137021/medium/e23adf8d83409e54947a011fc14039ac.jpeg",
- "joined": "2020-02-27 10:09:16"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 369,
- "target": 339,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881554",
- "username": "amisha-adwani",
- "fullName": "Amisha (amisha-adwani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881554/medium/129e61bb9dafa27ea7bd84ebf2e145bf.jpeg",
- "joined": "2021-08-15 15:18:45"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 368,
- "target": 613,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14954429",
- "username": "Manflack",
- "fullName": "Manflack",
- "avatarUrl": "https://www.gravatar.com/avatar/48baa6bfae573b123ad7090df79ea114?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 02:11:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 368,
- "target": 390,
- "approved": 0,
- "voted": 39,
- "positiveVotes": 67,
- "negativeVotes": 1,
- "winning": 143
- },
- {
- "user": {
- "id": "14998169",
- "username": "xcanchal",
- "fullName": "Xavier Canchal (xcanchal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998169/medium/6da03bbf781254776ba5a5c630ee4644.png",
- "joined": "2021-11-10 16:45:02"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 367,
- "target": 406,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801934",
- "username": "allanalves",
- "fullName": "allanalves",
- "avatarUrl": "https://www.gravatar.com/avatar/99bd2d54249b669e37a6b09a740b8d65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 10:01:10"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 363,
- "target": 348,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992061",
- "username": "Divanny",
- "fullName": "Divanny",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992061/medium/932dae148005c8671a50691ac97b7ddc.jpeg",
- "joined": "2021-11-06 01:07:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 362,
- "target": 403,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14442164",
- "username": "nigraff",
- "fullName": "Николай Графф (nigraff)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442164/medium/a1facd7a2ba5c9f84b2a3240bafd3c02.jpeg",
- "joined": "2020-10-03 16:24:48"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 362,
- "target": 346,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032539",
- "username": "devsapariya94",
- "fullName": "devsapariya94",
- "avatarUrl": "https://www.gravatar.com/avatar/9f678368bc574de9cf675e8011f18e6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 03:12:41"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 360,
- "target": 624,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14132935",
- "username": "ducdat0507",
- "fullName": "ducdat0507",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14132935/medium/8403819f5209d80ef424840aa9e0dc4c.jpg",
- "joined": "2021-10-07 06:06:20"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 359,
- "target": 486,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971373",
- "username": "liv1401",
- "fullName": "Игорь Лихогруд (liv1401)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971373/medium/82b280124cb800f2a2f296d2c0471adc.jpeg",
- "joined": "2021-10-21 11:40:25"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 359,
- "target": 325,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610064",
- "username": "varga.vinter",
- "fullName": "varga.vinter",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14610064/medium/a7f9e7dd43858c4d469d01bebc49d729.jpg",
- "joined": "2021-02-05 03:00:41"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 359,
- "target": 356,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 289
- },
- {
- "user": {
- "id": "14571740",
- "username": "DeFalT_910",
- "fullName": "DeFalT_910",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571740/medium/b9399646973ad106a1c00dfbc772b708.jpg",
- "joined": "2021-01-11 00:36:00"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 357,
- "target": 383,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 23
- },
- {
- "user": {
- "id": "14884566",
- "username": "sparsacolligodutwitter",
- "fullName": "Sparsa Colligo (sparsacolligodutwitter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884566/medium/c1f416e00e569be883a1c6d8f566d117.jpeg",
- "joined": "2021-08-17 11:52:14"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 356,
- "target": 347,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14410638",
- "username": "Gedalyahu",
- "fullName": "Gedalyahu",
- "avatarUrl": "https://www.gravatar.com/avatar/39dc5b730920239058530e0a6e7654e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-10 12:27:20"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 354,
- "target": 319,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704100",
- "username": "arturo.1997",
- "fullName": "Arturo S. Medrano (arturo.1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704100/medium/4f0e3cede4545cf57be541ac12e0ab32.jpeg",
- "joined": "2021-04-08 22:08:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 351,
- "target": 322,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 41
- },
- {
- "user": {
- "id": "14799412",
- "username": "vane.dcm",
- "fullName": "vane.dcm",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799412/medium/77cfcb8d6a2a8bb61519a7a136745224.jpg",
- "joined": "2021-06-14 15:19:57"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 349,
- "target": 357,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 106
- },
- {
- "user": {
- "id": "14613688",
- "username": "jan-miksik",
- "fullName": "Jan Mikšík (jan-miksik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14613688/medium/5d16056faf59d82c29d178f96396c28f.jpeg",
- "joined": "2021-02-07 12:58:06"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 349,
- "target": 294,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865834",
- "username": "georgi_kovachev",
- "fullName": "georgi_kovachev",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865834/medium/5a384f6c7a697cb88524be5332fc8655.jpg",
- "joined": "2021-09-02 09:14:53"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 347,
- "target": 372,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743326",
- "username": "Kryptotopf",
- "fullName": "Kryptotopf",
- "avatarUrl": "https://www.gravatar.com/avatar/8f71782a0db5b66a7731e0a1f7c8d874?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 06:38:04"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 346,
- "target": 306,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001037",
- "username": "voducminh09",
- "fullName": "M V (voducminh09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001037/medium/05e1fb1e3b0b19fb94ac88599bf36b68.jpeg",
- "joined": "2021-11-12 18:08:41"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 345,
- "target": 508,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751424",
- "username": "klortank",
- "fullName": "kLoR TaNk (klortank)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751424/medium/ac0a5029aa35dd84798011ff5e161ce4.jpeg",
- "joined": "2021-05-11 13:17:22"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 344,
- "target": 304,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 20,
- "negativeVotes": 20,
- "winning": 0
- },
- {
- "user": {
- "id": "14708696",
- "username": "wmswms938",
- "fullName": "Moshi Wei (wmswms938)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708696/medium/2303f2ec8760f6fa46ad1117e61d23b5.jpg",
- "joined": "2021-04-12 10:30:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 343,
- "target": 585,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 91
- },
- {
- "user": {
- "id": "14545368",
- "username": "Anlaky",
- "fullName": "Anlaky",
- "avatarUrl": "https://www.gravatar.com/avatar/f8bdd868ba5c22fc854adce47220e168?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 16:17:28"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 343,
- "target": 349,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 20
- },
- {
- "user": {
- "id": "14023843",
- "username": "4hmetuyar",
- "fullName": "Ahmet UYAR (4hmetuyar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14023843/medium/0cd86910555daae6efafdf0269a52b06.png",
- "joined": "2019-10-24 04:16:26"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 343,
- "target": 257,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "12523167",
- "username": "jackson21182",
- "fullName": "jackson shi (jackson21182)",
- "avatarUrl": "https://www.gravatar.com/avatar/3efef6f33bab3a76c44bb09e068a3931?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 03:50:35"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 341,
- "target": 544,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14357586",
- "username": "ubunteroz",
- "fullName": "Surya Handika Putratama (ubunteroz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357586/medium/4a3bea1ed33291bb01efa4318a919438.jpeg",
- "joined": "2020-07-27 10:46:41"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 340,
- "target": 329,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 3,
- "negativeVotes": 9,
- "winning": 0
- },
- {
- "user": {
- "id": "14958547",
- "username": "busnaida",
- "fullName": "busnaida",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958547/medium/7dcf670595d97f856502789faf5cf351.jpg",
- "joined": "2021-10-11 11:44:08"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 339,
- "target": 298,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 14,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957855",
- "username": "abdurrehmanrehan",
- "fullName": "abdurrehmanrehan",
- "avatarUrl": "https://www.gravatar.com/avatar/bbd9322d78e5bda40b122e5c75bcfba9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 01:50:43"
- },
- "languages": [
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 338,
- "target": 418,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558616",
- "username": "Rodol62",
- "fullName": "Rodol62",
- "avatarUrl": "https://www.gravatar.com/avatar/0bc03697084d2272d769431cca41efec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 14:39:06"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 337,
- "target": 396,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 75
- },
- {
- "user": {
- "id": "14125747",
- "username": "misakajwk",
- "fullName": "James Wang (misakajwk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125747/medium/27c8b5a8d49f829339205e8f4bf47ca0.jpeg",
- "joined": "2021-05-26 04:54:14"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 337,
- "target": 550,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 118
- },
- {
- "user": {
- "id": "14600888",
- "username": "Mohammad_Shehadeh",
- "fullName": "Mohammad_Shehadeh",
- "avatarUrl": "https://www.gravatar.com/avatar/9c5bd79de2bb2ee244ba62c9faa55c07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 22:07:15"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 337,
- "target": 310,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851382",
- "username": "krvtch",
- "fullName": "krvtch",
- "avatarUrl": "https://www.gravatar.com/avatar/acc96f413e7d8f51233a8fe355461e73?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 06:45:19"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 337,
- "target": 306,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640644",
- "username": "andrglv",
- "fullName": "Andrej Glavinić (andrglv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640644/medium/89448064fc3d80375f667f200b9915c1.jpg",
- "joined": "2021-02-24 19:00:05"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 336,
- "target": 324,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 50,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14612392",
- "username": "rhodeskyriakos",
- "fullName": "Kyriakos Alevropoulos (rhodeskyriakos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612392/medium/7a6a8ee0d133763cb2e9d1f887adae0c.jpeg",
- "joined": "2021-02-06 16:11:26"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 335,
- "target": 338,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 4,
- "winning": 211
- },
- {
- "user": {
- "id": "14930727",
- "username": "ms_lechka",
- "fullName": "Olia Tkachuk (ms_lechka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14930727/medium/41a455be95082d8b26b9eb5065dd6aac.jpg",
- "joined": "2021-10-18 04:49:18"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 332,
- "target": 283,
- "approved": 0,
- "voted": 188,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729132",
- "username": "jackg",
- "fullName": "Jack Goldenberg (jackg)",
- "avatarUrl": "https://www.gravatar.com/avatar/a972a2fefea2d1bb1a250d03de5811a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 17:35:09"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- },
- {
- "id": "yo",
- "name": "Yoruba"
- }
- ],
- "translated": 332,
- "target": 303,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904798",
- "username": "HelloYSS",
- "fullName": "fidel pereira (HelloYSS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904798/medium/545f00d30e7c01e5210295f88ef43c9f.png",
- "joined": "2021-09-01 11:17:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 332,
- "target": 313,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897468",
- "username": "Gurx",
- "fullName": "Gurx",
- "avatarUrl": "https://www.gravatar.com/avatar/17c04f473116a5288b97d6a7a9e03ed6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 21:02:33"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 331,
- "target": 270,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13510211",
- "username": "MirageIonova",
- "fullName": "Alberto Gómez Herrera (MirageIonova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png",
- "joined": "2020-10-01 18:59:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 331,
- "target": 401,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 174
- },
- {
- "user": {
- "id": "14651040",
- "username": "ifjiaru",
- "fullName": "ifjiaru",
- "avatarUrl": "https://www.gravatar.com/avatar/0a7cbdb9eef1e3014bf5abe6f5d79f0b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 04:43:13"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 331,
- "target": 606,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 114
- },
- {
- "user": {
- "id": "14724498",
- "username": "arashmo1990",
- "fullName": "Arash Mo (arashmo1990)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724498/medium/23abcfc2a156b50d443e9e7eb65d3447.png",
- "joined": "2021-04-24 03:45:01"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 330,
- "target": 545,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14306622",
- "username": "navya_teja",
- "fullName": "navya_teja",
- "avatarUrl": "https://www.gravatar.com/avatar/7b9c039f4022ec3998e965caee5b1e50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-16 01:11:55"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 327,
- "target": 368,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784414",
- "username": "Gregory.Scalet",
- "fullName": "DeFiGregg (Gregory.Scalet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784414/medium/3c33d392c019608a477744d2c30ee357.jpg",
- "joined": "2021-06-03 08:44:44"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 327,
- "target": 351,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14857060",
- "username": "slobato711",
- "fullName": "Sergio Lobato Ramos (slobato711)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14857060/medium/16b052b6094cc8e9e2a1b9d493e20c30.png",
- "joined": "2021-07-28 22:35:19"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 326,
- "target": 302,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646730",
- "username": "udopton",
- "fullName": "udo pton (udopton)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646730/medium/7d8e325859ee84c6efa0b4d38934382d.jpg",
- "joined": "2021-03-01 16:38:00"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 324,
- "target": 285,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 236
- },
- {
- "user": {
- "id": "14979771",
- "username": "gieffe",
- "fullName": "gieffe",
- "avatarUrl": "https://www.gravatar.com/avatar/1b69ac19cc5f713958bb337307e776bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-28 11:35:43"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 323,
- "target": 350,
- "approved": 0,
- "voted": 45,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769082",
- "username": "tzimpoulasnikos",
- "fullName": "Tzimpoulas Nikolaos (tzimpoulasnikos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769082/medium/2c98bf823fc33865c306a4bb16e2c8b4.jpeg",
- "joined": "2021-05-23 04:44:10"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 323,
- "target": 308,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920051",
- "username": "panatagama",
- "fullName": "Panatagama (panatagama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920051/medium/9ba58eec03e143bcd1acbe5b2ecf8250.jpg",
- "joined": "2021-09-13 02:27:51"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 322,
- "target": 289,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796126",
- "username": "Lyubo69",
- "fullName": "Lyubo69",
- "avatarUrl": "https://www.gravatar.com/avatar/031a3ffbe3f054bc23ce7dc79d030b03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 22:09:06"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 322,
- "target": 318,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903063",
- "username": "somniumism",
- "fullName": "SeungMin Lee (somniumism)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903063/medium/504504c3a481b7774dba86fbd2872016.jpeg",
- "joined": "2019-07-02 03:09:48"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 321,
- "target": 266,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550264",
- "username": "mr.gustavo.ramos",
- "fullName": "Gus Ram (mr.gustavo.ramos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14550264/medium/554eb671c71a65dafaef15d70cbaa11f.jpeg",
- "joined": "2020-12-25 15:31:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 318,
- "target": 361,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 104
- },
- {
- "user": {
- "id": "14682564",
- "username": "rich1n",
- "fullName": "Richard Rodríguez (rich1n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682564/medium/3198f898fb53f31fa32bf08236627a34.jpeg",
- "joined": "2021-06-10 21:58:15"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 318,
- "target": 345,
- "approved": 0,
- "voted": 40,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14953707",
- "username": "dvd_okt84",
- "fullName": "dvd_okt84",
- "avatarUrl": "https://www.gravatar.com/avatar/578fe5735e253da43fbdae93ee91b146?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 10:18:51"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 317,
- "target": 284,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878048",
- "username": "BINOMFX",
- "fullName": "BINOMFX",
- "avatarUrl": "https://www.gravatar.com/avatar/a6dfc7e15329eadbc61eb905f1bab860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 02:35:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 313,
- "target": 251,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952681",
- "username": "AleksandrMorozov",
- "fullName": "Александр (AleksandrMorozov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952681/medium/bea7a5ef230daeda223ee3d7265903a2.png",
- "joined": "2021-10-06 15:40:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 311,
- "target": 273,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 55
- },
- {
- "user": {
- "id": "14770474",
- "username": "AuliaRizky",
- "fullName": "Arhking (AuliaRizky)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14770474/medium/514a9862bdf41eebf06c7e9bcefca2e9.png",
- "joined": "2021-05-24 06:38:40"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 311,
- "target": 318,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14042441",
- "username": "Solexplorer",
- "fullName": "Solexplorer",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14042441/medium/efa15b8331a5e51208658d9e00824c68.jpeg",
- "joined": "2019-11-26 04:36:00"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 311,
- "target": 306,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 50
- },
- {
- "user": {
- "id": "13992969",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/61a2b29986bf373c1cb326e69d55346f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 08:11:08"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 309,
- "target": 350,
- "approved": 1113,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 499
- },
- {
- "user": {
- "id": "14739754",
- "username": "Marialba",
- "fullName": "Marialba",
- "avatarUrl": "https://www.gravatar.com/avatar/4204cf102f81ee527db45dfbad016897?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 17:47:27"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 309,
- "target": 336,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 80
- },
- {
- "user": {
- "id": "14217580",
- "username": "Noop1",
- "fullName": "Noop1",
- "avatarUrl": "https://www.gravatar.com/avatar/e1015204a425cd73a2c44a4830907414?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 12:09:21"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 308,
- "target": 282,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720896",
- "username": "KishPan",
- "fullName": "LEBEAU Pacôme (KishPan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720896/medium/d59de134453124a475302b52d5e7ab54.jpg",
- "joined": "2021-04-21 09:17:25"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 307,
- "target": 289,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 62
- },
- {
- "user": {
- "id": "14931651",
- "username": "sinsinpurin",
- "fullName": "masaki obayashi (sinsinpurin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931651/medium/3e26483770249bd37034cfefe44469f0.jpeg",
- "joined": "2021-09-21 05:34:54"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 305,
- "target": 834,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14571640",
- "username": "coldplay126",
- "fullName": "KS L (coldplay126)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571640/medium/8b5a324ad49602b1c0da1b75ee45af6a.jpeg",
- "joined": "2021-01-10 22:11:28"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 303,
- "target": 234,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957025",
- "username": "denisplaku05",
- "fullName": "Denis Plaku (denisplaku05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957025/medium/155eeb9074ad5cc6f16d1c281f019944.png",
- "joined": "2021-10-10 08:07:21"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 303,
- "target": 322,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958557",
- "username": "eme42",
- "fullName": "eme42",
- "avatarUrl": "https://www.gravatar.com/avatar/e099c3cca79a8e0fa3375fa18bd7e0bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 11:55:55"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 303,
- "target": 327,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14858450",
- "username": "marcio.vallep",
- "fullName": "Marcio Vallep (marcio.vallep)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14858450/medium/78a1cc0054358247a009cd3993270109.jpeg",
- "joined": "2021-07-30 01:36:46"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 303,
- "target": 287,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003781",
- "username": "krysia0196",
- "fullName": "krysia0196",
- "avatarUrl": "https://www.gravatar.com/avatar/169c092691e6bf76213b324770ecbdfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 02:30:25"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 303,
- "target": 283,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697544",
- "username": "max.albarenque",
- "fullName": "Maximiliano Albarenque (max.albarenque)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697544/medium/056b5b11875996b5a893af76d3ef6b9c.jpeg",
- "joined": "2021-04-04 19:45:47"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 302,
- "target": 315,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 121
- },
- {
- "user": {
- "id": "14339812",
- "username": "KuBeL",
- "fullName": "KuBeL",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14339812/medium/13dfffbb30ab4ec8af8635635d9be3b9.jpg",
- "joined": "2021-01-30 14:27:55"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 302,
- "target": 371,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 41
- },
- {
- "user": {
- "id": "14133051",
- "username": "overweight305",
- "fullName": "overweight305",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14133051/medium/67b22623472fbcd3604eecbcd547821a.png",
- "joined": "2020-02-24 12:28:55"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 301,
- "target": 407,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14732280",
- "username": "Brandonly1000",
- "fullName": "Brandon Ly (Brandonly1000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732280/medium/ba8443c236c809ee8b2bf88d5da9706d.jpeg",
- "joined": "2021-04-30 00:49:41"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 301,
- "target": 424,
- "approved": 0,
- "voted": 49,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750970",
- "username": "joab83",
- "fullName": "joab83",
- "avatarUrl": "https://www.gravatar.com/avatar/778e1919b3d77682207717166c6c946e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 08:46:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 299,
- "target": 279,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970965",
- "username": "djtouc",
- "fullName": "DEE JAY TOUC (djtouc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970965/medium/8311d9d4eb154006e92427aab50c1392.png",
- "joined": "2021-10-21 05:27:40"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 298,
- "target": 340,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14626994",
- "username": "Ggilb3rt",
- "fullName": "Ggilb3rt",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14626994/medium/a2e1466127b12576ff9890b35189de58.png",
- "joined": "2021-02-16 11:29:22"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 297,
- "target": 320,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 123
- },
- {
- "user": {
- "id": "14604346",
- "username": "mohameou",
- "fullName": "mohameou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604346/medium/5a2b46b25f20ff1aa61656a57ede9b30.jpeg",
- "joined": "2021-02-01 10:33:23"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 296,
- "target": 272,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769736",
- "username": "Andpatagon",
- "fullName": "Andpatagon",
- "avatarUrl": "https://www.gravatar.com/avatar/5aa159c0ea923eba17a923ca3c2930c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 15:21:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 295,
- "target": 289,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 79
- },
- {
- "user": {
- "id": "13431261",
- "username": "xenearz",
- "fullName": "Ashe Hecarim (xenearz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13431261/medium/e33ad5f9e6387f73021064c1853950ec.jpg",
- "joined": "2020-12-21 03:58:28"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 295,
- "target": 254,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 1,
- "winning": 124
- },
- {
- "user": {
- "id": "14638362",
- "username": "mystab",
- "fullName": "mystab",
- "avatarUrl": "https://www.gravatar.com/avatar/9400dad4b207a0c24821e25142549220?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 12:49:24"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 294,
- "target": 310,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 73
- },
- {
- "user": {
- "id": "14784930",
- "username": "vaclav.kyval",
- "fullName": "Václav Kýval (vaclav.kyval)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784930/medium/124a3262e9172e0da7b788575a4c4f3d.jpeg",
- "joined": "2021-06-03 14:58:39"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 294,
- "target": 251,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242780",
- "username": "ddp101",
- "fullName": "Desh Deepak (ddp101)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14242780/medium/c4de74d741a45d01bf651d6b8c5960c2.jpeg",
- "joined": "2020-05-05 21:30:18"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 293,
- "target": 484,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13756885",
- "username": "Kenjii",
- "fullName": "Kenjii",
- "avatarUrl": "https://www.gravatar.com/avatar/2676e1ee36216229cfc692b9ce1e859c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 12:07:49"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 292,
- "target": 294,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14380594",
- "username": "jyoo",
- "fullName": "Jung Sup (James) Yoo (jyoo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14380594/medium/ea54b35795b0eabf865962d3a3931b37.jpeg",
- "joined": "2020-08-16 00:01:40"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 291,
- "target": 224,
- "approved": 0,
- "voted": 39,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905112",
- "username": "Nightkiller98",
- "fullName": "Nightkiller98",
- "avatarUrl": "https://www.gravatar.com/avatar/c3a4e9b8fa350017f1129547cc95a683?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 15:09:52"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 291,
- "target": 344,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14828314",
- "username": "164031",
- "fullName": "Aiden (164031)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828314/medium/5d100860df80e1a9c1c8c6990cbefb5f.png",
- "joined": "2021-07-05 15:35:04"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 290,
- "target": 456,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 48
- },
- {
- "user": {
- "id": "14578658",
- "username": "soldi",
- "fullName": "Dmitriy Didovich (soldi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578658/medium/cf09d1f26146717047e03e181ac79b16.jpeg",
- "joined": "2021-01-15 13:34:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 289,
- "target": 289,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14930117",
- "username": "SemioDan",
- "fullName": "SemioDan",
- "avatarUrl": "https://www.gravatar.com/avatar/791fe9d92cc842432eb36e7312ab1245?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-20 03:14:43"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 287,
- "target": 195,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576042",
- "username": "k0999",
- "fullName": "k0999",
- "avatarUrl": "https://www.gravatar.com/avatar/86302fe2653844d47c617ef003415762?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 19:36:36"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 287,
- "target": 310,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 24,
- "negativeVotes": 0,
- "winning": 80
- },
- {
- "user": {
- "id": "14113969",
- "username": "mbiesiad",
- "fullName": "Michal (mbiesiad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14113969/medium/5ac8b6a9f35466498ebb47b6c43e43df.jpeg",
- "joined": "2021-02-07 13:24:03"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 285,
- "target": 282,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 37,
- "negativeVotes": 0,
- "winning": 252
- },
- {
- "user": {
- "id": "14780362",
- "username": "88wcJoWl",
- "fullName": "Jona (88wcJoWl)",
- "avatarUrl": "https://www.gravatar.com/avatar/58ecaea5ef98515761ef428c59fdacb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 15:20:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 285,
- "target": 238,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 103
- },
- {
- "user": {
- "id": "14778160",
- "username": "wynako",
- "fullName": "Xsourcingf (wynako)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778160/medium/2bbf8cda69d3ab51ac86cc1d50ed69c2.png",
- "joined": "2021-05-29 21:07:07"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 284,
- "target": 217,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 22
- },
- {
- "user": {
- "id": "14725224",
- "username": "julioabrahao",
- "fullName": "Julio Abrahão (julioabrahao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725224/medium/71c544a5f76fec25c5a1f156b4e74474.jpeg",
- "joined": "2021-04-24 16:18:21"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 284,
- "target": 294,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714982",
- "username": "Kfar",
- "fullName": "Kfar",
- "avatarUrl": "https://www.gravatar.com/avatar/f826f7f5f38f24349fdd473c333e2faf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 19:48:27"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 281,
- "target": 280,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 32
- },
- {
- "user": {
- "id": "14972621",
- "username": "CSR1415926535",
- "fullName": "CSR1415926535",
- "avatarUrl": "https://www.gravatar.com/avatar/4f21674423ae94c870d639e1bf09ebf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:41:17"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 280,
- "target": 310,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14866294",
- "username": "Burinat",
- "fullName": "Burinat",
- "avatarUrl": "https://www.gravatar.com/avatar/167f1a1305f2bb8d6bcf92833ba65233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 10:30:41"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 279,
- "target": 283,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774556",
- "username": "yipu0v0",
- "fullName": "yipu0v0",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774556/medium/dc85181aa42b536fe5c1130fbbd398b0.png",
- "joined": "2021-05-27 02:05:27"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 277,
- "target": 383,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 87
- },
- {
- "user": {
- "id": "14758970",
- "username": "JJulles",
- "fullName": "JJulles",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758970/medium/2f15c96da08e09ca5186337bcebc19a8.png",
- "joined": "2021-05-16 04:40:39"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 277,
- "target": 316,
- "approved": 0,
- "voted": 32,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14837106",
- "username": "rofis",
- "fullName": "Rofis Elias Filho (rofis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837106/medium/e87698d84d41483de2a57483ff5d9455.jpeg",
- "joined": "2021-07-12 17:08:44"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 276,
- "target": 279,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931377",
- "username": "gansfoer",
- "fullName": "Илья Панфилов (gansfoer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931377/medium/6e09fc77f43e6939d342b7aaa7daf622.png",
- "joined": "2021-09-21 23:36:02"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 276,
- "target": 167,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590022",
- "username": "AlixRoyere",
- "fullName": "AlixRoyere",
- "avatarUrl": "https://www.gravatar.com/avatar/3591737588695ee50969a84549376b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 20:12:29"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 275,
- "target": 287,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 13,
- "negativeVotes": 1,
- "winning": 4
- },
- {
- "user": {
- "id": "15003105",
- "username": "pouria.mirzaei",
- "fullName": "pouria.mirzaei",
- "avatarUrl": "https://www.gravatar.com/avatar/e766286d4eb36f973ca935e3acb9c23b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 11:33:22"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 275,
- "target": 372,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263150",
- "username": "uliana.didych",
- "fullName": "Uliana Didych (uliana.didych)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263150/medium/9db80e6f09691536123f44762cc9429c.jpeg",
- "joined": "2020-08-27 12:24:24"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 270,
- "target": 284,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601410",
- "username": "Vietnamngaonghe",
- "fullName": "Love Language (Vietnamngaonghe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601410/medium/b762e442514123c4f34c7cfd8194b940.jpg",
- "joined": "2021-01-30 09:04:12"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 270,
- "target": 390,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670948",
- "username": "Brommann",
- "fullName": "Brommann",
- "avatarUrl": "https://www.gravatar.com/avatar/d31c7d1981e2bf6261c3ab96af2fa946?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 22:28:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 270,
- "target": 484,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 126
- },
- {
- "user": {
- "id": "14679912",
- "username": "m337thesc0ut",
- "fullName": "m337thesc0ut",
- "avatarUrl": "https://www.gravatar.com/avatar/f1ed70484fae0f57205191aaf27abda8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 06:33:39"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 267,
- "target": 198,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760662",
- "username": "stepanov0808200",
- "fullName": "MoolCooV (stepanov0808200)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760662/medium/0f50d9b003a29eec10bcce9ced1e43e4.jpeg",
- "joined": "2021-05-17 06:57:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 264,
- "target": 172,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12841010",
- "username": "slyadmin",
- "fullName": "Vladimir (slyadmin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12841010/medium/844c2fb2c1a8866c2b873b171d9b994d.jpg",
- "joined": "2021-10-22 09:33:55"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 264,
- "target": 242,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958987",
- "username": "fernanmartine",
- "fullName": "fernanmartine",
- "avatarUrl": "https://www.gravatar.com/avatar/beaac6d6232afa53f07aafb28777367f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 20:00:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 263,
- "target": 285,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14763978",
- "username": "rayxeden",
- "fullName": "Ray Eden (rayxeden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763978/medium/4f9c92629cbbd74784e018e397fbf629.png",
- "joined": "2021-05-19 10:17:38"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 262,
- "target": 255,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 88
- },
- {
- "user": {
- "id": "14747610",
- "username": "GrimCrow",
- "fullName": "GrimCrow",
- "avatarUrl": "https://www.gravatar.com/avatar/74d5c5f4f2500ea6ae955846b009fcaa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 12:56:13"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 262,
- "target": 211,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14995227",
- "username": "asche",
- "fullName": "asche",
- "avatarUrl": "https://www.gravatar.com/avatar/aecd054f094f92603e24b6bffbf7e0c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 13:01:48"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 261,
- "target": 239,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991277",
- "username": "mafezinha",
- "fullName": "mafê (mafezinha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991277/medium/537793d445141505c201bf6f59daff90.jpeg",
- "joined": "2021-11-05 09:31:28"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 259,
- "target": 279,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 37
- },
- {
- "user": {
- "id": "14735878",
- "username": "KnowsCount",
- "fullName": "KnowsCount",
- "avatarUrl": "https://www.gravatar.com/avatar/e9bad5d32ab7ceabb15d5c92689925b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 00:01:56"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 255,
- "target": 416,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14034162",
- "username": "getasso",
- "fullName": "getasso",
- "avatarUrl": "https://www.gravatar.com/avatar/abff64230b71b30d7b186cceaea20441?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-10 23:59:34"
- },
- "languages": [
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 255,
- "target": 310,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724040",
- "username": "novak.primoz88",
- "fullName": "Primoz Novak (novak.primoz88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724040/medium/e251041b3f0c7892719ebf6dd03925ea.jpeg",
- "joined": "2021-04-23 15:54:00"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 254,
- "target": 243,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 22,
- "negativeVotes": 0,
- "winning": 42
- },
- {
- "user": {
- "id": "14665754",
- "username": "R3z4_Pr0gramm3r",
- "fullName": "Reza Rafsanjani (R3z4_Pr0gramm3r)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665754/medium/72c1f853dc01a48166c2ac4476d4a63a.png",
- "joined": "2021-03-13 02:48:54"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 254,
- "target": 318,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13925029",
- "username": "retzger",
- "fullName": "retzger",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13925029/medium/4e55c5a9398e56ef1a3039b76a81f120.png",
- "joined": "2019-12-14 19:14:08"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "ru-UA",
- "name": "Russian, Ukraine"
- }
- ],
- "translated": 253,
- "target": 420,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 132
- },
- {
- "user": {
- "id": "14676296",
- "username": "RenataBrito",
- "fullName": "RenataBrito",
- "avatarUrl": "https://www.gravatar.com/avatar/99f71d4fc12a99295d1c31b1961f998d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 15:53:26"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 252,
- "target": 237,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 25,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12425646",
- "username": "-klinsky-",
- "fullName": "Vlad Klinsky (-klinsky-)",
- "avatarUrl": "https://www.gravatar.com/avatar/454088a3c4838cf352ec793f63d5aa3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 09:37:56"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 252,
- "target": 265,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14968833",
- "username": "Foxxeek",
- "fullName": "Foxxeek",
- "avatarUrl": "https://www.gravatar.com/avatar/6366bd5a7307a3e0c02c3d551846af13?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 14:13:19"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 252,
- "target": 212,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736586",
- "username": "nixonogoi",
- "fullName": "Nixon W. Ogoi (nixonogoi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736586/medium/ec41b3ccb42bed3514461d6998cf6e18.png",
- "joined": "2021-05-03 12:17:14"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 251,
- "target": 203,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14935073",
- "username": "NerioDaniel",
- "fullName": "NerioDaniel",
- "avatarUrl": "https://www.gravatar.com/avatar/10f959538c7cfee538b84efd2406ea9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 14:19:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 249,
- "target": 299,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831696",
- "username": "sajjad.k.btc",
- "fullName": "Sajjad Kadkhodayi (sajjad.k.btc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831696/medium/761047e774f85ccbe49fdf1cbce4a429.jpeg",
- "joined": "2021-07-08 05:33:47"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 248,
- "target": 249,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14588496",
- "username": "rouftomb",
- "fullName": "Muller Roufaou (rouftomb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588496/medium/5eb12f2bb5362b62230035bbb00bb093.jpeg",
- "joined": "2021-01-21 19:06:28"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 248,
- "target": 320,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 60
- },
- {
- "user": {
- "id": "14867324",
- "username": "Lltranslating",
- "fullName": "Lltranslating",
- "avatarUrl": "https://www.gravatar.com/avatar/d911615bac9a3b8687a2eb9af8988539?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 05:58:53"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 248,
- "target": 283,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14547590",
- "username": "q00n",
- "fullName": "q00n",
- "avatarUrl": "https://www.gravatar.com/avatar/859a56cd2c2b0277865d6e2e3829e13a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-23 10:44:05"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 246,
- "target": 221,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 39
- },
- {
- "user": {
- "id": "14675092",
- "username": "Mousticke",
- "fullName": "Akim B. (Mousticke)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675092/medium/93a5a3891a8c8b3f1796baf7ae9c8046.png",
- "joined": "2021-03-19 16:33:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 246,
- "target": 249,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030799",
- "username": "DushicaU",
- "fullName": "Dusica Udovicki (DushicaU)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030799/medium/a5b101b66042af522070c34cf65d7805.jpg",
- "joined": "2021-11-25 14:36:32"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 244,
- "target": 240,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14053145",
- "username": "Taio",
- "fullName": "Taio",
- "avatarUrl": "https://www.gravatar.com/avatar/467486cfe33b78b748f82b45012e9b00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-20 01:39:38"
- },
- "languages": [
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 244,
- "target": 282,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682718",
- "username": "ketut",
- "fullName": "Surya A (ketut)",
- "avatarUrl": "https://www.gravatar.com/avatar/e644b803450efad75abaa47513cb0ab9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 04:22:55"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 244,
- "target": 236,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558102",
- "username": "x756115",
- "fullName": "MR.X A.S.D (x756115)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558102/medium/e092a0a6333e6c492ea90b663dcd4182.jpg",
- "joined": "2021-02-25 09:16:26"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 243,
- "target": 205,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980565",
- "username": "grayPark",
- "fullName": "박규하 (grayPark)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14980565/medium/11096f92db3bb79f08f0bfcbd1f9f379.jpeg",
- "joined": "2021-10-29 01:38:20"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 243,
- "target": 225,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682690",
- "username": "maruchingu",
- "fullName": "연대열 (maruchingu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682690/medium/f5a233a682cccd076a4f6f8f25f3feab.jpeg",
- "joined": "2021-03-25 04:31:33"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 243,
- "target": 178,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582856",
- "username": "toratj",
- "fullName": "Tor Arne Tjåland (toratj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582856/medium/10fe53b905f4f425e8a7ba079af50015.png",
- "joined": "2021-01-18 12:07:26"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 243,
- "target": 235,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940333",
- "username": "Angela_Borda",
- "fullName": "Angela_Borda",
- "avatarUrl": "https://www.gravatar.com/avatar/1bf93e45fbc3caf8e5f4be83fff266eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-27 11:11:32"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 241,
- "target": 306,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973999",
- "username": "deadinside",
- "fullName": "Dmytro (deadinside)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973999/medium/e78028a33f442fd5ef071b87b758a415.png",
- "joined": "2021-10-30 08:53:30"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 239,
- "target": 217,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959495",
- "username": "ONeZetty",
- "fullName": "ONeZetty",
- "avatarUrl": "https://www.gravatar.com/avatar/3c9ec2f98f967e8cf1dccfdf30eef6d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 13:19:40"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 238,
- "target": 262,
- "approved": 0,
- "voted": 29,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 69
- },
- {
- "user": {
- "id": "14633214",
- "username": "deities822",
- "fullName": "Sen Yang (deities822)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633214/medium/f93964e553214494956759ae55266c8c.jpg",
- "joined": "2021-02-20 12:14:39"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 237,
- "target": 357,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14952033",
- "username": "GalPe",
- "fullName": "G Koleva (GalPe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952033/medium/b5cd61c1c84411584d7f95a0293006e4.jpeg",
- "joined": "2021-10-06 05:45:31"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 237,
- "target": 213,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14727958",
- "username": "PBK0227",
- "fullName": "PBK0227",
- "avatarUrl": "https://www.gravatar.com/avatar/dd46421af00469930767a0cf35d4a53c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 22:11:13"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 237,
- "target": 687,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 2,
- "winning": 225
- },
- {
- "user": {
- "id": "14824370",
- "username": "wholopes",
- "fullName": "wholopes",
- "avatarUrl": "https://www.gravatar.com/avatar/9f5e4a75b583d8871359b17023f3712b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-02 08:11:52"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 236,
- "target": 238,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775032",
- "username": "fadeltd",
- "fullName": "Fadel Trivandi Dipantara (fadeltd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775032/medium/6055b8485797870254f6f76e17aafd3c.jpeg",
- "joined": "2021-05-27 09:00:49"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 236,
- "target": 213,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14251100",
- "username": "victoristocrat",
- "fullName": "victoristocrat",
- "avatarUrl": "https://www.gravatar.com/avatar/474c53c882387965de7241f67e22ba61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-11 05:55:00"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 235,
- "target": 296,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764846",
- "username": "mrvuong.bitcoin",
- "fullName": "Ngọc Vương Trương (mrvuong.bitcoin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764846/medium/68d83ddd0632b9ff5d0ab6b85b038317.jpeg",
- "joined": "2021-05-20 00:06:25"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 235,
- "target": 312,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620810",
- "username": "AlekseySmiian",
- "fullName": "AlekseySmiian",
- "avatarUrl": "https://www.gravatar.com/avatar/bca9046311c7beb695ef7d9827a93064?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 02:11:52"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 235,
- "target": 199,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 72
- },
- {
- "user": {
- "id": "14627648",
- "username": "morwena",
- "fullName": "morwena",
- "avatarUrl": "https://www.gravatar.com/avatar/88db9f591e6cb69dff56fdbbb76ccb48?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-16 17:33:42"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 234,
- "target": 195,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951861",
- "username": "bardierangelina6",
- "fullName": "Angie Bardier (bardierangelina6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951861/medium/d5a9304f836af504ad35d48759c700ed.jpeg",
- "joined": "2021-10-06 03:23:36"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 234,
- "target": 226,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "15024737",
- "username": "rogertw87",
- "fullName": "Roger CY LI (rogertw87)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024737/medium/1c947a00daf3ab3b6118b7080d28d672.jpeg",
- "joined": "2021-11-21 02:53:24"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 233,
- "target": 408,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677262",
- "username": "paulagoes",
- "fullName": "Paula Goes (paulagoes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677262/medium/abca98edc7fcbc7867e6aa1e9d6bddfb.jpeg",
- "joined": "2021-05-03 08:21:34"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 233,
- "target": 231,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 23,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732192",
- "username": "sajadsm1979",
- "fullName": "Sajad Saraf-Moghadam (sajadsm1979)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732192/medium/bb9cb9241c6d42b09206ec449534d22f.jpeg",
- "joined": "2021-04-29 22:28:10"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 233,
- "target": 286,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674090",
- "username": "qingfend",
- "fullName": "Qingfeng Du (qingfend)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674090/medium/2898446861662d939ca5907665a1acfe.jpg",
- "joined": "2021-03-19 02:38:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 233,
- "target": 370,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14689716",
- "username": "Super-Cereal",
- "fullName": "Super-Cereal",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689716/medium/16879ee365ed3e71eddbb9889908ca1c.jpeg",
- "joined": "2021-03-30 06:32:57"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 233,
- "target": 219,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 110
- },
- {
- "user": {
- "id": "14544978",
- "username": "Cedrich2s",
- "fullName": "Cedrich2s",
- "avatarUrl": "https://www.gravatar.com/avatar/da32a667975ad9925dd4d51d9952b665?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 10:19:14"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 232,
- "target": 255,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 36
- },
- {
- "user": {
- "id": "14895456",
- "username": "AayushCurious",
- "fullName": "AayushCurious",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895456/medium/4c25920dcdd629b12dfda520f6f0e718.png",
- "joined": "2021-08-25 10:45:53"
- },
- "languages": [
- {
- "id": "ne-NP",
- "name": "Nepali"
- }
- ],
- "translated": 231,
- "target": 350,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14440508",
- "username": "Alina_RU",
- "fullName": "Alina_RU",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14440508/medium/1fa0afd59cad693e0b9ffab7bc776948.jpg",
- "joined": "2020-10-09 16:59:47"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 231,
- "target": 219,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996863",
- "username": "Mighuma",
- "fullName": "Mighuma",
- "avatarUrl": "https://www.gravatar.com/avatar/2ea5f2f5aaf790e05a752c111f1dc306?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 18:01:43"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 230,
- "target": 253,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849836",
- "username": "N0vae",
- "fullName": "N0vae",
- "avatarUrl": "https://www.gravatar.com/avatar/565e2d9a420fd4da204585b8bc0def3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-23 00:03:40"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 230,
- "target": 337,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14981773",
- "username": "Alaeddin",
- "fullName": "Alaeddin",
- "avatarUrl": "https://www.gravatar.com/avatar/56396ba09b27eff0a61a37cc5b7a4a2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 16:59:22"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 230,
- "target": 199,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812426",
- "username": "Robert-Me",
- "fullName": "Robert-Me",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812426/medium/c6d86ade730b6777e9e90c4ab6ca2227.png",
- "joined": "2021-06-23 08:21:18"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 229,
- "target": 195,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14693718",
- "username": "cseac",
- "fullName": "Noufel Mostufaoui (cseac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693718/medium/7991d1cddf045a88d625e74c5723c2d8.jpg",
- "joined": "2021-04-01 17:36:43"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 229,
- "target": 202,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909599",
- "username": "HanaWatanabe",
- "fullName": "HanaWatanabe",
- "avatarUrl": "https://www.gravatar.com/avatar/634865e912a02ed06d5368f8d2d5e7f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 02:18:05"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 229,
- "target": 693,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 7,
- "winning": 0
- },
- {
- "user": {
- "id": "13187413",
- "username": "ridhoaliga",
- "fullName": "Ridho Aliga (ridhoaliga)",
- "avatarUrl": "https://www.gravatar.com/avatar/43f58da1a3e76a8bde665a986496b096?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 05:37:46"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 228,
- "target": 212,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "15000979",
- "username": "mauri.lustosa",
- "fullName": "Mauriano Lustosa (mauri.lustosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000979/medium/d3463e880ee39ff00ec110108c7c1711.png",
- "joined": "2021-11-12 16:29:21"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 227,
- "target": 242,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914189",
- "username": "carloscuadro",
- "fullName": "carloscuadro",
- "avatarUrl": "https://www.gravatar.com/avatar/575a0c9511af3edbc30e63e27eb4c9e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 10:52:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 227,
- "target": 224,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688390",
- "username": "cloakedmania",
- "fullName": "C3M (cloakedmania)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688390/medium/a2d8746c16953b008d19ee3273593bce.jpeg",
- "joined": "2021-03-29 08:36:56"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 226,
- "target": 175,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 186
- },
- {
- "user": {
- "id": "14028051",
- "username": "angaisdev",
- "fullName": "Gabriel Almeida (angaisdev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14028051/medium/674e6659cafc0e431650100a34b6ea58.jpeg",
- "joined": "2019-10-30 16:56:18"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 225,
- "target": 252,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14691980",
- "username": "obandojp91",
- "fullName": "Jhecson Obando (obandojp91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691980/medium/de61e68c8a344a69de721320f16a1346.jpg",
- "joined": "2021-03-31 16:03:19"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 224,
- "target": 211,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730796",
- "username": "mukhamadkurniarrokhman",
- "fullName": "Mukhamad kurniarrokhman (mukhamadkurniarrokhman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730796/medium/3e2f1ca6fbbc5a2785754c7e209a8358.jpeg",
- "joined": "2021-04-28 23:35:39"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 224,
- "target": 197,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "13845025",
- "username": "Bajoodle",
- "fullName": "Bajoodle",
- "avatarUrl": "https://www.gravatar.com/avatar/9a43f170b18626ddce403ce0b81ced35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-11 15:41:59"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 223,
- "target": 225,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13979987",
- "username": "mateodaza",
- "fullName": "Mateo Daza (mateodaza)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13979987/medium/f1d7232073eea4d16ded491ebdbaba92.jpeg",
- "joined": "2019-09-11 12:05:57"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 223,
- "target": 245,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 73
- },
- {
- "user": {
- "id": "14964581",
- "username": "Pric",
- "fullName": "Pric",
- "avatarUrl": "https://www.gravatar.com/avatar/232a650d52d05013cc328f79485eddf0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 05:38:59"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 222,
- "target": 199,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 1
- },
- {
- "user": {
- "id": "14586688",
- "username": "misharuz25",
- "fullName": "Миша Рузавин (misharuz25)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586688/medium/24bdff9ca7ecaadf89e707a27a1ffd61.jpg",
- "joined": "2021-01-20 17:02:19"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 222,
- "target": 208,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777938",
- "username": "arcadipaneluigi05",
- "fullName": "Luigi Arcadipane (arcadipaneluigi05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777938/medium/7780111bb3377c948f242d5c60904ddd.png",
- "joined": "2021-05-29 15:23:48"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 222,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877478",
- "username": "asrasaatchi1983",
- "fullName": "Asra Saatchi (asrasaatchi1983)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877478/medium/2fe6df5e4ebe022459774a32ca100fd7.gif",
- "joined": "2021-08-12 16:00:31"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 220,
- "target": 326,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891920",
- "username": "diegomoretti",
- "fullName": "diegomoretti",
- "avatarUrl": "https://www.gravatar.com/avatar/aa14a762e612a6074e0aa17d46c738ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 23:20:24"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 220,
- "target": 222,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13962749",
- "username": "Hikari.i",
- "fullName": "Hikari.i",
- "avatarUrl": "https://www.gravatar.com/avatar/440fe23a553b8fff798a357525cb099b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-26 05:42:29"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 219,
- "target": 616,
- "approved": 0,
- "voted": 25,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 175
- },
- {
- "user": {
- "id": "14950645",
- "username": "Hermes_70",
- "fullName": "Hermes_70",
- "avatarUrl": "https://www.gravatar.com/avatar/ec259de5b99311f7d0a4f38f13b3b6b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 04:22:08"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 219,
- "target": 256,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057347",
- "username": "mlekshmanap",
- "fullName": "Lekshmana Perumal M (mlekshmanap)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057347/medium/e593ac8284d3431905aaf7e04105bfac.jpg",
- "joined": "2019-12-24 02:23:25"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 218,
- "target": 479,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12803415",
- "username": "zafozafov",
- "fullName": "Znahari Dinkov (zafozafov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12803415/medium/06655ec20301f2f42a64f050c4623d0d.jpg",
- "joined": "2020-05-15 18:18:07"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 218,
- "target": 213,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678858",
- "username": "Illy225",
- "fullName": "Wilfried Konan (Illy225)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678858/medium/9b5ab0ef8dd137188a4dbd79a0c9e41a.jpg",
- "joined": "2021-03-22 12:05:55"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 218,
- "target": 234,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 90
- },
- {
- "user": {
- "id": "14819982",
- "username": "snerz13",
- "fullName": "Jash Desai (snerz13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819982/medium/40d1ac7dc56d4093785d5f1b21b72508.jpg",
- "joined": "2021-06-29 06:31:51"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 218,
- "target": 351,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14365000",
- "username": "hossein221",
- "fullName": "hossein221",
- "avatarUrl": "https://www.gravatar.com/avatar/5f80ac870f00c6725715b770cdf1cbee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-03 03:15:37"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 216,
- "target": 255,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677210",
- "username": "giu27seppe",
- "fullName": "Giuseppe Basile (giu27seppe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677210/medium/8199dcb64c9e0a06393c8d4d3f55dd62.jpg",
- "joined": "2021-03-21 10:55:28"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 215,
- "target": 182,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "14271416",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/a3a64c672988a891ab04a0df4d546c51?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-24 14:45:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 215,
- "target": 233,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14989955",
- "username": "darya.vrk",
- "fullName": "darya.vrk",
- "avatarUrl": "https://www.gravatar.com/avatar/6a6feaaab6afc3a2e49327308d76a3a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 10:09:26"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 215,
- "target": 182,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13343841",
- "username": "jrthsr700tmax",
- "fullName": "jrthsr700tmax",
- "avatarUrl": "https://www.gravatar.com/avatar/271f36fa0507edc4ae9d7108a43bf1fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 21:56:13"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 214,
- "target": 353,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14964959",
- "username": "NdrXbrain",
- "fullName": "Student Student (NdrXbrain)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964959/medium/60e018a3f4f93080e7f4ae7867a617bc.png",
- "joined": "2021-10-16 13:42:06"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 214,
- "target": 186,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702332",
- "username": "joaquindeleonamerio",
- "fullName": "Joaquín Deleon Amerio (joaquindeleonamerio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702332/medium/f5e389288946c3f0bd1b305fdb383daf.jpg",
- "joined": "2021-04-07 16:37:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 214,
- "target": 201,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14086465",
- "username": "iCalcreator",
- "fullName": "Kjell-Inge Gustafsson (iCalcreator)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14086465/medium/0de37044e44ab1615c40877703668c3b.png",
- "joined": "2020-01-23 03:43:55"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 214,
- "target": 219,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 139
- },
- {
- "user": {
- "id": "14688876",
- "username": "dimcaqw",
- "fullName": "Дмитрий Нагорный (dimcaqw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688876/medium/65cfc0b8cf4f2d7978cc3ba0321a7430.jpg",
- "joined": "2021-03-29 15:13:32"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 213,
- "target": 182,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14707448",
- "username": "byoriolserra",
- "fullName": "byoriolserra",
- "avatarUrl": "https://www.gravatar.com/avatar/b69cf204eb793bc36d6755f9ee7938b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 12:29:58"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 212,
- "target": 229,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 100
- },
- {
- "user": {
- "id": "14990795",
- "username": "kronic",
- "fullName": "kronic",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990795/medium/f3e16163f42dd477b6cb6b1bc541bbff.png",
- "joined": "2021-11-05 01:12:12"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 211,
- "target": 254,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963607",
- "username": "mikemathu",
- "fullName": "mikemathu",
- "avatarUrl": "https://www.gravatar.com/avatar/2c9e749d43014399a8522ab1a446332c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 09:05:06"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 211,
- "target": 211,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582052",
- "username": "carolinebleckert",
- "fullName": "Caroline Bleckert (carolinebleckert)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582052/medium/639d35605da557cab673b57cceb938e1.jpeg",
- "joined": "2021-01-18 02:24:00"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 211,
- "target": 192,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14237540",
- "username": "MeganHo",
- "fullName": "MeganHo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14237540/medium/de8ae52ffc3474771c2b2fef499f5204.png",
- "joined": "2020-05-02 18:40:32"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 211,
- "target": 372,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14929235",
- "username": "Rikr16",
- "fullName": "Hozan Al Hazin (Rikr16)",
- "avatarUrl": "https://www.gravatar.com/avatar/6c4f698f7d586c079a9e31fb6f883d4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 09:55:50"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 211,
- "target": 179,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881556",
- "username": "m1shyts",
- "fullName": "Михаил Марухно (m1shyts)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881556/medium/8d97850e1cb44414c1fa57a7aec17dcc.png",
- "joined": "2021-08-15 15:02:18"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 211,
- "target": 185,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024805",
- "username": "laneser.kuo",
- "fullName": "laneser kuo (laneser.kuo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024805/medium/397e610d238f3db6882905462dcecac0.jpeg",
- "joined": "2021-11-21 04:30:52"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 211,
- "target": 391,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915929",
- "username": "KarolekPLRU",
- "fullName": "KarolekPLRU",
- "avatarUrl": "https://www.gravatar.com/avatar/582fd5beae1a041556b1f404fb78aa37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 14:18:29"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 210,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710314",
- "username": "Almadepato",
- "fullName": "Almadepato",
- "avatarUrl": "https://www.gravatar.com/avatar/f725d06abbea057d95a1db4daf9775e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 12:22:39"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 209,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14450262",
- "username": "Tatianne2000",
- "fullName": "Tatianne2000",
- "avatarUrl": "https://www.gravatar.com/avatar/8b6a35fac29cf1de99ebf651649ee149?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-10-14 22:15:04"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 209,
- "target": 232,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659232",
- "username": "sacripantitomas",
- "fullName": "Tomás Sacripanti (sacripantitomas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659232/medium/0ad2b5e0ab8f9502bd4c244a3e743f5f.jpeg",
- "joined": "2021-03-08 17:40:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 208,
- "target": 190,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14617512",
- "username": "mumu-lhl",
- "fullName": "Lin Happy 666 (mumu-lhl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617512/medium/6918cd0fa9bd8bdd0988f89ec83b64b3.png",
- "joined": "2021-02-09 21:29:25"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 208,
- "target": 358,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14887798",
- "username": "MikhailDemin",
- "fullName": "Mikhail Demin (MikhailDemin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887798/medium/8141d544c3ddd3270fe04f02318d6760.jpeg",
- "joined": "2021-08-19 12:50:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 207,
- "target": 162,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14827052",
- "username": "spargwy",
- "fullName": "spargwy",
- "avatarUrl": "https://www.gravatar.com/avatar/eb7d685a05c3711249dd58fef854c9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 17:08:54"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 207,
- "target": 141,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698516",
- "username": "kbbtg_Alex",
- "fullName": "kbbtg Alex (kbbtg_Alex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698516/medium/8aeb5abf9171177c91fc15c42d4e353d.jpeg",
- "joined": "2021-04-05 12:16:34"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 207,
- "target": 361,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 160
- },
- {
- "user": {
- "id": "14681974",
- "username": "belinarmy",
- "fullName": "Антон Белоусов (belinarmy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681974/medium/a71d9b0ca20eb4808268608d5ce3587e.jpeg",
- "joined": "2021-03-24 13:01:48"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 206,
- "target": 161,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "15032061",
- "username": "coffeeparty",
- "fullName": "coffeeparty",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032061/medium/7e52ad480ca81e424568526990ada2fb.jpeg",
- "joined": "2021-11-26 15:18:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 206,
- "target": 253,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799822",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/42b84f2eb981d8587680d8ba76208c22?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 00:11:23"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 205,
- "target": 262,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13887845",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/5f683c07ef9498a01aa0775006bef84c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-10 02:53:09"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 205,
- "target": 224,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 116
- },
- {
- "user": {
- "id": "14648798",
- "username": "jekyllNiutont",
- "fullName": "jekyllNiutont",
- "avatarUrl": "https://www.gravatar.com/avatar/871d8fba84cab7661ee061b7f635e41c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 01:30:19"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 205,
- "target": 168,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 46
- },
- {
- "user": {
- "id": "14754146",
- "username": "alfus5",
- "fullName": "alfu5 (alfus5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754146/medium/69dd3ead82350e6abe958295d8cf6259.jpeg",
- "joined": "2021-08-09 13:25:58"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 205,
- "target": 216,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686644",
- "username": "Eomhyunjun",
- "fullName": "엄현준 (Eomhyunjun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686644/medium/75bffea324d45aa354b1f61dc42124ea.jpeg",
- "joined": "2021-03-28 03:10:32"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 204,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594126",
- "username": "firas.abu.zarad",
- "fullName": "Firas Abu Zarad (firas.abu.zarad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594126/medium/50207aa5b92b67c5b216a12ca49fdeab.jpeg",
- "joined": "2021-01-25 16:58:26"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 203,
- "target": 158,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553182",
- "username": "vivekb",
- "fullName": "vivekb",
- "avatarUrl": "https://www.gravatar.com/avatar/5a348707da8d1a1a44972442e2f73d02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 02:25:36"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 203,
- "target": 320,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 81
- },
- {
- "user": {
- "id": "14209450",
- "username": "nestorbonilla",
- "fullName": "Nestor Bonilla (nestorbonilla)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14209450/medium/ffcdb73f831098c16883ec2b9e13bc2a.jpg",
- "joined": "2020-04-15 22:46:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 201,
- "target": 210,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14673722",
- "username": "lisenochek94942",
- "fullName": "Алиса Лебедева (lisenochek94942)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673722/medium/033574e4bb916aa4fd3d508d4cb60674.jpeg",
- "joined": "2021-03-18 18:04:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 201,
- "target": 166,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 30
- },
- {
- "user": {
- "id": "12596551",
- "username": "lidiam",
- "fullName": "Lidia Mayoral (lidiam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12596551/medium/4d64ba444829e0a830179079cbf8fd80.png",
- "joined": "2021-08-09 21:19:47"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 200,
- "target": 179,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779418",
- "username": "arminshoughi",
- "fullName": "armin shoghi (arminshoughi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779418/medium/871c3e1eb7d9102bbec05027c14dcdfe.jpeg",
- "joined": "2021-05-31 00:18:56"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 200,
- "target": 252,
- "approved": 0,
- "voted": 30,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631076",
- "username": "Kuthep",
- "fullName": "Kuthep",
- "avatarUrl": "https://www.gravatar.com/avatar/6bb2f5fe2b472535dabfe1454f4a591e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 02:25:37"
- },
- "languages": [
- {
- "id": "mr",
- "name": "Marathi"
- },
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 199,
- "target": 175,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893344",
- "username": "DonViktor",
- "fullName": "DonViktor",
- "avatarUrl": "https://www.gravatar.com/avatar/c001e03116cbbb2188f36300d15f704f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-23 22:28:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 199,
- "target": 249,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962567",
- "username": "San2165",
- "fullName": "Santiago Borja D (San2165)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962567/medium/d0b9fc67a12e64ec189bbe5f3982457e.png",
- "joined": "2021-10-14 12:57:07"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 199,
- "target": 205,
- "approved": 0,
- "voted": 35,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14738074",
- "username": "AleksRG",
- "fullName": "Aleksandar Georgiev (AleksRG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738074/medium/20137575cc3af9d5601ae8706e4d90f0.jpeg",
- "joined": "2021-05-05 04:00:14"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 199,
- "target": 156,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582168",
- "username": "mattia-hash",
- "fullName": "mattia-hash",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582168/medium/3a4413893bf712f7a0939735b6f85298.png",
- "joined": "2021-01-18 03:56:55"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 198,
- "target": 213,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 31
- },
- {
- "user": {
- "id": "13389283",
- "username": "sirrius",
- "fullName": "sirrius",
- "avatarUrl": "https://www.gravatar.com/avatar/f8550157051d28281f853a9a37809118?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-15 09:37:54"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 198,
- "target": 205,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 26
- },
- {
- "user": {
- "id": "14880134",
- "username": "andrei.andrianov",
- "fullName": "Andrei Andrianov (andrei.andrianov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880134/medium/f72d9db33a8ea5923123bd6592d36e1c.jpeg",
- "joined": "2021-08-14 13:48:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 197,
- "target": 161,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762702",
- "username": "heathcliff",
- "fullName": "heathcliff",
- "avatarUrl": "https://www.gravatar.com/avatar/5af0e75a21458996716e217cd4e9e123?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 13:00:13"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 197,
- "target": 160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 188
- },
- {
- "user": {
- "id": "14629216",
- "username": "KyraInLove",
- "fullName": "KyraInLove",
- "avatarUrl": "https://www.gravatar.com/avatar/e7694c070365ac8ef2ef7574145a1629?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 19:21:30"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 197,
- "target": 203,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14879146",
- "username": "ayala.angel",
- "fullName": "Ángel AB (ayala.angel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879146/medium/d8fad9310dee8ae1ec705e68569ce5f5.jpeg",
- "joined": "2021-08-13 18:41:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 197,
- "target": 183,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780208",
- "username": "marko.soldo17",
- "fullName": "ice578 (marko.soldo17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780208/medium/9ed60f78ebf70fd97eee70588062babb.jpeg",
- "joined": "2021-05-31 11:35:03"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 197,
- "target": 171,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845846",
- "username": "LaytonBerth",
- "fullName": "Layton Berth (LaytonBerth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845846/medium/33dd43eca062e1472466df8f0d1d1e3f.jpeg",
- "joined": "2021-07-19 17:29:38"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 197,
- "target": 201,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778956",
- "username": "zhaitkin",
- "fullName": "Zak Haitkin (zhaitkin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778956/medium/cbbcb41eea198309631de1e55bd67ddd.jpeg",
- "joined": "2021-05-30 14:56:44"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 197,
- "target": 143,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14894112",
- "username": "Spuknit",
- "fullName": "Jenner Falconi (Spuknit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894112/medium/c70d81f75092cc062472ff2457d73c09.jpeg",
- "joined": "2021-08-24 11:24:56"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 197,
- "target": 244,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959859",
- "username": "innobbv",
- "fullName": "InYeob Kim (innobbv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959859/medium/43a5020712c1b5722adb72244461d813.png",
- "joined": "2021-10-12 10:32:16"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 195,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14163925",
- "username": "vorot93",
- "fullName": "Artem Vorotnikov (vorot93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14163925/medium/299883c7c1782433d71c6d983be9057c.jpeg",
- "joined": "2020-03-19 12:48:27"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 195,
- "target": 169,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849436",
- "username": "bbc_h",
- "fullName": "bbc_h",
- "avatarUrl": "https://www.gravatar.com/avatar/954adf8285d5a96d7e58518290e89f8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 14:34:56"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 195,
- "target": 163,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678164",
- "username": "dlsifgww81",
- "fullName": "Heng Lee (dlsifgww81)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678164/medium/7503bb5a61ce188a1bb1ea2a89d94ba7.jpeg",
- "joined": "2021-03-22 04:31:10"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 193,
- "target": 314,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13193338",
- "username": "brunoviniciusrp",
- "fullName": "Bruno Vinícius Veronez de Jesus (brunoviniciusrp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13193338/medium/9f0dcf40dbd88d79fb56251f14440d90.jpg",
- "joined": "2021-05-04 18:47:32"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 193,
- "target": 198,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14935087",
- "username": "Martinpons",
- "fullName": "Martinpons",
- "avatarUrl": "https://www.gravatar.com/avatar/469c9345494c800a82354e926ab96d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 14:30:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 193,
- "target": 167,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14015265",
- "username": "lachoj",
- "fullName": "lachoj",
- "avatarUrl": "https://www.gravatar.com/avatar/a5f1316621f8a09b76040c949d419569?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-16 02:01:21"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 193,
- "target": 198,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14375990",
- "username": "Rathcha",
- "fullName": "Rathcha",
- "avatarUrl": "https://www.gravatar.com/avatar/c55086b349b09615e6fede99d572f19a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-12 08:32:56"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 192,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572278",
- "username": "rarar13524",
- "fullName": "Gaming with XRamyX (rarar13524)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572278/medium/2dd70d77260fb974186e5a1d6864b830.jpg",
- "joined": "2021-01-11 07:59:19"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 192,
- "target": 190,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896966",
- "username": "Oswaldoge444",
- "fullName": "Oswaldo Gabriel Chacin Padrino (Oswaldoge444)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896966/medium/5e2b5aa7c19a63995192eede5cb187f8.jpeg",
- "joined": "2021-08-26 11:19:21"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 192,
- "target": 219,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14257038",
- "username": "heggeis",
- "fullName": "heggeis",
- "avatarUrl": "https://www.gravatar.com/avatar/330b77dbcc1517a1ab444c60cbb440eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-14 19:22:34"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 192,
- "target": 180,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14711810",
- "username": "malzebu",
- "fullName": "Gustavo BJ (malzebu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711810/medium/cd03191615e232f82ead1a505c725868.jpeg",
- "joined": "2021-04-14 13:23:05"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 192,
- "target": 202,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14992877",
- "username": "Dolor3s",
- "fullName": "Lydia Kretschmer (Dolor3s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992877/medium/4482e74c7921e2ce85e573db65775652.jpeg",
- "joined": "2021-11-06 17:00:52"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 191,
- "target": 191,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645188",
- "username": "Mportugal",
- "fullName": "Jorge Miguel Valtelhas Martins Pinto (Mportugal)",
- "avatarUrl": "https://www.gravatar.com/avatar/3fb92ae584f181bfd6bf851f4ea99c62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 14:25:38"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 191,
- "target": 194,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850742",
- "username": "diegordsx",
- "fullName": "Diego Rodrigues (diegordsx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850742/medium/aff2ed82538d1337e6edc75ed81bd679.png",
- "joined": "2021-07-23 15:12:11"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 190,
- "target": 189,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581964",
- "username": "sulispriyantoro",
- "fullName": "Sulis Priyantoro (sulispriyantoro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581964/medium/8cec45f68672c9fba30109b03be32b91.jpeg",
- "joined": "2021-02-25 09:35:37"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 190,
- "target": 151,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14560234",
- "username": "edd34",
- "fullName": "Eddine OMAR (edd34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560234/medium/0534091c65c2a4c5949ac664e467447a.png",
- "joined": "2021-01-02 22:24:15"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 189,
- "target": 215,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 1,
- "winning": 127
- },
- {
- "user": {
- "id": "14032039",
- "username": "atshn.gunduz",
- "fullName": "Ateşhan Gündüz (atshn.gunduz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14032039/medium/c18e7d0f24b527c7dc5b01dc005cc5eb.jpeg",
- "joined": "2019-11-07 03:01:52"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 189,
- "target": 189,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312764",
- "username": "Rovio",
- "fullName": "Rovio",
- "avatarUrl": "https://www.gravatar.com/avatar/6b4049a6622dc11793f89c419d76dcc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-07 16:33:21"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 188,
- "target": 220,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 5,
- "negativeVotes": 1,
- "winning": 156
- },
- {
- "user": {
- "id": "14563758",
- "username": "Aaloun",
- "fullName": "Ahmad Aloun (Aaloun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563758/medium/29227a6f926efc696277fdd9e534865c.jpeg",
- "joined": "2021-01-05 09:19:01"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 188,
- "target": 175,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839218",
- "username": "marianatcl",
- "fullName": "marianatcl",
- "avatarUrl": "https://www.gravatar.com/avatar/771898c1e5d57a152272dae2f2641f20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 07:45:18"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 188,
- "target": 208,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633084",
- "username": "Neti",
- "fullName": "Neti",
- "avatarUrl": "https://www.gravatar.com/avatar/dcb22645f203ac0030389fe5e1c70d07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 10:14:20"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 188,
- "target": 191,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14873098",
- "username": "Nahandiee",
- "fullName": "Nahandiee",
- "avatarUrl": "https://www.gravatar.com/avatar/1362220b514ef8bdd60de2e7ea6cb6f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 00:35:04"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 187,
- "target": 246,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12607142",
- "username": "marc_jonkers",
- "fullName": "Marc Jonkers (marc_jonkers)",
- "avatarUrl": "https://www.gravatar.com/avatar/2e7a050677249e9cf7b2de6d2b709489?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 02:09:19"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 187,
- "target": 197,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779612",
- "username": "gwenael.griffon",
- "fullName": "GwN (gwenael.griffon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779612/medium/a701e4e478f925227717ec68a9fb0581.jpeg",
- "joined": "2021-05-31 04:27:13"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 186,
- "target": 197,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575684",
- "username": "belov.rs.",
- "fullName": "Роман Белов (belov.rs.)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575684/medium/1fae5fd475caf183043bd45154a4e378.jpeg",
- "joined": "2021-01-13 13:58:30"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 186,
- "target": 169,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 44
- },
- {
- "user": {
- "id": "14976781",
- "username": "filippo22carlesso",
- "fullName": "filippo carlesso (filippo22carlesso)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14976781/medium/b513f26feddb23654276b4aab11cdc7b.jpeg",
- "joined": "2021-10-26 09:31:52"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 185,
- "target": 194,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14641166",
- "username": "Pentron",
- "fullName": "Raphael Winkler (Pentron)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14641166/medium/fcdec0ce2fcd767a359f61677cddff59.jpg",
- "joined": "2021-02-25 03:40:28"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 185,
- "target": 172,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12441464",
- "username": "Ibragimov",
- "fullName": "Victor Ibragimov (Ibragimov)",
- "avatarUrl": "https://www.gravatar.com/avatar/ef1064d6709a9ec1e62ec115a0d499b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-16 07:41:10"
- },
- "languages": [
- {
- "id": "tg",
- "name": "Tajik"
- }
- ],
- "translated": 185,
- "target": 195,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14538368",
- "username": "chitrongnick06",
- "fullName": "Chitnarong Yapho (chitrongnick06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14538368/medium/5ab3cc50cf7c04f652dc29303cacfec8.jpeg",
- "joined": "2021-01-12 05:30:07"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 184,
- "target": 185,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814690",
- "username": "khodaarahmi",
- "fullName": "Ehsan Khodaarahmi (khodaarahmi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814690/medium/22dbf1e43823e76cb094bff3fdcca212.jpeg",
- "joined": "2021-06-25 02:47:17"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 184,
- "target": 232,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856464",
- "username": "redtux",
- "fullName": "Pablo Hörtner (redtux)",
- "avatarUrl": "https://www.gravatar.com/avatar/609316eff93c34d3ed62daa2d30dbaa8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-28 10:37:41"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 183,
- "target": 179,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14206176",
- "username": "tee.arjchaidan",
- "fullName": "Tee Arjchaidan (tee.arjchaidan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14206176/medium/6682219ceae5ab132142a9590040c165.jpg",
- "joined": "2020-05-05 01:08:43"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 182,
- "target": 133,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959769",
- "username": "pgsrcorreia",
- "fullName": "Pedro Correia (pgsrcorreia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959769/medium/4f0f9e379aa753defec44c63ca34e553.png",
- "joined": "2021-10-12 09:37:38"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 182,
- "target": 186,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14994299",
- "username": "matiasj.lopez",
- "fullName": "Matías López (matiasj.lopez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994299/medium/c364edddc0c92088708266c5d0788ef9.jpeg",
- "joined": "2021-11-07 21:15:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 182,
- "target": 192,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861744",
- "username": "szabozoltan69",
- "fullName": "Zoltán Szabó (szabozoltan69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861744/medium/f9ef7465cd3b8d070e9c0eb815e0334c.jpeg",
- "joined": "2021-08-01 08:09:10"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 181,
- "target": 135,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779128",
- "username": "Alexandros_An",
- "fullName": "Alexandros_An",
- "avatarUrl": "https://www.gravatar.com/avatar/12664a63595289ebc401fba5acab07c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 17:48:17"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 181,
- "target": 186,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14519290",
- "username": "x.amel",
- "fullName": "Amelia Lin (x.amel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14519290/medium/6ff6c098087030df852f77775038bb19.jpg",
- "joined": "2020-12-02 04:32:25"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 180,
- "target": 188,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872412",
- "username": "Smokier",
- "fullName": "Станислав Рубашевский (Smokier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872412/medium/9695aeef85e8a0ab85b4864e9e9cf1c8.gif",
- "joined": "2021-08-09 10:37:24"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 179,
- "target": 203,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14336316",
- "username": "nigel_aniban06",
- "fullName": "Aniban Naigel (nigel_aniban06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14336316/medium/2aa7fab2cfceee21a1f764951e940680.jpeg",
- "joined": "2020-07-09 01:55:06"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 179,
- "target": 221,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911627",
- "username": "marcoporracin",
- "fullName": "Marco Porracin (marcoporracin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911627/medium/29719c7ebb665982afa5447e382aeb13.jpeg",
- "joined": "2021-09-06 14:37:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 178,
- "target": 165,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553512",
- "username": "paromix",
- "fullName": "Minho Yoo (paromix)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553512/medium/420c9f69984b66d1f5ac728802da42ad.jpg",
- "joined": "2020-12-28 08:21:03"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 178,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 24
- },
- {
- "user": {
- "id": "14952299",
- "username": "casperbgd",
- "fullName": "Darko (casperbgd)",
- "avatarUrl": "https://www.gravatar.com/avatar/adffb958eb89911a20d0898bd87550eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 09:36:38"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 177,
- "target": 172,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14555382",
- "username": "crackadoo",
- "fullName": "crackadoo",
- "avatarUrl": "https://www.gravatar.com/avatar/37faa0b78123599315b9edfe59ac4a50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-29 16:10:04"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 176,
- "target": 175,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 96
- },
- {
- "user": {
- "id": "14435238",
- "username": "tongtongpsc",
- "fullName": "tongtongpsc",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14435238/medium/92e24e643cd96da6cb32237c1aa8e51a.jpg",
- "joined": "2020-09-28 10:21:23"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 175,
- "target": 83,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614266",
- "username": "jkjimmy",
- "fullName": "jkjimmy",
- "avatarUrl": "https://www.gravatar.com/avatar/2d2f2409aa5d4b252f4fc9623615ba61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 23:40:36"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 175,
- "target": 117,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599084",
- "username": "yunussihamimre",
- "fullName": "Yunus Imre (yunussihamimre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599084/medium/aa222d76a371224efa62cc324b3f7cdd.jpg",
- "joined": "2021-01-28 15:31:34"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 175,
- "target": 160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546464",
- "username": "LucyCroft",
- "fullName": "LucyCroft",
- "avatarUrl": "https://www.gravatar.com/avatar/4f53453c3674623f046a36d946c614c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-22 12:30:27"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 175,
- "target": 180,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 16,
- "negativeVotes": 0,
- "winning": 31
- },
- {
- "user": {
- "id": "14984959",
- "username": "lesnov",
- "fullName": "lesnov",
- "avatarUrl": "https://www.gravatar.com/avatar/7b606916d76de291f823b051e96c00ec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 04:04:07"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 174,
- "target": 160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14943545",
- "username": "k.otika",
- "fullName": "k.otika",
- "avatarUrl": "https://www.gravatar.com/avatar/166d75bbff1b6b61474e4e64644a5e81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-29 14:13:37"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 173,
- "target": 194,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829686",
- "username": "arnchpt",
- "fullName": "arnchpt",
- "avatarUrl": "https://www.gravatar.com/avatar/2c2c6b4ff07878ac50e02fc7ca2019c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 16:02:41"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 173,
- "target": 177,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786888",
- "username": "amiramin695",
- "fullName": "amiramin695",
- "avatarUrl": "https://www.gravatar.com/avatar/9be9b78cf2a8e9a83567fbb6ba5b1526?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 03:46:51"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 173,
- "target": 219,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884874",
- "username": "AsUsedtobe",
- "fullName": "AsUsedtobe",
- "avatarUrl": "https://www.gravatar.com/avatar/77a168de5071ef93f6ebe9e6bf01a6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 15:09:52"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 172,
- "target": 141,
- "approved": 0,
- "voted": 27,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14385582",
- "username": "pongpan",
- "fullName": "Pongpan Nakkaew (pongpan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14385582/medium/306a571c35caa1c778b853fd1596ef1c.jpeg",
- "joined": "2021-02-20 10:45:42"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 171,
- "target": 110,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785626",
- "username": "Brange_",
- "fullName": "Brange_",
- "avatarUrl": "https://www.gravatar.com/avatar/d5f99d63541e8c56e475f86660e48e2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:31:48"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 170,
- "target": 159,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14624814",
- "username": "awongvasu",
- "fullName": "awongvasu",
- "avatarUrl": "https://www.gravatar.com/avatar/5b84e8459184e64e8501f11e370a6b52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 02:57:16"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 170,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13983627",
- "username": "dina24samir",
- "fullName": "Dina Samir (dina24samir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13983627/medium/dc15713cc63793d033ad768808783f1f.jpg",
- "joined": "2019-09-14 18:56:58"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 170,
- "target": 151,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 51
- },
- {
- "user": {
- "id": "14990557",
- "username": "samuel281",
- "fullName": "sungwoo park (samuel281)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990557/medium/ec6e0432bcf1ee504ec6f7b281ca52ac.jpeg",
- "joined": "2021-11-04 19:17:28"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 169,
- "target": 104,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697500",
- "username": "rbmilch",
- "fullName": "Daniel B. (rbmilch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697500/medium/e8102876603e29ba276175e300c93704.jpeg",
- "joined": "2021-04-04 18:57:06"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 168,
- "target": 144,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862460",
- "username": "vdusart",
- "fullName": "vdusart",
- "avatarUrl": "https://www.gravatar.com/avatar/1e5982486a378fca6ee9afaef32c5482?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 19:04:53"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 167,
- "target": 155,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 54
- },
- {
- "user": {
- "id": "14607372",
- "username": "anastazja.k1",
- "fullName": "anastazja.k1",
- "avatarUrl": "https://www.gravatar.com/avatar/a4a5576a5058fe4eac1a0807d3306072?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 15:28:56"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 167,
- "target": 165,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 43,
- "negativeVotes": 0,
- "winning": 86
- },
- {
- "user": {
- "id": "14058791",
- "username": "shameed",
- "fullName": "shameed",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058791/medium/a52fd50f68c1f10bc8e139c33fddef76.png",
- "joined": "2019-12-27 08:11:15"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 166,
- "target": 330,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803952",
- "username": "Oscar_small",
- "fullName": "Oscar_small",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803952/medium/98aa4e60adbdf6174d78c96da90f0c11.jpeg",
- "joined": "2021-06-17 14:03:03"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 166,
- "target": 198,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777840",
- "username": "educordobac",
- "fullName": "Edu Córdoba (educordobac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777840/medium/28e0c7c5a9b9377a04173c40e52eb5f2.jpeg",
- "joined": "2021-05-29 13:29:47"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 165,
- "target": 168,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792522",
- "username": "WotCa",
- "fullName": "WotCa",
- "avatarUrl": "https://www.gravatar.com/avatar/2805d3c0760cee8d6560761e9d71671d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-11 20:10:05"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 165,
- "target": 484,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14745718",
- "username": "LatestVGC",
- "fullName": "LatestVGC",
- "avatarUrl": "https://www.gravatar.com/avatar/d2122eb470a4a72f1d34fceb303344fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 10:31:55"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 165,
- "target": 167,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591102",
- "username": "Gamer_top_13",
- "fullName": "Gamer 13 (Gamer_top_13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591102/medium/2b42c26cd428975962a463206e80a523.png",
- "joined": "2021-01-27 04:57:24"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 165,
- "target": 169,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967689",
- "username": "leonardoluan2018",
- "fullName": "Leonardo deficiencia auditiva (leonardoluan2018)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967689/medium/e9e918da4dba2bd0a481b1cb2e1473c3.png",
- "joined": "2021-10-18 21:23:32"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 164,
- "target": 179,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746808",
- "username": "a.kaya001",
- "fullName": "a.kaya001",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746808/medium/911f7b2c423006d154e3e739638c62b2.JPG",
- "joined": "2021-05-09 03:24:05"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 164,
- "target": 112,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757734",
- "username": "thescootercooter",
- "fullName": "thescootercooter",
- "avatarUrl": "https://www.gravatar.com/avatar/5ed89503f17d635ea390409a911fc7f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 13:25:45"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 164,
- "target": 240,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933025",
- "username": "EdgyLsx",
- "fullName": "EdgyLsx",
- "avatarUrl": "https://www.gravatar.com/avatar/58e0d3838f341eb1089af10f1da47f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 05:12:37"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 164,
- "target": 191,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947603",
- "username": "ralfy00",
- "fullName": "ralfy00",
- "avatarUrl": "https://www.gravatar.com/avatar/ba9ceea585557b3cbd8bda53d4733235?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 16:38:19"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 164,
- "target": 154,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735992",
- "username": "tcmpasq",
- "fullName": "tcmpasq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735992/medium/4d084cf7bbb19395652e6bae9d61873c.jpg",
- "joined": "2021-05-03 02:41:42"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 163,
- "target": 140,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "13978949",
- "username": "AdamStudenik",
- "fullName": "Adam Studenik 🧮 (AdamStudenik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978949/medium/74a9ae3a5b9b779e869b55803b25c48a.jpg",
- "joined": "2019-09-10 13:50:06"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 162,
- "target": 158,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "15005487",
- "username": "Anna_Shirkova",
- "fullName": "Anna_Shirkova",
- "avatarUrl": "https://www.gravatar.com/avatar/db6b29e6ea944a2b355e690459255898?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 09:08:38"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 162,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14179045",
- "username": "albiDmtr",
- "fullName": "Albert Domotor (albiDmtr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14179045/medium/5a2888caee97884225fc31cf26e784f1.png",
- "joined": "2020-03-29 15:29:04"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 162,
- "target": 158,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 112
- },
- {
- "user": {
- "id": "14763818",
- "username": "fontainepr9",
- "fullName": "Pierre Fontaine (fontainepr9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763818/medium/7fe833564b2595abbcb1908ceada87bf.png",
- "joined": "2021-05-19 08:37:18"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 161,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633050",
- "username": "Blackberries",
- "fullName": "Blackberries",
- "avatarUrl": "https://www.gravatar.com/avatar/ec3370ce45629b17c8e3d911d1085dee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 09:38:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 161,
- "target": 182,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14177681",
- "username": "0972947249zz",
- "fullName": "ปอง หลอน (0972947249zz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14177681/medium/6c9d44a9d7e493a08b19992d4f4a90b2.jpeg",
- "joined": "2020-03-28 17:07:25"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 161,
- "target": 160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690796",
- "username": "Elksomi",
- "fullName": "Elksomi",
- "avatarUrl": "https://www.gravatar.com/avatar/005c292fb0939d213e58c9cb3550516b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 00:42:13"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 160,
- "target": 158,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14220392",
- "username": "ChihChengLiang",
- "fullName": "Chih Cheng Liang (ChihChengLiang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220392/medium/bc9a0361c42eb9f4e64fb8b05b8df8b5.jpeg",
- "joined": "2021-10-09 04:42:00"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 160,
- "target": 257,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620388",
- "username": "danielthewolf93",
- "fullName": "Daniel White (danielthewolf93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620388/medium/8d1224ce00c0cb29a835ea393629e5f9.jpeg",
- "joined": "2021-02-11 16:38:03"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 160,
- "target": 178,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14621330",
- "username": "DeDe2424--",
- "fullName": "DeDe2424--",
- "avatarUrl": "https://www.gravatar.com/avatar/de0e3fcc6008b6536f740e507888ce04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 08:46:05"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 159,
- "target": 154,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685918",
- "username": "ekkoin",
- "fullName": "ekkoin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685918/medium/8e7bf955bc2789383269e03684bd386a.png",
- "joined": "2021-03-27 12:17:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 159,
- "target": 266,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14589096",
- "username": "shadowmonarch",
- "fullName": "shadowmonarch",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14589096/medium/e625e2e3f8e2d7a5b2a351a5bfe34341.jpg",
- "joined": "2021-01-23 05:28:14"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 158,
- "target": 144,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 93
- },
- {
- "user": {
- "id": "14730220",
- "username": "chanmix51",
- "fullName": "chanmix51",
- "avatarUrl": "https://www.gravatar.com/avatar/b80a4b5f0be0575599f7b18b80ced91c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 12:11:20"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 158,
- "target": 165,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 63
- },
- {
- "user": {
- "id": "14619384",
- "username": "MarinaX",
- "fullName": "MarinaX",
- "avatarUrl": "https://www.gravatar.com/avatar/df9441f73e93cb1009eb61b1d4b8b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 10:50:32"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 157,
- "target": 140,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14553260",
- "username": "JudasLuo",
- "fullName": "JudasLuo",
- "avatarUrl": "https://www.gravatar.com/avatar/d57d9372ebe67ca8666febb5dc59ab2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 05:00:04"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 157,
- "target": 284,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 38,
- "negativeVotes": 1,
- "winning": 93
- },
- {
- "user": {
- "id": "14553630",
- "username": "rudygt",
- "fullName": "Rudy Alvarez (rudygt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553630/medium/9e2a515a92ed47bf1105715fe4be0b3f.jpeg",
- "joined": "2020-12-28 10:26:11"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 157,
- "target": 161,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887590",
- "username": "javajava",
- "fullName": "吉田圭 (javajava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887590/medium/ed8d5742366308e76f6f49506b05a19c.png",
- "joined": "2021-08-19 09:44:18"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 157,
- "target": 541,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758456",
- "username": "AmirDeveloper",
- "fullName": "Amirjon Rajabov (AmirDeveloper)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758456/medium/b93489a116fc73d4aed09dddf8e29541.png",
- "joined": "2021-05-15 15:56:36"
- },
- "languages": [
- {
- "id": "tg",
- "name": "Tajik"
- }
- ],
- "translated": 156,
- "target": 156,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725874",
- "username": "Mizeri",
- "fullName": "Mizeri",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725874/medium/438f8e88827805ef3cb42b27290f4954.png",
- "joined": "2021-04-25 07:37:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 156,
- "target": 220,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 80
- },
- {
- "user": {
- "id": "14869618",
- "username": "msbarathi07",
- "fullName": "Barathi M S (msbarathi07)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869618/medium/87fb1a90204c1d83ab5ff43906855789.jpeg",
- "joined": "2021-08-07 03:44:23"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 155,
- "target": 312,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 23,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902898",
- "username": "JacobEvans56",
- "fullName": "JacobEvans56",
- "avatarUrl": "https://www.gravatar.com/avatar/6ec4d863a839de81ce1e8cb9c19394bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 04:00:30"
- },
- "languages": [
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 155,
- "target": 129,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959957",
- "username": "vincentlg",
- "fullName": "Vincent Le Gallic (vincentlg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959957/medium/6fecfb73bd02428094be6af1fd2de44a.png",
- "joined": "2019-08-23 03:04:10"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 155,
- "target": 172,
- "approved": 0,
- "voted": 223,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "14646492",
- "username": "Kajachuan",
- "fullName": "Kevin Cajachuán (Kajachuan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646492/medium/7a8ecd5d8dfaacf424ad44f5f47aa24e.jpeg",
- "joined": "2021-10-04 17:21:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 154,
- "target": 179,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 107
- },
- {
- "user": {
- "id": "14601520",
- "username": "tomekszafalowicz",
- "fullName": "tomek szafalowicz (tomekszafalowicz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601520/medium/56d33e183f798197d7879c56c1b8cbec.jpeg",
- "joined": "2021-01-30 10:21:21"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 154,
- "target": 141,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 37
- },
- {
- "user": {
- "id": "14559546",
- "username": "antoine84",
- "fullName": "antoine84",
- "avatarUrl": "https://www.gravatar.com/avatar/3ae639e6b3883afd1bc1f158478a0cdd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 10:44:06"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 154,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 101
- },
- {
- "user": {
- "id": "14400640",
- "username": "Gumana",
- "fullName": "Gumana",
- "avatarUrl": "https://www.gravatar.com/avatar/a6c9e47198ce59e2f70918bf4c47f358?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-02 10:34:12"
- },
- "languages": [
- {
- "id": "br-FR",
- "name": "Breton"
- }
- ],
- "translated": 154,
- "target": 158,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14552668",
- "username": "PAEPE",
- "fullName": "Paulo Peres (PAEPE)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14552668/medium/3244c6b581c128c9acfbe381d35db6f3.png",
- "joined": "2020-12-27 14:22:40"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 154,
- "target": 152,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 104
- },
- {
- "user": {
- "id": "14775092",
- "username": "alexsenchin",
- "fullName": "alexsenchin",
- "avatarUrl": "https://www.gravatar.com/avatar/9aab7074203a4c051ab2a23acf134c6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 09:47:44"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 153,
- "target": 152,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14737506",
- "username": "Fatorin",
- "fullName": "Fatorin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737506/medium/2d0f76b581d1fef9ebf6e3a26f0faee2.png",
- "joined": "2021-05-04 06:03:56"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 153,
- "target": 258,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14062736",
- "username": "bichvan2408",
- "fullName": "bichvan2408",
- "avatarUrl": "https://www.gravatar.com/avatar/187c06e896a88f5c2f4873d472b79cd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-03 07:07:10"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 153,
- "target": 168,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 3,
- "negativeVotes": 15,
- "winning": 5
- },
- {
- "user": {
- "id": "14750292",
- "username": "xmr192217",
- "fullName": "Aiden Jameson (xmr192217)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750292/medium/777c2bbb1ce44e1ed131bcec981e6c9f.png",
- "joined": "2021-05-11 01:12:48"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 153,
- "target": 241,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 99
- },
- {
- "user": {
- "id": "14270554",
- "username": "Ravidin",
- "fullName": "Ravidin",
- "avatarUrl": "https://www.gravatar.com/avatar/5deca8838108d6994c6c1ca3a0f9a1d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-30 08:03:00"
- },
- "languages": [
- {
- "id": "ky",
- "name": "Kyrgyz"
- }
- ],
- "translated": 152,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904502",
- "username": "keslon762",
- "fullName": "Sonho De Jogador (keslon762)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904502/medium/79750cc0fb5d2a1b16f80d91284d485c.jpeg",
- "joined": "2021-09-01 08:01:48"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 152,
- "target": 181,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582910",
- "username": "sier_892",
- "fullName": "sier_892",
- "avatarUrl": "https://www.gravatar.com/avatar/2671bb67df5a9829c3515551cc86026d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 12:58:42"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 152,
- "target": 133,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 31
- },
- {
- "user": {
- "id": "15026871",
- "username": "Naiyoma",
- "fullName": "Lankas Aurelia (Naiyoma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026871/medium/aff7c0f7016144e5aa436606c298be80.png",
- "joined": "2021-11-22 17:55:31"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 151,
- "target": 142,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14789894",
- "username": "Cruca",
- "fullName": "Cruca",
- "avatarUrl": "https://www.gravatar.com/avatar/4c661a063d5bb5916c713c57a4e2033e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 12:39:15"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 151,
- "target": 153,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14173249",
- "username": "samtimes",
- "fullName": "samtimes news (samtimes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14173249/medium/813bbf70b91633dca45bbfc0332490b8.jpeg",
- "joined": "2020-03-25 19:07:06"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 151,
- "target": 212,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14099615",
- "username": "Stelita",
- "fullName": "Stela (Stelita)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14099615/medium/eddaa7939390c9b280fda8d68ebe2262.png",
- "joined": "2020-02-03 08:10:56"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 151,
- "target": 166,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588718",
- "username": "tjr3117",
- "fullName": "김재* (tjr3117)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588718/medium/2c851e481bcc27ed20a7ac68e06d2bbd.jpeg",
- "joined": "2021-01-22 00:29:06"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 150,
- "target": 109,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907227",
- "username": "CivicLee",
- "fullName": "Civic Lee (CivicLee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907227/medium/1f411053836d29859329adf9d2dc3e8b.jpeg",
- "joined": "2021-09-03 05:13:05"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 150,
- "target": 231,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569670",
- "username": "highquark",
- "fullName": "highquark",
- "avatarUrl": "https://www.gravatar.com/avatar/97f57994e172f22ea45f4545b6946ea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 12:32:42"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 149,
- "target": 151,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 100
- },
- {
- "user": {
- "id": "14727044",
- "username": "MetehanOzyurek",
- "fullName": "Metehan Özyürek (MetehanOzyurek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727044/medium/185fcf0359203eb8d719570e8cf23646.png",
- "joined": "2021-04-28 05:56:50"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 149,
- "target": 134,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027271",
- "username": "FDuchesne",
- "fullName": "florentduchesne (FDuchesne)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027271/medium/b41c07fe5b0ff8c2c5b506eeee41e184.png",
- "joined": "2021-11-23 03:14:31"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 149,
- "target": 153,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891034",
- "username": "igor.ciolac",
- "fullName": "Igor Ciolac (igor.ciolac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891034/medium/d0954f264a71ebadb2c802cccc7ac38f.png",
- "joined": "2021-08-22 05:38:51"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 148,
- "target": 153,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14580278",
- "username": "yo_comy",
- "fullName": "Cosmin Isaila (yo_comy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14580278/medium/4e8c695bee635a7caf9aa6117688f9bd.jpeg",
- "joined": "2021-01-16 16:21:25"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 148,
- "target": 162,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 39
- },
- {
- "user": {
- "id": "14543516",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/448e671eb249237954aa7c8245f716a4?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-20 07:27:40"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 148,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 98
- },
- {
- "user": {
- "id": "14633114",
- "username": "gea1981",
- "fullName": "Giovanni Antonio Montalto (gea1981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633114/medium/7725c7f09d7fa1fb382faf515cef1508.png",
- "joined": "2021-02-20 10:41:23"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 148,
- "target": 163,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 35
- },
- {
- "user": {
- "id": "14999655",
- "username": "Kevster",
- "fullName": "Kevster",
- "avatarUrl": "https://www.gravatar.com/avatar/9d6dba77a98f5e2d3115cbf8f877f3c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 18:52:02"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 148,
- "target": 154,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546584",
- "username": "fesslerem",
- "fullName": "fesslerem",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546584/medium/daeb2ca91f3cbe8c17cf78e73c56694a.png",
- "joined": "2020-12-22 14:14:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 148,
- "target": 121,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14389094",
- "username": "Pol_Lanski",
- "fullName": "Pol_Lanski",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14389094/medium/7c36be19eeb088c45a38e21224aca68f.jpg",
- "joined": "2020-08-24 02:33:35"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 147,
- "target": 167,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896320",
- "username": "humairarzmn",
- "fullName": "humairarzmn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896320/medium/2090273c7d30341e9a0cdd0befd332a8.jpeg",
- "joined": "2021-08-26 02:02:28"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 145,
- "target": 137,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727924",
- "username": "YuriNascimento",
- "fullName": "Yuri Nascimento (YuriNascimento)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727924/medium/64551c4f06627c3dc665d55f0c240b6f.jpeg",
- "joined": "2021-04-26 21:17:30"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 145,
- "target": 154,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642366",
- "username": "Vladimir_Kharlamenko",
- "fullName": "Vladimir_Kharlamenko",
- "avatarUrl": "https://www.gravatar.com/avatar/9792ee2aebc9e5722d6597b24e6a02d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 15:21:05"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 144,
- "target": 123,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "15029629",
- "username": "Pirozok",
- "fullName": "Bohdan Gluschak (Pirozok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029629/medium/55883d9f15e025e45decd9434a3a1c01.png",
- "joined": "2021-11-24 16:20:42"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 144,
- "target": 125,
- "approved": 0,
- "voted": 35,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716724",
- "username": "3Juhwan",
- "fullName": "3Juhwan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14716724/medium/9fa3d45ad0f2a09825dbbdd17edf9a2a.jpeg",
- "joined": "2021-04-18 10:24:44"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 144,
- "target": 107,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578222",
- "username": "Marstwan",
- "fullName": "Daniel Marcos (Marstwan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578222/medium/5a281f6a007e4d718b2fc857892f54d7.jpeg",
- "joined": "2021-01-15 07:44:50"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 143,
- "target": 137,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14030627",
- "username": "developerfred",
- "fullName": "Fred @codingsh (developerfred)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14030627/medium/03ffd8e59b3a41cd97571d840f1789c7.png",
- "joined": "2019-11-09 13:33:58"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 143,
- "target": 151,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14776878",
- "username": "JoshNX",
- "fullName": "JoshNX",
- "avatarUrl": "https://www.gravatar.com/avatar/4137d46ef3ef3f0fcb886d48e80491d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 16:30:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 143,
- "target": 124,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786318",
- "username": "raptoright",
- "fullName": "Orhun Onar (raptoright)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786318/medium/7ea95d1beaa64d32c9af167ec73c44bc.jpeg",
- "joined": "2021-06-04 14:04:54"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 143,
- "target": 111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 96
- },
- {
- "user": {
- "id": "15003713",
- "username": "kundansahu.official",
- "fullName": "Kundan (kundansahu.official)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003713/medium/f69051583d5702ac8c51249dbe620409.png",
- "joined": "2021-11-15 00:59:45"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 142,
- "target": 237,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735538",
- "username": "feidar",
- "fullName": "feidar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735538/medium/35ad0eec06bbf6d8889c8e0b7cc50c05.jpeg",
- "joined": "2021-05-02 14:58:00"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 142,
- "target": 123,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650142",
- "username": "zurasy0",
- "fullName": "zurasy0",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650142/medium/1c4cf49eeb7053ef88192de4b222971d.png",
- "joined": "2021-03-02 14:53:45"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 142,
- "target": 143,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "12343167",
- "username": "spolischook",
- "fullName": "spolischook",
- "avatarUrl": "https://www.gravatar.com/avatar/e106204e09df019627176fcfddcd6f7b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-13 16:56:39"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 142,
- "target": 114,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778974",
- "username": "Plaotin",
- "fullName": "Plaotin",
- "avatarUrl": "https://www.gravatar.com/avatar/eab03bb8abbb3f1774760eea9ff5be07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 15:03:49"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 141,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895926",
- "username": "_madmarc",
- "fullName": "Marc (_madmarc)",
- "avatarUrl": "https://www.gravatar.com/avatar/f76a17fda51aafca1ad0530e4a11d9ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 17:48:10"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 141,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572104",
- "username": "unoreg1",
- "fullName": "unoreg1",
- "avatarUrl": "https://www.gravatar.com/avatar/aba0180480f2f8c0f00a6fa110a9949c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 06:18:28"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 141,
- "target": 133,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 45
- },
- {
- "user": {
- "id": "14691960",
- "username": "evilever",
- "fullName": "Ever Lavén (evilever)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691960/medium/8f7a197d1400926e916428a4179b1864.jpg",
- "joined": "2021-03-31 15:44:34"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 140,
- "target": 131,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594278",
- "username": "murray_rothbard",
- "fullName": "Gabriel Mendes (murray_rothbard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594278/medium/2db3f31d8f58c858123958b1d8988312.jpg",
- "joined": "2021-01-29 22:09:50"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 140,
- "target": 158,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 52
- },
- {
- "user": {
- "id": "14808924",
- "username": "DreamerM",
- "fullName": "Dreamer-M (DreamerM)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808924/medium/46e29fd1040a6e72e30c12277beb89fd.jpeg",
- "joined": "2021-06-21 00:08:39"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 139,
- "target": 190,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14769694",
- "username": "andrey1a5",
- "fullName": "andrey moroz (andrey1a5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769694/medium/b5641bfee356df01a3835c1fda9a8c24.png",
- "joined": "2021-05-23 14:41:16"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 139,
- "target": 105,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992815",
- "username": "Radiovolna86",
- "fullName": "Radiovolna86",
- "avatarUrl": "https://www.gravatar.com/avatar/d87b568efadaff6a07b43bb2b191bf80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 15:09:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 138,
- "target": 117,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899686",
- "username": "preetishpriyadarshi",
- "fullName": "Preetish Priyadarshi Samal (preetishpriyadarshi)",
- "avatarUrl": "https://www.gravatar.com/avatar/648e4c1db799f61d97a4b0be7a1969cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 16:40:12"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 138,
- "target": 193,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937371",
- "username": "mainulkhaled",
- "fullName": "mainulkhaled",
- "avatarUrl": "https://www.gravatar.com/avatar/71c448af11b12c4951d886ee6de6b596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-26 12:25:07"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 138,
- "target": 200,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675016",
- "username": "Halah-Mahmood",
- "fullName": "Halah Mahmood (Halah-Mahmood)",
- "avatarUrl": "https://www.gravatar.com/avatar/8d13e3489a7764e7e0fbb52f7d9b5786?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 15:09:06"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 138,
- "target": 119,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14017357",
- "username": "baidarus_pnl",
- "fullName": "baidarus_pnl",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14017357/medium/c679af4cb0b848838a61db70278c4275.jpeg",
- "joined": "2019-10-18 01:35:31"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 137,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 8,
- "winning": 2
- },
- {
- "user": {
- "id": "14992691",
- "username": "lindormfinance",
- "fullName": "Lindorm Finance (lindormfinance)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992691/medium/aaf8c25e10c1e588f9d8ed58c2a2a657.jpg",
- "joined": "2021-11-06 13:09:21"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 137,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588544",
- "username": "vaiven",
- "fullName": "vaiven",
- "avatarUrl": "https://www.gravatar.com/avatar/190c59bb54537a9090f31e539b09cafe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 20:00:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 137,
- "target": 148,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14695818",
- "username": "ngcarlos038",
- "fullName": "Carlos Vargas (ngcarlos038)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695818/medium/5640f56c3c28e95a63f763e3b5eacbf3.png",
- "joined": "2021-04-03 10:15:58"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 137,
- "target": 149,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14958649",
- "username": "Minnielim",
- "fullName": "Minnielim",
- "avatarUrl": "https://www.gravatar.com/avatar/9c0126dcb0f37fedfb7ca78686802ac4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 13:19:53"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 137,
- "target": 253,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955921",
- "username": "valenti.g.kovalenko",
- "fullName": "Валентина Коваленко (valenti.g.kovalenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955921/medium/b06f326d143a075371c080aafc8ac399.png",
- "joined": "2021-10-09 07:53:52"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 136,
- "target": 109,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664124",
- "username": "glpyldrm",
- "fullName": "glpyldrm",
- "avatarUrl": "https://www.gravatar.com/avatar/ab52d3346e48b9478699da6837fa29cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 22:52:47"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 136,
- "target": 108,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14543498",
- "username": "numdar335",
- "fullName": "Nikolaos Karellas (numdar335)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14543498/medium/86c5a5e34804ba36df795323383d16d9.jpeg",
- "joined": "2020-12-20 11:22:34"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 136,
- "target": 141,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13715077",
- "username": "alexkoala",
- "fullName": "AlexKoala (alexkoala)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13715077/medium/9b0a31ce6045c9e83de3117021fff314.png",
- "joined": "2020-05-29 12:25:38"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 135,
- "target": 127,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647238",
- "username": "zamptom",
- "fullName": "zamptom",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647238/medium/ebe5fc22995b98e8bdcb2fe79fb7f38c.png",
- "joined": "2021-03-01 02:50:47"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 135,
- "target": 101,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14623014",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/fb9c9edaa86f5408396f7cce028a9c54?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 13:03:38"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 135,
- "target": 168,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 81
- },
- {
- "user": {
- "id": "14637662",
- "username": "T_Play",
- "fullName": "T_Play",
- "avatarUrl": "https://www.gravatar.com/avatar/f9d44ec38069769e515ad249045fd7a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 07:06:31"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 135,
- "target": 115,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14996569",
- "username": "lib",
- "fullName": "lib",
- "avatarUrl": "https://www.gravatar.com/avatar/e6b38eae96bfc3dadae468e552ed75bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 13:05:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 135,
- "target": 139,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713748",
- "username": "flyng12",
- "fullName": "flyng12",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14713748/medium/c9ee0ecb2c8ecdb140bc6fdf8e7002b4.jpg",
- "joined": "2021-04-15 23:08:55"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 134,
- "target": 138,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14583798",
- "username": "krakora20",
- "fullName": "Jaroslav Krákora (krakora20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14583798/medium/530ff4fec4b8cf4fbd456bea853b8d23.jpg",
- "joined": "2021-01-19 04:05:50"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 134,
- "target": 129,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970323",
- "username": "ragnolimichele99",
- "fullName": "Ragn Oh (ragnolimichele99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970323/medium/fb22954c81db3329ada19b179d4f63f6.jpeg",
- "joined": "2021-10-20 16:01:02"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 133,
- "target": 127,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881144",
- "username": "clarinEX",
- "fullName": "clarinEX",
- "avatarUrl": "https://www.gravatar.com/avatar/e65239ac0398cfd2f9b202e6901b37b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-15 09:23:56"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 133,
- "target": 126,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718040",
- "username": "BXS1001",
- "fullName": "BXS1001",
- "avatarUrl": "https://www.gravatar.com/avatar/021246c2d0d014a20365c486197f1735?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 09:28:57"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 133,
- "target": 119,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 23
- },
- {
- "user": {
- "id": "12700500",
- "username": "venugopal",
- "fullName": "venugopal",
- "avatarUrl": "https://www.gravatar.com/avatar/46dfe217f6eac5314f0e9f84d4ed1e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-02 17:47:46"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 133,
- "target": 281,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14762030",
- "username": "hendra.herviawan",
- "fullName": "M Hendra Herviawan (hendra.herviawan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762030/medium/5b0aca21e7e52bd490df7b009d924f40.jpeg",
- "joined": "2021-05-18 04:56:06"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 133,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781010",
- "username": "NinaWrong",
- "fullName": "NinaWrong",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781010/medium/8c3e0660cd91ea8501e6d571d298fc62.jpeg",
- "joined": "2021-06-01 02:44:35"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 132,
- "target": 182,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14801848",
- "username": "jasonlou22",
- "fullName": "Iasonas Loukaidis (jasonlou22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801848/medium/ce8cf5bd5bd16320aadbd8438ce2c4b6.jpeg",
- "joined": "2021-06-16 08:44:54"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 132,
- "target": 113,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946279",
- "username": "Jackstar02",
- "fullName": "Alessandro Caterina (Jackstar02)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946279/medium/13934793ff931b54990a4a7572e64000.jpeg",
- "joined": "2021-10-01 15:51:45"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 132,
- "target": 140,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865322",
- "username": "muxelmann",
- "fullName": "Max Zangs (muxelmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865322/medium/8e6a15dc96741d3a6c5b516d7f57fa61.jpeg",
- "joined": "2021-08-03 16:59:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 132,
- "target": 125,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667296",
- "username": "shyamsundarb",
- "fullName": "ShyamSundarB (shyamsundarb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667296/medium/c002d83a0fdab4848fc1d3bbd5f1157c.png",
- "joined": "2021-03-14 07:42:09"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 131,
- "target": 260,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14642742",
- "username": "Jerrulul",
- "fullName": "Jerrulul",
- "avatarUrl": "https://www.gravatar.com/avatar/31c239a1b4f66fa0ccaad7d3925fa501?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 21:27:17"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 131,
- "target": 97,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14570620",
- "username": "holger_li",
- "fullName": "holger_li",
- "avatarUrl": "https://www.gravatar.com/avatar/f1afc244875a9ff6b180fca00e89e01c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 07:00:05"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 131,
- "target": 275,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 32,
- "negativeVotes": 2,
- "winning": 87
- },
- {
- "user": {
- "id": "14711642",
- "username": "kenowlee",
- "fullName": "Ronaldo Santos (kenowlee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711642/medium/cc1ab7ad933f06b0fc99de7457c6b3c9.jpeg",
- "joined": "2021-04-14 10:26:45"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 131,
- "target": 146,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738520",
- "username": "joselopino",
- "fullName": "José Pino (joselopino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738520/medium/7de7ed844d491081436c60370bfce573.png",
- "joined": "2021-05-04 21:55:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 130,
- "target": 122,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 58
- },
- {
- "user": {
- "id": "14997983",
- "username": "saitalay86",
- "fullName": "Sait ALAY (saitalay86)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14997983/medium/8a892e10792fe564e2bfad9938fb2cf2.png",
- "joined": "2021-11-10 13:43:11"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 130,
- "target": 107,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674494",
- "username": "joelsantinho",
- "fullName": "Joel Santinho (joelsantinho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674494/medium/c2a55d97a58dbd80619b6d99c23e5866.jpeg",
- "joined": "2021-03-19 08:29:56"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 130,
- "target": 130,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581702",
- "username": "alosue",
- "fullName": "Alberto Uez (alosue)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581702/medium/d3f03f485db3b03afcd7058215d68264.jpeg",
- "joined": "2021-01-17 18:51:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 129,
- "target": 144,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14671218",
- "username": "marcelp23",
- "fullName": "Marcel Arturo Peña (marcelp23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14671218/medium/000e71fdd529be100a4e3fdf97b52a39.jpeg",
- "joined": "2021-03-17 04:43:24"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 129,
- "target": 120,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682496",
- "username": "reaminy_8",
- "fullName": "Andriy Kanashkov (reaminy_8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682496/medium/061ed3d8a1e96eff4add39d9f520a6d9.jpeg",
- "joined": "2021-03-24 23:38:45"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 129,
- "target": 97,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634672",
- "username": "devyfriend",
- "fullName": "devy friend (devyfriend)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634672/medium/2520a4958515a21c5f8868011e5a4e7d.jpeg",
- "joined": "2021-02-21 12:28:02"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 129,
- "target": 114,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14798702",
- "username": "FlorentLef",
- "fullName": "Florent Lefebvre (FlorentLef)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798702/medium/b7d6ed1d69505955e065e3518df312b0.jpeg",
- "joined": "2021-06-14 04:12:04"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 129,
- "target": 128,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731932",
- "username": "MQL83",
- "fullName": "MQL83",
- "avatarUrl": "https://www.gravatar.com/avatar/348c513aed120afc29cc2d347b1a4bff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 16:11:09"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 129,
- "target": 138,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14830248",
- "username": "KingGame001",
- "fullName": "King Game (KingGame001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830248/medium/0c6cb9850478dd68dd3552998b05eea4.png",
- "joined": "2021-07-07 03:31:32"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 128,
- "target": 85,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12590247",
- "username": "gursingh",
- "fullName": "Gursharnjit Singh (gursingh)",
- "avatarUrl": "https://www.gravatar.com/avatar/911f7049d7660c93e2d0e01245ee2d4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-11 14:40:07"
- },
- "languages": [
- {
- "id": "pa-IN",
- "name": "Punjabi"
- }
- ],
- "translated": 128,
- "target": 223,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648500",
- "username": "eduardogomes",
- "fullName": "Eduardo Gomes (eduardogomes)",
- "avatarUrl": "https://www.gravatar.com/avatar/98a2e53c0794848fe2b91451ff46c150?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 10:56:49"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 128,
- "target": 123,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987479",
- "username": "Rosina70",
- "fullName": "Rosina70",
- "avatarUrl": "https://www.gravatar.com/avatar/03661309d28016f48fde01e40b661d38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 12:56:13"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 127,
- "target": 134,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707492",
- "username": "Yousuf_104",
- "fullName": "Yousuf_104",
- "avatarUrl": "https://www.gravatar.com/avatar/52d618e862dd6e76c70ef87fe4cc3628?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 13:15:49"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 127,
- "target": 111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815610",
- "username": "mnw586",
- "fullName": "mnw586",
- "avatarUrl": "https://www.gravatar.com/avatar/690011ed4104436727a2a5c7c64962fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 15:46:57"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 127,
- "target": 135,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560600",
- "username": "Vraj142",
- "fullName": "Vraj142",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560600/medium/4b643d6b30d2a8a6161cf5c52c46fc20.png",
- "joined": "2021-01-03 06:55:41"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 127,
- "target": 245,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 40
- },
- {
- "user": {
- "id": "15000525",
- "username": "foteskuIgor",
- "fullName": "Игорь Фотеску (foteskuIgor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000525/medium/a83b7d1987932ba37c04f8afa3a1a6c0.png",
- "joined": "2021-11-12 10:26:21"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 126,
- "target": 131,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 25,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12381015",
- "username": "shuuji3",
- "fullName": "TAKAHASHI Shuuji (shuuji3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12381015/medium/35e3557fd61d85f9a5b84545d9e3feb4.png",
- "joined": "2021-05-01 21:41:43"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 125,
- "target": 310,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 119
- },
- {
- "user": {
- "id": "14593580",
- "username": "murilooon",
- "fullName": "Murilo Olvieira (murilooon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593580/medium/31bad597428d9b341f63226cced204ac.png",
- "joined": "2021-01-26 06:29:41"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 125,
- "target": 133,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 83
- },
- {
- "user": {
- "id": "13923113",
- "username": "css",
- "fullName": "css",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13923113/medium/78cc90f7fd2e2aa6ee282405ceb9fd1d.jpg",
- "joined": "2020-11-18 11:28:17"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 125,
- "target": 120,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "14211504",
- "username": "ainura",
- "fullName": "ainura",
- "avatarUrl": "https://www.gravatar.com/avatar/84cd7cd7740fa60255d7848426e59860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-17 02:39:11"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 124,
- "target": 107,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13153052",
- "username": "Ando_Translations",
- "fullName": "Ando Translations (Ando_Translations)",
- "avatarUrl": "https://www.gravatar.com/avatar/84bdc76b08dbe3e86bed9c89fa6a3dc1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-04 03:14:33"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 124,
- "target": 134,
- "approved": 133,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 124
- },
- {
- "user": {
- "id": "13817659",
- "username": "Xam089951",
- "fullName": "Xam089951",
- "avatarUrl": "https://www.gravatar.com/avatar/51a567d03e673417de7b5d347bf65156?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 18:14:43"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 124,
- "target": 117,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14626816",
- "username": "XxMarlaxXo",
- "fullName": "Marla (XxMarlaxXo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14626816/medium/4aaf12d08638ef2fc77b3dfa415e0085.jpeg",
- "joined": "2021-02-16 09:49:59"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 124,
- "target": 113,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 2
- },
- {
- "user": {
- "id": "14784406",
- "username": "garbirel",
- "fullName": "garbirel",
- "avatarUrl": "https://www.gravatar.com/avatar/e72968b533b18b4a8a00dfe052493636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 08:34:40"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 123,
- "target": 178,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 64
- },
- {
- "user": {
- "id": "14634192",
- "username": "longli20192015",
- "fullName": "Long Li (longli20192015)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634192/medium/8b947f8c0385ed0ebbed3f86905b9d04.jpg",
- "joined": "2021-02-21 07:08:29"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 123,
- "target": 205,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "14027332",
- "username": "m4z31995",
- "fullName": "Mazakoo M4Z3 (m4z31995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027332/medium/cd801d9c064287f739384640ea785026.jpeg",
- "joined": "2019-10-29 10:19:15"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 122,
- "target": 115,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648126",
- "username": "vittoria.f",
- "fullName": "vittoria.f",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648126/medium/7a5e23a63ce4d36422d0adb108c16ea0.png",
- "joined": "2021-03-03 11:33:56"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 122,
- "target": 110,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14180423",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/890cf2f6a665ef5a84f30963fe5f32b0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-30 12:03:11"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 122,
- "target": 266,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706566",
- "username": "amagiddmxh",
- "fullName": "Amagi DDmxh (amagiddmxh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706566/medium/8e4b6fd81dc8bcf21955428c0277ec3c.jpg",
- "joined": "2021-04-10 18:31:38"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 122,
- "target": 216,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 54
- },
- {
- "user": {
- "id": "14959167",
- "username": "jamiesheng",
- "fullName": "jamiesheng",
- "avatarUrl": "https://www.gravatar.com/avatar/1fdca71f9bba62eca9a6ab38ed87ac19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 23:28:04"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 121,
- "target": 203,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876952",
- "username": "brayosimar",
- "fullName": "Brayan GDesigner (brayosimar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876952/medium/2643e165c521aa4e9df368880d3f9e74.jpeg",
- "joined": "2021-08-12 10:12:25"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 121,
- "target": 104,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546994",
- "username": "axency",
- "fullName": "Axency (axency)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546994/medium/3ebf66fb6f311d2e8188c54663f43c20.jpeg",
- "joined": "2020-12-22 23:27:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 120,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 2,
- "winning": 29
- },
- {
- "user": {
- "id": "14733942",
- "username": "amrux",
- "fullName": "Amr Ali (amrux)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733942/medium/44d5aa6a83c77e1c0881a272e70f4e22.jpeg",
- "joined": "2021-05-01 06:03:41"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 120,
- "target": 101,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14286930",
- "username": "KenzYfan37",
- "fullName": "Ксения Шаборкина (KenzYfan37)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14286930/medium/69a94872fdbcee3ec39ffa3930445630.jpeg",
- "joined": "2020-06-02 08:44:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 120,
- "target": 120,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14532198",
- "username": "jebahar",
- "fullName": "Jebahar Deva Dhason (jebahar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14532198/medium/f5e5643fbfd6007e0aa4cdfef932873f.png",
- "joined": "2020-12-11 12:33:10"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 120,
- "target": 255,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803342",
- "username": "harikhan036",
- "fullName": "hari Khan (harikhan036)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803342/medium/8f68d2b204c5760635466eea56c14112.png",
- "joined": "2021-06-17 08:14:58"
- },
- "languages": [
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 119,
- "target": 148,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625200",
- "username": "preh",
- "fullName": "preh",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625200/medium/019e9dcec2f0c3c2fd90ff0316e3f4f0.jpg",
- "joined": "2021-02-15 07:19:20"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 119,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14640122",
- "username": "m1947",
- "fullName": "m1947",
- "avatarUrl": "https://www.gravatar.com/avatar/8740da8d815349b67d0d681cb923ef0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 13:27:09"
- },
- "languages": [
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 119,
- "target": 141,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621154",
- "username": "farnfarn",
- "fullName": "Francisco Bacete Menchón (farnfarn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621154/medium/a58730d4f97aa60c31331e2a2de6aa35.jpeg",
- "joined": "2021-02-12 07:27:21"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 119,
- "target": 134,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14640966",
- "username": "oranz21",
- "fullName": "oranz21",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640966/medium/f45e38ea4908515d8dbd5c71e51d85b0.jpeg",
- "joined": "2021-02-25 01:03:14"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 119,
- "target": 139,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711482",
- "username": "rfcheung",
- "fullName": "Ring Fai Cheung (rfcheung)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711482/medium/541ada9b93f309d11b396afb79efbce5.jpeg",
- "joined": "2021-04-14 08:25:11"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 118,
- "target": 134,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777028",
- "username": "jieunrim",
- "fullName": "Jieun Rim (jieunrim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777028/medium/1fe90e42c9af650a9cf108d584403209.png",
- "joined": "2021-05-28 19:52:24"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 118,
- "target": 82,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690200",
- "username": "jesam10",
- "fullName": "Jesus Alejandro Moreno (jesam10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690200/medium/53da32f5d75e90125534fe2710884032.jpeg",
- "joined": "2021-03-30 12:39:03"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 118,
- "target": 114,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 78
- },
- {
- "user": {
- "id": "13962885",
- "username": "wimel85",
- "fullName": "wimel (wimel85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962885/medium/5f59b01867e660913ad275f303018feb.png",
- "joined": "2019-08-26 08:25:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 118,
- "target": 127,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 55
- },
- {
- "user": {
- "id": "14647882",
- "username": "Kugeki",
- "fullName": "Kugeki",
- "avatarUrl": "https://www.gravatar.com/avatar/ac517f392a990052115949ce480a7e58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 10:05:04"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 117,
- "target": 81,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14591640",
- "username": "malewolf",
- "fullName": "Wolf Shadow (malewolf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591640/medium/c801a5424c7eae77cb79685244ee9dee.jpeg",
- "joined": "2021-01-24 02:38:16"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 117,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997221",
- "username": "DD369",
- "fullName": "DD369",
- "avatarUrl": "https://www.gravatar.com/avatar/b1b0eba0f0c27e5adb35bf066143a30f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 02:40:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 117,
- "target": 113,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667740",
- "username": "Tanuxen",
- "fullName": "Tanuxen",
- "avatarUrl": "https://www.gravatar.com/avatar/d5aa9a3b85f1bf490626bf8b43db6583?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 14:42:30"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 117,
- "target": 105,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 35
- },
- {
- "user": {
- "id": "14880056",
- "username": "hiorst8",
- "fullName": "Hi St8 (hiorst8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880056/medium/97a843bea0c1b053719867e5e17584aa.png",
- "joined": "2021-08-14 12:55:18"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 116,
- "target": 170,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14406046",
- "username": "pidproc",
- "fullName": "Process Admin (pidproc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14406046/medium/f451ca8dc97fd25ace517f11543ca10e.jpg",
- "joined": "2020-09-07 04:22:45"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 116,
- "target": 202,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901100",
- "username": "simakpele65",
- "fullName": "Simon Akpele (simakpele65)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901100/medium/c3354f71aa0f27ef6f54a83b0ea8968d.png",
- "joined": "2021-08-29 21:20:00"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 116,
- "target": 120,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760746",
- "username": "centaurian",
- "fullName": "centaurian",
- "avatarUrl": "https://www.gravatar.com/avatar/1f48400ab68be9e2848fb312c9dc6230?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 08:15:19"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 116,
- "target": 152,
- "approved": 0,
- "voted": 27,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561936",
- "username": "althamir1",
- "fullName": "althamir1",
- "avatarUrl": "https://www.gravatar.com/avatar/2e86827e2244fe534906ea0b08a49a58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 05:31:52"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 116,
- "target": 126,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 45
- },
- {
- "user": {
- "id": "14812942",
- "username": "humbertoantsc",
- "fullName": "Humberto SC (humbertoantsc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812942/medium/498f62a5f1b429232e9dfd7ab697523f.jpeg",
- "joined": "2021-06-23 16:00:17"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 116,
- "target": 109,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 75
- },
- {
- "user": {
- "id": "14779146",
- "username": "Ewen190402",
- "fullName": "Ewen (Ewen190402)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779146/medium/9b4d550ef47412c053101f91995038c5.png",
- "joined": "2021-05-30 18:07:26"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 116,
- "target": 119,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562222",
- "username": "Vinterlich",
- "fullName": "Sebastian Voina-Winter (Vinterlich)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562222/medium/ee18e8630ea2f2287f2dcb7d0d1419ea.jpeg",
- "joined": "2021-01-04 08:39:39"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 115,
- "target": 117,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14612900",
- "username": "seunggin.yu",
- "fullName": "seungjin yu (seunggin.yu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612900/medium/7fc99f80a3da9fd033cb6eecd02a3e62.jpeg",
- "joined": "2021-02-07 00:19:11"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 115,
- "target": 71,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712250",
- "username": "XiG",
- "fullName": "Steve Hu (XiG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712250/medium/cf8f4951e71da77514310bcd86b2a825.jpeg",
- "joined": "2021-04-14 22:15:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 115,
- "target": 165,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 78
- },
- {
- "user": {
- "id": "14816088",
- "username": "allbuy",
- "fullName": "allbuy",
- "avatarUrl": "https://www.gravatar.com/avatar/2f66e10eb6ac8e4b6b83ccbf1864a9a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 03:32:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 115,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "15000681",
- "username": "BXS",
- "fullName": "BXS",
- "avatarUrl": "https://www.gravatar.com/avatar/7d9b2aad645e110ad96a043cbdef7a18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 12:23:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 115,
- "target": 142,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 50
- },
- {
- "user": {
- "id": "14632530",
- "username": "qqcdf",
- "fullName": "qqcdf",
- "avatarUrl": "https://www.gravatar.com/avatar/325ed382b117de8cd456207baf839b88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 00:55:13"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 115,
- "target": 182,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14635576",
- "username": "FelipeBrotto",
- "fullName": "FelipeBrotto",
- "avatarUrl": "https://www.gravatar.com/avatar/663a3dedebba1ec04836b83e9d573b79?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 03:55:36"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 115,
- "target": 127,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 32
- },
- {
- "user": {
- "id": "14762626",
- "username": "mykolasalata7",
- "fullName": "Mykola Salata (mykolasalata7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762626/medium/ef496f3afd20230d8775e3cfb6175c14.jpeg",
- "joined": "2021-05-18 11:56:05"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 114,
- "target": 94,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14775492",
- "username": "riesterkilian",
- "fullName": "Kilian Riester (riesterkilian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775492/medium/502eb2a57d2062455fd7d5e170d9e14e.png",
- "joined": "2021-05-27 14:54:22"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 114,
- "target": 120,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965189",
- "username": "aliatiia",
- "fullName": "Ali Atiia (aliatiia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13965189/medium/5ddc7bef116227679263ca777ac28f38.png",
- "joined": "2019-08-28 11:05:40"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 114,
- "target": 96,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 21
- },
- {
- "user": {
- "id": "14780840",
- "username": "amy.yingzhao",
- "fullName": "Amy (amy.yingzhao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780840/medium/0aba5691262a6bf6a8a56d9a391c6b9f.jpeg",
- "joined": "2021-05-31 23:52:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 114,
- "target": 197,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 88
- },
- {
- "user": {
- "id": "14958563",
- "username": "climu",
- "fullName": "climu",
- "avatarUrl": "https://www.gravatar.com/avatar/ffde06457147f043f212b5575759ad5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 11:57:14"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 113,
- "target": 128,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568946",
- "username": "RockyJ",
- "fullName": "Rocky (RockyJ)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568946/medium/c0d702a99ef9bdd2a9498d25255e2efd.jpeg",
- "joined": "2021-01-11 11:54:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 113,
- "target": 104,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 33
- },
- {
- "user": {
- "id": "14712650",
- "username": "vahidkm86",
- "fullName": "vahid kazemian moghaddam (vahidkm86)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712650/medium/fc40402b0c476b09b1a38fd944f53dff.jpeg",
- "joined": "2021-04-15 05:34:46"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 113,
- "target": 133,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732520",
- "username": "matteo.boffo",
- "fullName": "Matteo Boffo (matteo.boffo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732520/medium/5c3707bf4dd91f58d154eae8cab347dd.png",
- "joined": "2021-04-30 05:32:30"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 112,
- "target": 97,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14533144",
- "username": "modhex",
- "fullName": "Barış Batuhan (modhex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14533144/medium/c83b31a984c6b2f5a80aa7a5ab027e6b.jpeg",
- "joined": "2021-06-24 14:12:11"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 112,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 48
- },
- {
- "user": {
- "id": "14606376",
- "username": "l3gacyb3ta",
- "fullName": "l3gacyb3ta",
- "avatarUrl": "https://www.gravatar.com/avatar/c6d08d600ee9ef4a11d4820ea3df8473?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-02 15:53:49"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 112,
- "target": 128,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14158555",
- "username": "Tested",
- "fullName": "Raffy (Tested)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158555/medium/b86cc3992311f7cb381f5a20d087929d.png",
- "joined": "2020-10-22 15:55:22"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 112,
- "target": 123,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14440850",
- "username": "arrobaxbit",
- "fullName": "arrobaxbit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14440850/medium/55b28941c57977ac6c45498770abb6ed.jpg",
- "joined": "2021-01-15 17:35:27"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 111,
- "target": 126,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14564316",
- "username": "stevenvanroye",
- "fullName": "stevenvanroye",
- "avatarUrl": "https://www.gravatar.com/avatar/a33de30cb8f40f80ac0b193d184bf4de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-05 17:26:50"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 111,
- "target": 114,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13399779",
- "username": "billchenchina",
- "fullName": "Billchenchina (billchenchina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13399779/medium/58bcd08752d9c90aadf0d369f9272cc9.jpeg",
- "joined": "2021-03-02 13:26:15"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 111,
- "target": 189,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 62
- },
- {
- "user": {
- "id": "14749926",
- "username": "gabekings",
- "fullName": "gabekings",
- "avatarUrl": "https://www.gravatar.com/avatar/9923db47c8c5e9ebc0c0d11edc071abf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 17:38:52"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 110,
- "target": 119,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 10,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790502",
- "username": "leo-cuellar",
- "fullName": "Leo Cuéllar (leo-cuellar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790502/medium/3e58c2b7fb2644f6fa95eb909909f256.jpeg",
- "joined": "2021-06-08 01:16:25"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 110,
- "target": 121,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14637260",
- "username": "sulivancc",
- "fullName": "sulivan cc (sulivancc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637260/medium/cc43ecd6859616ae7b8bd0a5525582ac.jpg",
- "joined": "2021-02-23 01:39:58"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 110,
- "target": 185,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 32,
- "negativeVotes": 0,
- "winning": 51
- },
- {
- "user": {
- "id": "14033224",
- "username": "rudy.hirusta",
- "fullName": "Rudy Hirusta (rudy.hirusta)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033224/medium/2b2622a81698524fb73ccc6afdd36bb0.jpeg",
- "joined": "2019-11-09 04:56:16"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 110,
- "target": 110,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14830280",
- "username": "songnchant",
- "fullName": "Changdles K (songnchant)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830280/medium/e544df6876b73ceedb0049774e96c599.png",
- "joined": "2021-07-07 04:02:31"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 110,
- "target": 91,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706680",
- "username": "Eliasdf",
- "fullName": "Eliasdf",
- "avatarUrl": "https://www.gravatar.com/avatar/07d060decf321695437230d032a0ebcf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 21:58:24"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 110,
- "target": 121,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "13200563",
- "username": "umatos99",
- "fullName": "Ulisses Silva (umatos99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13200563/medium/7595c22d7ec598c605890934a944f824.jpg",
- "joined": "2020-12-28 06:51:33"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 109,
- "target": 115,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 35
- },
- {
- "user": {
- "id": "14877588",
- "username": "haddadhesam",
- "fullName": "Hesam Haddad (haddadhesam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877588/medium/fd55575b0f149dd88deb161c48e961bf.jpeg",
- "joined": "2021-08-12 17:32:27"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 109,
- "target": 138,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778302",
- "username": "TheBrazilianDude",
- "fullName": "TheBrazilianDude",
- "avatarUrl": "https://www.gravatar.com/avatar/85fb868fc9ac7e59a500436000261b19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 01:48:57"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 109,
- "target": 93,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983857",
- "username": "shimonchick",
- "fullName": "Mihail Kirov (shimonchick)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983857/medium/212e2f1bde341380eba33d9562c9695b.jpeg",
- "joined": "2021-10-31 07:43:22"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 108,
- "target": 131,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558890",
- "username": "muhammedfadlarslan",
- "fullName": "Muhammed Fadıl Arslan (muhammedfadlarslan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558890/medium/381ff304f12355d66c226b2be8a7c63d.jpeg",
- "joined": "2021-01-05 19:25:08"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 108,
- "target": 79,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14706598",
- "username": "uricata",
- "fullName": "uricata",
- "avatarUrl": "https://www.gravatar.com/avatar/c89771e0a5a03ba90fe8c3cbf7c5a798?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 19:25:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 108,
- "target": 102,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14596616",
- "username": "cloudlite",
- "fullName": "Yucheng Liu (cloudlite)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14596616/medium/3c67d9256c565425b6171b1bb6cb5231.png",
- "joined": "2021-01-27 07:56:39"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 108,
- "target": 179,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 65
- },
- {
- "user": {
- "id": "14568310",
- "username": "robert.sokic",
- "fullName": "Robert Sokic (robert.sokic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568310/medium/a49b0489bfcb2c7698c19e57fc1f0621.jpg",
- "joined": "2021-01-08 12:20:44"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 108,
- "target": 92,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "15033779",
- "username": "victorsvn",
- "fullName": "Victor SVN (victorsvn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033779/medium/528a08c0e6d0621aa6ac770be78d516b.png",
- "joined": "2021-11-28 05:21:18"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 108,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665326",
- "username": "Voidentente",
- "fullName": "Voidentente",
- "avatarUrl": "https://www.gravatar.com/avatar/33a14fe0fd1b2d7f1da11e533db88d0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:33:22"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 108,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 18,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "13959731",
- "username": "akira-19",
- "fullName": "Akira (akira-19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959731/medium/1f9a8ac6d0eb9900e42157a952c5dca6.png",
- "joined": "2019-08-22 18:43:46"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 108,
- "target": 328,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 63
- },
- {
- "user": {
- "id": "14709308",
- "username": "andortree",
- "fullName": "Ziang Chen (andortree)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709308/medium/0069b2309f3e553d592492b2980c4fc2.jpg",
- "joined": "2021-04-12 22:05:06"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 107,
- "target": 224,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14569100",
- "username": "Honestyisall",
- "fullName": "Honestyisall",
- "avatarUrl": "https://www.gravatar.com/avatar/5242aa65afb9ad7e4abc8fb91c665ce9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 03:52:36"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 107,
- "target": 94,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 8,
- "negativeVotes": 1,
- "winning": 36
- },
- {
- "user": {
- "id": "14922727",
- "username": "mookmook",
- "fullName": "Pattaraporn Tripiyaratana (mookmook)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922727/medium/bb4344fb73b75a86661d7acaf9f8d1f3.jpeg",
- "joined": "2021-09-14 16:38:03"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 107,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572078",
- "username": "sarbaev3377",
- "fullName": "Дмитрий марганца (sarbaev3377)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572078/medium/e1357c87441140fe32c7e02441a03e1d.jpeg",
- "joined": "2021-01-11 05:17:40"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 107,
- "target": 95,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14039115",
- "username": "thezacjordan",
- "fullName": "Zach Jordan (thezacjordan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14039115/medium/91ad930a2c55427339dda8c030e86eff.jpeg",
- "joined": "2019-11-19 23:27:51"
- },
- "languages": [
- {
- "id": "eo",
- "name": "Esperanto"
- }
- ],
- "translated": 106,
- "target": 95,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788680",
- "username": "lucasmelo.dev",
- "fullName": "lucasmelo.dev",
- "avatarUrl": "https://www.gravatar.com/avatar/78f6cae002c440a35994411a1bb3ec52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 15:57:34"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 106,
- "target": 98,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949581",
- "username": "lilianka.hutsulyak",
- "fullName": "Liliana Hutsulyak (lilianka.hutsulyak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949581/medium/0289a77513413548774e65d9fcb02b41.png",
- "joined": "2021-10-04 12:28:21"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 106,
- "target": 87,
- "approved": 0,
- "voted": 86,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028971",
- "username": "2-zoo1",
- "fullName": "Juwon Lee (2-zoo1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028971/medium/6faadcb6b16f1435e1fc51ae5413192d.jpeg",
- "joined": "2021-11-24 07:48:54"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 106,
- "target": 78,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738796",
- "username": "fuweineng",
- "fullName": "V Fu (fuweineng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738796/medium/20a0e28d6dd706e253393cf8940af9e5.png",
- "joined": "2021-05-05 03:58:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 105,
- "target": 175,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14963303",
- "username": "daadamati",
- "fullName": "daadamati",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963303/medium/45c58b93a72ee93cd47f1e9a70639e81.jpg",
- "joined": "2021-10-15 04:14:57"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 105,
- "target": 207,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732326",
- "username": "yoav.shacham",
- "fullName": "יואב שחם (yoav.shacham)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732326/medium/66ae20d2b4f80439a484c8583c04579a.jpeg",
- "joined": "2021-04-30 01:42:14"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 104,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797974",
- "username": "salehtavakoli",
- "fullName": "salehtavakoli",
- "avatarUrl": "https://www.gravatar.com/avatar/beabe6ead932a8557c4b62793e499e4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-13 12:12:25"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 104,
- "target": 129,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949313",
- "username": "sofiacherkaska",
- "fullName": "Софія Черкаська (sofiacherkaska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949313/medium/ac181599260fbf268df6ce52dd8af8ab.jpg",
- "joined": "2021-10-05 14:57:43"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 104,
- "target": 99,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14586142",
- "username": "v3rd3",
- "fullName": "v3rd3",
- "avatarUrl": "https://www.gravatar.com/avatar/98a39eee786541ec7261950f5f022894?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-20 10:06:51"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 104,
- "target": 108,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 20
- },
- {
- "user": {
- "id": "13935389",
- "username": "mzfshark",
- "fullName": "Mauricio Shark (mzfshark)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13935389/medium/02b9a2c2cace48461830694df7bece6b.jpg",
- "joined": "2021-03-10 06:22:49"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 104,
- "target": 86,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14830096",
- "username": "LizYang",
- "fullName": "LizYang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830096/medium/1d43d1a252a80e0dbe6f6e6d15f1b46c.jpeg",
- "joined": "2021-07-07 01:22:52"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 104,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 53
- },
- {
- "user": {
- "id": "14706332",
- "username": "AlexD10S",
- "fullName": "alexd10s (AlexD10S)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706332/medium/bcc3c3226163167446b575fe615e96d2.jpeg",
- "joined": "2021-04-10 14:08:10"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 103,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548590",
- "username": "psc2321",
- "fullName": "Seongchoon Park (psc2321)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548590/medium/f5528d7f057dd720d8c7498d0499b712.jpeg",
- "joined": "2020-12-24 05:06:18"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 103,
- "target": 58,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613126",
- "username": "ChrisKonan",
- "fullName": "ChrisKonan",
- "avatarUrl": "https://www.gravatar.com/avatar/91ce1c3e28b23fe43ca6e81529afe338?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 05:07:50"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 103,
- "target": 98,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550974",
- "username": "Arlind2000",
- "fullName": "Arlind2000",
- "avatarUrl": "https://www.gravatar.com/avatar/4ac57bab98686af7080edbe4b5208cef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 08:17:28"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 103,
- "target": 102,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 3,
- "winning": 56
- },
- {
- "user": {
- "id": "14638898",
- "username": "lizhenwei12",
- "fullName": "李可以 (lizhenwei12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638898/medium/b79920acf354f5fe4fbafad96e1360d4.jpg",
- "joined": "2021-02-23 22:51:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 103,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670986",
- "username": "luckyliu",
- "fullName": "luckyliu",
- "avatarUrl": "https://www.gravatar.com/avatar/62f88175b2a639efb2e167c1beb5fe50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 22:59:52"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 103,
- "target": 181,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 40
- },
- {
- "user": {
- "id": "14643276",
- "username": "ali52da",
- "fullName": "ali52da",
- "avatarUrl": "https://www.gravatar.com/avatar/cb0f92e6b9accb79407c58b320cad6fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-26 05:47:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 102,
- "target": 186,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 75
- },
- {
- "user": {
- "id": "14047252",
- "username": "saksmm",
- "fullName": "saksmm",
- "avatarUrl": "https://www.gravatar.com/avatar/7bbd67e605d8c4f79153ac6d5a7aa740?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-04 08:18:28"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 102,
- "target": 174,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959445",
- "username": "kalloc",
- "fullName": "kalloc",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959445/medium/e238337a29b4a7653ec4998a15677820.jpeg",
- "joined": "2019-08-22 12:23:58"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 102,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 45
- },
- {
- "user": {
- "id": "14040513",
- "username": "emmafritzberg",
- "fullName": "Emma Fritzberg (emmafritzberg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14040513/medium/074733460ae8d667fd66deb589df2991.jpeg",
- "joined": "2019-11-22 13:40:30"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 102,
- "target": 103,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 67
- },
- {
- "user": {
- "id": "13623483",
- "username": "DraxGaming",
- "fullName": "DraxGaming",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13623483/medium/27537657d62787337cf275fbe3a8a2f2.png",
- "joined": "2020-06-01 05:58:27"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 102,
- "target": 106,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652060",
- "username": "JazminVidal",
- "fullName": "jaz.min (JazminVidal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652060/medium/a4f3c9974a51710ea11e87a24ac2df27.png",
- "joined": "2021-03-03 17:31:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 101,
- "target": 78,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990849",
- "username": "shanehung",
- "fullName": "Shane Hung (shanehung)",
- "avatarUrl": "https://www.gravatar.com/avatar/5211f9577580f012f260838835943be6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 02:41:51"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 101,
- "target": 154,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755848",
- "username": "patryksko",
- "fullName": "Patryk Skowroński (patryksko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755848/medium/ede17321578c50cfee8060e1932673c6.jpeg",
- "joined": "2021-05-14 06:50:00"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 101,
- "target": 65,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 24
- },
- {
- "user": {
- "id": "14975403",
- "username": "codeboi",
- "fullName": "codeboi",
- "avatarUrl": "https://www.gravatar.com/avatar/2f928ec5e099bab263d701846a8927d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 06:49:59"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 100,
- "target": 169,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14332116",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c8613501ad108fc813172cd1e428ab3b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-05 19:43:21"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 100,
- "target": 97,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14655726",
- "username": "tabark912aziz0",
- "fullName": "tabark aziz (tabark912aziz0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655726/medium/b78537999bae40535d439f644a7cdbeb.jpeg",
- "joined": "2021-03-06 06:40:02"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 100,
- "target": 78,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13854995",
- "username": "muten85",
- "fullName": "muten85",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13854995/medium/201d1d1193a904192e9d8a18d70d0556.png",
- "joined": "2021-06-04 08:08:36"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 100,
- "target": 115,
- "approved": 0,
- "voted": 56,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14221550",
- "username": "bhramars",
- "fullName": "bhramars",
- "avatarUrl": "https://www.gravatar.com/avatar/4019a0e30ec069a1aedd818c665c0b84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-23 00:15:06"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 100,
- "target": 146,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14554066",
- "username": "hoguzturk",
- "fullName": "Huseyin Uguzturk (hoguzturk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554066/medium/c8d5fc3d77552cc8d81a1c013e851f3e.jpg",
- "joined": "2020-12-28 18:16:11"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 100,
- "target": 85,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 11
- },
- {
- "user": {
- "id": "14992351",
- "username": "viljarkahari",
- "fullName": "Viljar Kähari (viljarkahari)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992351/medium/6963ec089ec7a0d1f698c0ceefad6fb6.jpeg",
- "joined": "2021-11-06 07:13:01"
- },
- "languages": [
- {
- "id": "et",
- "name": "Estonian"
- }
- ],
- "translated": 99,
- "target": 80,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651796",
- "username": "iveseenawayout",
- "fullName": "Donatella Delpiano (iveseenawayout)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14651796/medium/8ad9e4453e2f50fb5c230cc227f4da1a.jpeg",
- "joined": "2021-03-03 13:22:08"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 99,
- "target": 105,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14991161",
- "username": "icarusdavinci",
- "fullName": "Icarus Da Vinci (icarusdavinci)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991161/medium/8fdd324d960a172803c5d6f6ee179e84.png",
- "joined": "2021-11-05 07:43:06"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 98,
- "target": 74,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14567610",
- "username": "Jaryn",
- "fullName": "Jaryn",
- "avatarUrl": "https://www.gravatar.com/avatar/65157edcd1e226e4108a5038ba4a7bf0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 02:09:08"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 98,
- "target": 135,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 1,
- "winning": 33
- },
- {
- "user": {
- "id": "14951487",
- "username": "mariuszpelka",
- "fullName": "Mariusz Pełka (mariuszpelka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951487/medium/4cb6c175fe74a75b8af3d7f92a8ccf4e.jpg",
- "joined": "2021-10-05 16:39:39"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 97,
- "target": 83,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946101",
- "username": "orioncafune_",
- "fullName": "fede (orioncafune_)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946101/medium/a769eea4ec46c048adcddef91897b0e6.png",
- "joined": "2021-11-19 12:03:40"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 97,
- "target": 99,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861994",
- "username": "DougPimentel",
- "fullName": "Douglas Pimentel (DougPimentel)",
- "avatarUrl": "https://www.gravatar.com/avatar/2bb137811df634f2bebf5519f13d0313?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 11:19:59"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 97,
- "target": 116,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14258116",
- "username": "Jacerros",
- "fullName": "Jáchym Plánička (Jacerros)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14258116/medium/28a813be37c3a5cf2518e9c406952c57.jpg",
- "joined": "2021-01-06 01:42:28"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 96,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 8,
- "winning": 0
- },
- {
- "user": {
- "id": "14587728",
- "username": "Bennyhierry",
- "fullName": "Bennyhierry",
- "avatarUrl": "https://www.gravatar.com/avatar/b04e35cf9d8c0ff020d2bd7e9b61ae5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 09:50:47"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 96,
- "target": 126,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815080",
- "username": "0904508678duy",
- "fullName": "Nguyen Duy (0904508678duy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815080/medium/d175930e28a0382f4ad6127ee47c961a.png",
- "joined": "2021-06-25 08:01:11"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "bg",
- "name": "Bulgarian"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 96,
- "target": 142,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696806",
- "username": "kumbulali",
- "fullName": "Ali Kumbul (kumbulali)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696806/medium/39112799e3eaa803fa0605900283a166.jpeg",
- "joined": "2021-04-04 06:15:04"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 96,
- "target": 88,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 85
- },
- {
- "user": {
- "id": "14340230",
- "username": "sivasakthivel.ss9",
- "fullName": "Sivasakthivel (sivasakthivel.ss9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14340230/medium/86f1bb9fd8307475f467bec86d3ed22c.jpg",
- "joined": "2020-07-12 12:05:27"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 95,
- "target": 107,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "19793",
- "username": "cadu",
- "fullName": "Carlos Pires (cadu)",
- "avatarUrl": "https://www.gravatar.com/avatar/5dab29d0374c56ade27013e06d8e5db3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 06:04:25"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 95,
- "target": 85,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14230886",
- "username": "moul",
- "fullName": "Manfred Touron (moul)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230886/medium/7848e69a7fa9dd1f94f0509d56498b07.png",
- "joined": "2021-11-25 15:28:37"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 95,
- "target": 111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14313472",
- "username": "ntotao",
- "fullName": "ntotao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14313472/medium/168d8b10fa9a4eb88fa80f88a355138c.png",
- "joined": "2021-03-23 11:48:42"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 95,
- "target": 68,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "12960382",
- "username": "SiderealArt",
- "fullName": "曹恩逢 (SiderealArt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12960382/medium/efd52e2c41be32bfd52569ac15d228b7.jpg",
- "joined": "2021-03-09 21:11:48"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 95,
- "target": 168,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14737234",
- "username": "yuichiroaokidoctorqube",
- "fullName": "Masako H (yuichiroaokidoctorqube)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737234/medium/b061a4e877a4876137ed20ef7d18d172.png",
- "joined": "2021-05-04 01:02:38"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 94,
- "target": 262,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 18,
- "negativeVotes": 1,
- "winning": 90
- },
- {
- "user": {
- "id": "14933273",
- "username": "MelisaSonmez",
- "fullName": "MelisaSonmez",
- "avatarUrl": "https://www.gravatar.com/avatar/57753792ad4c1879603e1c48ee889e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 09:04:20"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 94,
- "target": 87,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587250",
- "username": "MuKaTa-2020",
- "fullName": "MuKaTa-2020",
- "avatarUrl": "https://www.gravatar.com/avatar/1ea29c6192d8149ebb25ab99e73b01ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 03:32:41"
- },
- "languages": [
- {
- "id": "ky",
- "name": "Kyrgyz"
- }
- ],
- "translated": 94,
- "target": 110,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748598",
- "username": "jordyureta1",
- "fullName": "jordyureta1",
- "avatarUrl": "https://www.gravatar.com/avatar/c7e41716669e407cbeb0d99dedbe74f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 02:19:54"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 93,
- "target": 102,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14810374",
- "username": "Typinrov",
- "fullName": "Typinrov",
- "avatarUrl": "https://www.gravatar.com/avatar/a6abee81a045c3b64a550f0ca4b3f344?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 21:06:51"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 93,
- "target": 314,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14779688",
- "username": "michaelmeli",
- "fullName": "michaelmeli",
- "avatarUrl": "https://www.gravatar.com/avatar/359dabbe068e2581c31d896b17648203?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 05:15:24"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 93,
- "target": 74,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725288",
- "username": "HypeRush",
- "fullName": "yağız berk vural (HypeRush)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725288/medium/94cb2ca98cad3a255cfe800f33d77761.jpeg",
- "joined": "2021-04-24 17:16:51"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 93,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "14702302",
- "username": "marcdewilde88",
- "fullName": "Marc de Wilde (marcdewilde88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702302/medium/50d692fe707bc1b5b5129a791ea182b5.jpeg",
- "joined": "2021-04-07 16:10:39"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 93,
- "target": 93,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656338",
- "username": "transgresor_metal",
- "fullName": "Jonatan Luis Villa Röel (transgresor_metal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656338/medium/994846d1f939b5a9efdafa335adcc091.jpeg",
- "joined": "2021-03-06 16:05:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 92,
- "target": 98,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993957",
- "username": "julijuli_69",
- "fullName": "julijuli_69",
- "avatarUrl": "https://www.gravatar.com/avatar/3a56d24884e4c516c849c108db44fd35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-07 13:45:45"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 92,
- "target": 82,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028617",
- "username": "gamazonka",
- "fullName": "gamazonka",
- "avatarUrl": "https://www.gravatar.com/avatar/41f8df6d28ce530d9cc0ac11408acdda?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-31 14:35:06"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 92,
- "target": 80,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582822",
- "username": "rbrunomarques",
- "fullName": "Bruno Marques (rbrunomarques)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582822/medium/37460294a3c81cf5118924de20c06af2.jpeg",
- "joined": "2021-01-18 11:42:48"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 92,
- "target": 96,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965895",
- "username": "Dynam1c2",
- "fullName": "Dynam1c2",
- "avatarUrl": "https://www.gravatar.com/avatar/f5ad51a15e4d52f83fa91d0259e70d72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-17 12:04:45"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 92,
- "target": 92,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559932",
- "username": "emanu.ti",
- "fullName": "Emmanuel de Carvalho Garcia (emanu.ti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559932/medium/b031ab210c0b9edc01dcea8f4825f8ad.png",
- "joined": "2021-01-02 16:44:58"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 92,
- "target": 101,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14183877",
- "username": "ThanosJi",
- "fullName": "ThanosJi",
- "avatarUrl": "https://www.gravatar.com/avatar/a39c1050df0d567090a82fe41674a1cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-01 08:35:14"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 92,
- "target": 144,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987203",
- "username": "LiuShugao",
- "fullName": "LiuShugao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987203/medium/65e8ba04a4c177bf9656b47c627ba205.jpeg",
- "joined": "2021-11-02 10:06:37"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 91,
- "target": 174,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961175",
- "username": "m3tapha",
- "fullName": "m3tapha",
- "avatarUrl": "https://www.gravatar.com/avatar/d3d11c09d9f310b39a338c6da7163c53?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 10:27:27"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 91,
- "target": 83,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14128555",
- "username": "ed.eyon",
- "fullName": "Edan-David Eyon (ed.eyon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14128555/medium/ad9a529567c40b155006d2beff4593fb.jpg",
- "joined": "2020-02-22 03:04:41"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 90,
- "target": 75,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974005",
- "username": "ovg1953",
- "fullName": "Orson Galvão (ovg1953)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974005/medium/e21cf3c4cdf45b9bcdcf7d5451a647cf.jpeg",
- "joined": "2021-10-23 20:34:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 90,
- "target": 99,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14590594",
- "username": "choofe.bit",
- "fullName": "A Sh (choofe.bit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14590594/medium/018e68a4986f8a8c25c4725286123f42.jpg",
- "joined": "2021-01-23 06:14:09"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 90,
- "target": 120,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814600",
- "username": "vPEPO",
- "fullName": "Luciano Orlando (vPEPO)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814600/medium/677ea1f4add63149a74de564de70989a.png",
- "joined": "2021-06-25 00:52:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 90,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 22
- },
- {
- "user": {
- "id": "14647552",
- "username": "whjiang1997",
- "fullName": "姜文浩 (whjiang1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647552/medium/ab5b7cc4742ee5615b7e170197e5915a.jpg",
- "joined": "2021-03-01 06:17:13"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 90,
- "target": 160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 45
- },
- {
- "user": {
- "id": "14677168",
- "username": "kilid69",
- "fullName": "kilid69",
- "avatarUrl": "https://www.gravatar.com/avatar/136e1f7c2540321fd8dedf158adfd8e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 10:06:30"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 90,
- "target": 108,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12702618",
- "username": "p30on",
- "fullName": "Yaser Doosti (p30on)",
- "avatarUrl": "https://www.gravatar.com/avatar/a7cd3eede73e079a057b4cb26e31e242?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 15:49:57"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 90,
- "target": 95,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782424",
- "username": "Randolph",
- "fullName": "陈龙 (Randolph)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782424/medium/7851e17a78e604a0d9fdc5862efb394b.png",
- "joined": "2021-06-02 00:18:12"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 90,
- "target": 134,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 31
- },
- {
- "user": {
- "id": "14621914",
- "username": "MarcelMauss",
- "fullName": "MarcelMauss",
- "avatarUrl": "https://www.gravatar.com/avatar/623f65ebfb800b7f7d8345dd384995ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 16:41:09"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 89,
- "target": 90,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14709304",
- "username": "car63",
- "fullName": "car63",
- "avatarUrl": "https://www.gravatar.com/avatar/55f3c079c98cd77a06d13de9dcec8167?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 21:51:33"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 89,
- "target": 92,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780896",
- "username": "Hacklowa",
- "fullName": "Hacklowa",
- "avatarUrl": "https://www.gravatar.com/avatar/d8e6df7ff204ca03bc2a2f76c4923b33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 00:52:58"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 89,
- "target": 91,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666384",
- "username": "gimyu",
- "fullName": "gimyu",
- "avatarUrl": "https://www.gravatar.com/avatar/b9ad81d93b8b8e18dc71e375674714c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 12:33:06"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 89,
- "target": 75,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960713",
- "username": "msfusionest",
- "fullName": "BENLICE Emel (msfusionest)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960713/medium/a2568d9e7b70d7972a6e68de4e79ba71.jpeg",
- "joined": "2021-10-13 03:24:20"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 88,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922683",
- "username": "dimityryordanovmitov",
- "fullName": "Димитър Митов (dimityryordanovmitov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922683/medium/0614e0aa7d663e2b1872912fef4dd747.jpeg",
- "joined": "2021-09-14 15:31:18"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 88,
- "target": 92,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659742",
- "username": "bintangnndhy",
- "fullName": "Bintang Anandhiya (bintangnndhy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659742/medium/3f71a7bfcbef481a1a77f8f76bd66971.jpg",
- "joined": "2021-03-09 04:07:33"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 88,
- "target": 80,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668742",
- "username": "lmichelin",
- "fullName": "Leandro (lmichelin)",
- "avatarUrl": "https://www.gravatar.com/avatar/ea5aff5ddc9ccd86cbecb40868581945?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 09:19:53"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 88,
- "target": 92,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14265346",
- "username": "1789frn",
- "fullName": "1789frn",
- "avatarUrl": "https://www.gravatar.com/avatar/2887373c7c2342c4e1518046b8bd4483?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-26 12:09:25"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 88,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 71
- },
- {
- "user": {
- "id": "14631752",
- "username": "Paragunde358",
- "fullName": "Paragunde358",
- "avatarUrl": "https://www.gravatar.com/avatar/378e346fe499554a3b23c724ad757a53?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 14:59:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 87,
- "target": 92,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900694",
- "username": "NagasaiCrowdin",
- "fullName": "NAGASAI BASVOJU (NagasaiCrowdin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900694/medium/c0786b1def4799c4c8a7c6881a66bb08.png",
- "joined": "2021-08-29 13:15:17"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 87,
- "target": 96,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779894",
- "username": "willemringnalda",
- "fullName": "Don Willy (willemringnalda)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779894/medium/b053311fee67d8e8d1bb6a197022979b.png",
- "joined": "2021-05-31 07:11:14"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 87,
- "target": 82,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14123985",
- "username": "usersolidity",
- "fullName": "usersolidity",
- "avatarUrl": "https://www.gravatar.com/avatar/95be843a5ab8ae19c478880541aff9c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-17 22:57:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 87,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607686",
- "username": "bubabu123",
- "fullName": "bubabu123",
- "avatarUrl": "https://www.gravatar.com/avatar/1a22f730de18156a3b5f7e70312062a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 12:29:36"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 87,
- "target": 75,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14995749",
- "username": "vikendrit",
- "fullName": "Vikendrit Decentralized (vikendrit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995749/medium/dd27eac8759a2044212d1803d0965a7b.png",
- "joined": "2021-11-09 00:31:17"
- },
- "languages": [
- {
- "id": "ne-NP",
- "name": "Nepali"
- }
- ],
- "translated": 87,
- "target": 168,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14349526",
- "username": "Jaylukmann",
- "fullName": "Jimoh Lukman Adeyemi (Jaylukmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14349526/medium/1f1e32261af97a37ab61584658c290d4.jpeg",
- "joined": "2020-07-20 10:47:52"
- },
- "languages": [
- {
- "id": "yo",
- "name": "Yoruba"
- }
- ],
- "translated": 87,
- "target": 75,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752990",
- "username": "Gennadich0109",
- "fullName": "Gennadich0109",
- "avatarUrl": "https://www.gravatar.com/avatar/7f09490c93e0318445ad5726ead8bd8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 11:35:29"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 86,
- "target": 1102,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563302",
- "username": "mwsua77",
- "fullName": "스윽 (mwsua77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563302/medium/7b36db3328f069314ee8db9534389623.jpeg",
- "joined": "2021-01-05 02:23:20"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 85,
- "target": 101,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773262",
- "username": "Zoey-jack",
- "fullName": "Zoey-jack",
- "avatarUrl": "https://www.gravatar.com/avatar/3d1e2f881012de8ce272fd7e3ef7879f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 05:31:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 85,
- "target": 123,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14704914",
- "username": "Gian-Lorenzo",
- "fullName": "Gian-Lorenzo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704914/medium/4a90eb0bb07d82f11b122198ee8c47ab.png",
- "joined": "2021-04-09 10:43:44"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 85,
- "target": 101,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 32
- },
- {
- "user": {
- "id": "14442984",
- "username": "marseluca",
- "fullName": "Luca Marseglia (marseluca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442984/medium/2f899f501af675c0081dff102f33b2ab.jpg",
- "joined": "2021-08-22 08:31:42"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 85,
- "target": 91,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955083",
- "username": "0x",
- "fullName": "0x",
- "avatarUrl": "https://www.gravatar.com/avatar/103e771b57ead1687a85576f1d604d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 11:59:14"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 84,
- "target": 65,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982023",
- "username": "jdgomes",
- "fullName": "jdgomes",
- "avatarUrl": "https://www.gravatar.com/avatar/4d69fb95b1d8d208d48c2269e9594b3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 22:51:20"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 84,
- "target": 92,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709176",
- "username": "AboHamed",
- "fullName": "Abo Hamed (AboHamed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709176/medium/c6b325862fa60edc08bb896cccd6eef5.jpg",
- "joined": "2021-04-12 18:36:42"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 84,
- "target": 86,
- "approved": 0,
- "voted": 18,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14954589",
- "username": "Maexstallion",
- "fullName": "Maexstallion",
- "avatarUrl": "https://www.gravatar.com/avatar/65c0ee1626a3633d40b2f1fbc5698d96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 04:47:30"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 84,
- "target": 96,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13671867",
- "username": "blackeye-_",
- "fullName": "แบล็ค' อาย' (blackeye-_)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13671867/medium/a28dd7416176046e7e7959916d4bd2c4.jpeg",
- "joined": "2019-10-22 22:19:41"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 83,
- "target": 19,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576790",
- "username": "Flipote",
- "fullName": "Flipote",
- "avatarUrl": "https://www.gravatar.com/avatar/0e10502f249ea0cc6992a5bde8c62d59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 08:48:47"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 82,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14416498",
- "username": "MorettiViktoria",
- "fullName": "MorettiViktoria",
- "avatarUrl": "https://www.gravatar.com/avatar/0bfe032234f740134afbf961ff2d6fd7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-15 09:44:29"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 82,
- "target": 82,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563036",
- "username": "terasum",
- "fullName": "terasum",
- "avatarUrl": "https://www.gravatar.com/avatar/987a64d0130d1092613c7679a1eeb30c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 21:15:56"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 82,
- "target": 156,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14672944",
- "username": "stefanosandrin4",
- "fullName": "Stefano Sandrin (stefanosandrin4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14672944/medium/0e9d49182df4578430e29159304dc22e.jpeg",
- "joined": "2021-03-18 06:18:12"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 81,
- "target": 90,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748222",
- "username": "ffmpp",
- "fullName": "Flávio FM (ffmpp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748222/medium/38294fc1a0e915f0f021ffb221e8573b.png",
- "joined": "2021-05-09 19:09:34"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 81,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838076",
- "username": "pd.duvnjak",
- "fullName": "Petar Duvnjak (pd.duvnjak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838076/medium/300021775f969ae9e2137cafb3c4b61e.png",
- "joined": "2021-07-13 11:47:09"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 80,
- "target": 73,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867212",
- "username": "haritz_950423",
- "fullName": "Haritz Lopez (haritz_950423)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867212/medium/f2d03c7459424f9158deca133bb7a6db.jpeg",
- "joined": "2021-08-05 04:23:27"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 79,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853674",
- "username": "fixprogram",
- "fullName": "Denis (fixprogram)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853674/medium/bcb233640afd14d2584ebedb9347d249.jpeg",
- "joined": "2021-07-26 08:15:21"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 79,
- "target": 74,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992821",
- "username": "josemigc2411",
- "fullName": "Jose Miguel Garcia Cervan (josemigc2411)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992821/medium/2b2f9d5465cbcbe34f8fb3d00847efdc.png",
- "joined": "2021-11-06 15:21:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 79,
- "target": 85,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614610",
- "username": "Zimza44",
- "fullName": "Stef Stagos (Zimza44)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614610/medium/557435f19b7b63c55a7f33a01231832d.png",
- "joined": "2021-02-08 05:09:41"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 79,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 63
- },
- {
- "user": {
- "id": "14950197",
- "username": "SlashHash",
- "fullName": "SlashHash",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950197/medium/20d99cde077abaee189a2dc7908d26f2.png",
- "joined": "2021-10-04 18:44:23"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 79,
- "target": 72,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771800",
- "username": "rtree",
- "fullName": "rtree",
- "avatarUrl": "https://www.gravatar.com/avatar/4693242a4c7bc7ca86e6f639e507d8a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 05:10:41"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 79,
- "target": 205,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14599906",
- "username": "Darnai.Sara",
- "fullName": "Darnai Sára (Darnai.Sara)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599906/medium/34114c1d1c05de93d9805846e9ae1ffc.jpg",
- "joined": "2021-01-29 08:33:24"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 78,
- "target": 58,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14995351",
- "username": "jora535",
- "fullName": "Evgeniy (jora535)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995351/medium/5edba64a00e991d7176c8a1d6fe5cb27.jpeg",
- "joined": "2021-11-08 14:52:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 78,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14534908",
- "username": "LadyNoir",
- "fullName": "Jane Doe (LadyNoir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14534908/medium/7e9f2c175731e387900c7ec6e3d8554d.JPG",
- "joined": "2020-12-13 18:13:11"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 78,
- "target": 77,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785924",
- "username": "KaerMorh",
- "fullName": "SkyEternal (KaerMorh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785924/medium/c4f322ead0ea660939705b498e4614ad.png",
- "joined": "2021-06-04 09:26:19"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 78,
- "target": 143,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 57
- },
- {
- "user": {
- "id": "14623848",
- "username": "mariocachapuz",
- "fullName": "Mario Cachapuz (mariocachapuz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623848/medium/ea0d1ae48ac6dba6f2a5c70a944f7e45.png",
- "joined": "2021-02-14 07:36:37"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 77,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13994593",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/941dd28ef44d36d794a96dfd431881a2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-26 00:47:03"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 76,
- "target": 72,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893876",
- "username": "nsafari",
- "fullName": "nsafari",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893876/medium/2da09d6d609c8e44fe956ce842822c52.png",
- "joined": "2021-08-24 08:07:08"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 76,
- "target": 99,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635876",
- "username": "spiegelei929",
- "fullName": "spiegelei929",
- "avatarUrl": "https://www.gravatar.com/avatar/8f409171f202337f6f9df2e9ae5729bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 06:49:22"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 76,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14886470",
- "username": "pegzerthugger",
- "fullName": "PegzOff TLPV (pegzerthugger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886470/medium/b560016f96838976470e87b2f9077243.png",
- "joined": "2021-08-18 15:47:35"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 76,
- "target": 70,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730558",
- "username": "ram0304",
- "fullName": "ram0304",
- "avatarUrl": "https://www.gravatar.com/avatar/df5136e2d6fb7371c6104d5a582cd573?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 17:44:03"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 75,
- "target": 51,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576728",
- "username": "celeste.roberto",
- "fullName": "Roberto Celeste (celeste.roberto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576728/medium/c8b5a113ef9b9fa558c05ef471a182d2.png",
- "joined": "2021-01-14 07:48:53"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 75,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14774422",
- "username": "Blu620",
- "fullName": "Kevin Vélez Vera (Blu620)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774422/medium/49ca5ab77b6f06bf3bd213d6db9e426f.jpeg",
- "joined": "2021-05-26 23:20:45"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 75,
- "target": 73,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 75
- },
- {
- "user": {
- "id": "14846468",
- "username": "khanh30125",
- "fullName": "Gia Khánh Phạm (khanh30125)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846468/medium/3749044fc47f1a5aa666bfcc50f7af1d.jpeg",
- "joined": "2021-07-20 06:04:26"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 75,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690762",
- "username": "arscrypto",
- "fullName": "arscrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/e90b9176543cb7c35510b9acdab6747d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 13:10:30"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 75,
- "target": 81,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14640892",
- "username": "demonstrator",
- "fullName": "demonstrator",
- "avatarUrl": "https://www.gravatar.com/avatar/855e3a72d73adbeb6702ba7f9177614a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 23:39:03"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 75,
- "target": 127,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14199570",
- "username": "vavantgarde",
- "fullName": "va.zh (vavantgarde)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14199570/medium/c63576e0e6e6d52fa17d7080a9992372.jpeg",
- "joined": "2021-10-06 08:08:17"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 75,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688768",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/817737bd40989d640a509e628a1d4378?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 13:32:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 74,
- "target": 80,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638212",
- "username": "Santi300798",
- "fullName": "Santi300798",
- "avatarUrl": "https://www.gravatar.com/avatar/f0d11e8352b0c12caab9da371447e21d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 11:26:42"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 74,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714186",
- "username": "WizerPlay",
- "fullName": "WizerPlay",
- "avatarUrl": "https://www.gravatar.com/avatar/7aec6156a0a5905d2d262a5338eb49ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 09:12:14"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 74,
- "target": 65,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811054",
- "username": "podiumdesu",
- "fullName": "PetnaKanojo (podiumdesu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811054/medium/425ba0ebc0a6bf2478e9bda9c233e4d1.jpeg",
- "joined": "2021-06-22 08:20:09"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 74,
- "target": 87,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 33
- },
- {
- "user": {
- "id": "13208316",
- "username": "yuriypylypchuk",
- "fullName": "Yuriy (yuriypylypchuk)",
- "avatarUrl": "https://www.gravatar.com/avatar/20792792a16dfd01cb6612c393799535?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 04:57:58"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 74,
- "target": 219,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965641",
- "username": "nake13",
- "fullName": "nake13",
- "avatarUrl": "https://www.gravatar.com/avatar/d7d36059be41bbf404955ead3cad9087?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-29 00:07:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 74,
- "target": 133,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "13976753",
- "username": "rise_risemary",
- "fullName": "5cronipod (rise_risemary)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976753/medium/a3f61b480c5030ceaab415b125e68f98.jpg",
- "joined": "2020-05-21 16:20:48"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 74,
- "target": 74,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984185",
- "username": "0xiguana",
- "fullName": "Chris Lee (0xiguana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984185/medium/262b7d8ef8c2b3a21a0d7e9f992acf7a.png",
- "joined": "2021-10-31 12:10:42"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 74,
- "target": 132,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635270",
- "username": "alyssazh310",
- "fullName": "Alyssa Liu (alyssazh310)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635270/medium/4b8979d92b23fa60ddd18a446adc3f7f.jpeg",
- "joined": "2021-02-21 23:09:35"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 73,
- "target": 119,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14950169",
- "username": "byblos94",
- "fullName": "Veljko Vranić (byblos94)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950169/medium/addf5330271e69946f7833fe3144d01d.png",
- "joined": "2021-10-04 18:01:28"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 73,
- "target": 66,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664432",
- "username": "sewoyl",
- "fullName": "Tom O (sewoyl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664432/medium/76d5a3fb5606dbd3bc3a6d35e32a2f81.jpeg",
- "joined": "2021-03-12 04:33:24"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 73,
- "target": 76,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725188",
- "username": "bagira2512",
- "fullName": "ivanna panasuk (bagira2512)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725188/medium/8de0ac373b7fbd055402a38215b9e0a6.jpg",
- "joined": "2021-04-24 15:36:21"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 73,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669614",
- "username": "nosferatu500",
- "fullName": "nosferatu500",
- "avatarUrl": "https://www.gravatar.com/avatar/466b11a9f99fc85d8d6c34495082fd7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 22:45:49"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 73,
- "target": 73,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 33
- },
- {
- "user": {
- "id": "15026665",
- "username": "yzarbun",
- "fullName": "Yigit Zarbun (yzarbun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026665/medium/20e52ef9a7092025f059cc558f3bafe4.png",
- "joined": "2021-11-22 14:43:53"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 72,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136921",
- "username": "ttuan2007",
- "fullName": "Jack Tran (ttuan2007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136921/medium/c1f71489f59cbd61c70260fd74ce8092.jpeg",
- "joined": "2020-02-27 08:56:21"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 72,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14825340",
- "username": "arctic51",
- "fullName": "arctic51",
- "avatarUrl": "https://www.gravatar.com/avatar/097b4b755c59dbbf55017ad0647c05f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 05:09:47"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 72,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950595",
- "username": "nicerca",
- "fullName": "nicerca",
- "avatarUrl": "https://www.gravatar.com/avatar/e9fa89ad02c6b6c2f73016f057e74a7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 04:00:53"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 72,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020181",
- "username": "jcruzrivera",
- "fullName": "jcruzrivera",
- "avatarUrl": "https://www.gravatar.com/avatar/71150e449e40c218bc198b8d26dba0b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 13:44:47"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 72,
- "target": 87,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030613",
- "username": "ChadleyETH",
- "fullName": "ChadleyETH",
- "avatarUrl": "https://www.gravatar.com/avatar/d524ba7ea4e118deb12193eb4391dd1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 11:46:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 71,
- "target": 85,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896196",
- "username": "leoclark",
- "fullName": "leoclark",
- "avatarUrl": "https://www.gravatar.com/avatar/7e9b882a9e897b57b3e28408fba53538?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 23:06:23"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 71,
- "target": 67,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002443",
- "username": "Pamelaocampo444",
- "fullName": "Pamelaocampo444",
- "avatarUrl": "https://www.gravatar.com/avatar/dd6cbc98230ea745d12905b0e8048af1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 21:06:13"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 71,
- "target": 71,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752336",
- "username": "Necis",
- "fullName": "Necis",
- "avatarUrl": "https://www.gravatar.com/avatar/1d409bc52730dd8c3aa5fc9312b8e467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 04:36:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 71,
- "target": 80,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13559834",
- "username": "DasMergo",
- "fullName": "Seied Ali Mirkarimi (DasMergo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559834/medium/1022545f1391447b44113ac76076957a.jpg",
- "joined": "2021-07-21 14:57:03"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 71,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737838",
- "username": "farukre",
- "fullName": "Faruk Urer (farukre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737838/medium/7121319a2b515e6170c50820f96538c9.png",
- "joined": "2021-05-04 10:28:47"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 71,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 49
- },
- {
- "user": {
- "id": "14851800",
- "username": "chrisvu.wabash",
- "fullName": "Anh Vu (chrisvu.wabash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851800/medium/368f50b324d31a54a501da2837bceaad.png",
- "joined": "2021-07-24 14:57:40"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 71,
- "target": 95,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546956",
- "username": "ipungpurwono",
- "fullName": "ipungpurwono",
- "avatarUrl": "https://www.gravatar.com/avatar/ff7e1263652b38c8dd2e36ae6cb5f3ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-22 22:30:08"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 70,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973315",
- "username": "andruhas22",
- "fullName": "Андрей Чорный (andruhas22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973315/medium/7848339056e62d593030d6a6cb152e74.jpeg",
- "joined": "2021-10-23 05:36:51"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 70,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982731",
- "username": "stepantsova.marina",
- "fullName": "Marina Step (stepantsova.marina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982731/medium/75bfe4bbb86944281ad86000f10b8b7c.jpeg",
- "joined": "2021-10-30 12:39:26"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 70,
- "target": 55,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12926776",
- "username": "mejlus",
- "fullName": "Egidijus Griešnovas (mejlus)",
- "avatarUrl": "https://www.gravatar.com/avatar/8ec6a8da77fd961397b9919437b50e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-09 06:16:32"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 70,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613102",
- "username": "Amaramalik99",
- "fullName": "Amaramalik99",
- "avatarUrl": "https://www.gravatar.com/avatar/3638e6814fc5c256b8dcbf6052f87cc7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 19:31:51"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 70,
- "target": 151,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14551612",
- "username": "Yehei",
- "fullName": "Yehei",
- "avatarUrl": "https://www.gravatar.com/avatar/6967f7ca67e84ada88819b839dd3f416?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 19:27:07"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 70,
- "target": 74,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14051411",
- "username": "amitkumar991",
- "fullName": "amitkumar991",
- "avatarUrl": "https://www.gravatar.com/avatar/7b8b83234a33cc99121c31623479c38e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-12 06:23:29"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 69,
- "target": 120,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "15025455",
- "username": "Taha_Yasu",
- "fullName": "Taha_Yasu",
- "avatarUrl": "https://www.gravatar.com/avatar/7703f7a0f8868bfd33e1666be3f6f50f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 17:27:57"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 69,
- "target": 56,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590264",
- "username": "sofienedami",
- "fullName": "Dami Sofien (sofienedami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14590264/medium/65f1182ca70fe1e101775da0d722d0e5.jpeg",
- "joined": "2021-01-23 00:36:47"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 69,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14953369",
- "username": "komaryulia12",
- "fullName": "Юлія Комар (komaryulia12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953369/medium/87458c08c17ee87bf7daa7f73e6d9945.jpeg",
- "joined": "2021-10-07 10:06:58"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 69,
- "target": 62,
- "approved": 0,
- "voted": 164,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003267",
- "username": "r_victory",
- "fullName": "r_victory",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003267/medium/4137644ea8974a0c3d2a8c73b189d7c5.png",
- "joined": "2021-11-14 15:17:24"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 69,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030241",
- "username": "sonata-chen",
- "fullName": "sonata-chen",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030241/medium/521fb44a99be409b8deb401d00d2439b.png",
- "joined": "2021-11-25 05:41:09"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 69,
- "target": 134,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561238",
- "username": "DrafT26",
- "fullName": "DrafT26",
- "avatarUrl": "https://www.gravatar.com/avatar/aa65dde8ca0be7c9c6399403f732a70a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 15:35:45"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 69,
- "target": 75,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14569472",
- "username": "NH4HCO3",
- "fullName": "NH4HCO3",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569472/medium/fe8c93ec393c72040d3d294ff046f04d.gif",
- "joined": "2021-11-27 07:14:23"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 69,
- "target": 129,
- "approved": 0,
- "voted": 36,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13613906",
- "username": "Leopinto",
- "fullName": "Leopinto",
- "avatarUrl": "https://www.gravatar.com/avatar/1eb6a8d18a610c5a592046fe77b5dd28?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 02:01:40"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 68,
- "target": 73,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14338040",
- "username": "godra9",
- "fullName": "godra9",
- "avatarUrl": "https://www.gravatar.com/avatar/286d3389fd701e3dd31cae7ffa3d1870?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 10:13:27"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 68,
- "target": 69,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 54
- },
- {
- "user": {
- "id": "14317146",
- "username": "prk2020",
- "fullName": "prk2020",
- "avatarUrl": "https://www.gravatar.com/avatar/63bb17d02e8d09690905276b54cb2b7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-23 21:37:42"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 68,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956823",
- "username": "Usuao_Silver",
- "fullName": "Usuao_Silver",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956823/medium/f56b919f0846170cf8731272b8726bd7.jpeg",
- "joined": "2021-10-10 03:15:19"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 68,
- "target": 93,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619062",
- "username": "Muuri93",
- "fullName": "Muuri93",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619062/medium/9fcb67976c6aca6baf74395a86438728.png",
- "joined": "2021-02-10 20:23:15"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 68,
- "target": 79,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14515804",
- "username": "8QIo1",
- "fullName": "8QIo1",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515804/medium/ba094da230429b3578e174d3e31fc033.png",
- "joined": "2020-11-29 16:17:44"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 68,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13987909",
- "username": "bro_afif",
- "fullName": "bro_afif",
- "avatarUrl": "https://www.gravatar.com/avatar/d407cd2bb8be375c17060905b501d279?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-18 21:02:16"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 68,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14367416",
- "username": "simiria1980",
- "fullName": "иван семеренько (simiria1980)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14367416/medium/211a965aa2c0eef05cc9a8c36489a01c.jpeg",
- "joined": "2021-10-27 07:58:04"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 67,
- "target": 220,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797670",
- "username": "stassizyakin45",
- "fullName": "Ann Partovi (stassizyakin45)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797670/medium/9e08f4e6af0d5ea0617c0f3347c2701f.jpeg",
- "joined": "2021-06-13 06:49:20"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 67,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735952",
- "username": "DeMmAge",
- "fullName": "DeMmAge",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735952/medium/e04b2e75d4d0e43ccd1b6ee12e0c14a4.jpeg",
- "joined": "2021-05-03 02:00:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 67,
- "target": 52,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740018",
- "username": "Punsk",
- "fullName": "Punsk",
- "avatarUrl": "https://www.gravatar.com/avatar/843642a4fa794da2be9a0e93bc6200ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 23:33:58"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 67,
- "target": 79,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14978593",
- "username": "Vuichka",
- "fullName": "Ванечка Александров (Vuichka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978593/medium/2df5fba2f29878e74912892dd1bdc5cc.jpeg",
- "joined": "2021-10-27 16:52:00"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 67,
- "target": 65,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573716",
- "username": "abdoulaye77124",
- "fullName": "abdoulaye diallo (abdoulaye77124)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573716/medium/3f85f9842e486a6773ec5351e1878ece.jpg",
- "joined": "2021-01-12 08:00:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 67,
- "target": 77,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14601556",
- "username": "lucas.claudiu",
- "fullName": "Claudiu Lucas (lucas.claudiu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601556/medium/4c77e661505b2e30c25574b9a4ec4e57.jpeg",
- "joined": "2021-01-30 10:41:45"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 67,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736478",
- "username": "ogander",
- "fullName": "ogander",
- "avatarUrl": "https://www.gravatar.com/avatar/894f54abd346f9c2956b14afb644847e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 10:32:40"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 67,
- "target": 73,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777654",
- "username": "rikcags",
- "fullName": "Ricardo Gaxiola (rikcags)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777654/medium/2b82111d83c35beff3f05476b3a65b2f.png",
- "joined": "2021-05-29 10:39:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 67,
- "target": 77,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14128259",
- "username": "krzyz23",
- "fullName": "krzyz23",
- "avatarUrl": "https://www.gravatar.com/avatar/8884fcb5f8a318c9ac3d8934328eeee7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-13 05:59:39"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 67,
- "target": 60,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955237",
- "username": "hvvctor",
- "fullName": "Victor Hugo Lopes (hvvctor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955237/medium/17461070a3490237f8008d5eec7672da.jpeg",
- "joined": "2021-10-08 14:37:45"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 66,
- "target": 71,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14599044",
- "username": "do1221",
- "fullName": "Linda Canarvar (do1221)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599044/medium/acf065ebe3d30435aff08f99204281b1.jpg",
- "joined": "2021-01-28 14:53:30"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 66,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551216",
- "username": "PoeMoe",
- "fullName": "Вова Вересовой (PoeMoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14551216/medium/c323076bd71473559b5b64d2eafcb65f.jpg",
- "joined": "2020-12-26 12:29:02"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 66,
- "target": 56,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 20
- },
- {
- "user": {
- "id": "14635690",
- "username": "mollyroor",
- "fullName": "hashim alhashimi (mollyroor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635690/medium/869fb615ccd82f3ec379228ccd6a859e.jpeg",
- "joined": "2021-02-22 05:15:13"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 66,
- "target": 65,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723852",
- "username": "Jesucripto",
- "fullName": "mcjotaemedj (Jesucripto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723852/medium/f84506bd3a8ceab96b024dd73d8d7c55.jpg",
- "joined": "2021-04-23 12:29:10"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 66,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731248",
- "username": "Ivan-Stepanenko",
- "fullName": "Ivan-Stepanenko",
- "avatarUrl": "https://www.gravatar.com/avatar/6f195c3ef662fb75acba8423de1de144?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 07:50:55"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 66,
- "target": 55,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569424",
- "username": "nikolajanke",
- "fullName": "Nikola Jankovic (nikolajanke)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569424/medium/ae78764c40ae6a2b22cbd5b83e7a8bac.jpeg",
- "joined": "2021-01-09 09:42:14"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 65,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740910",
- "username": "rahmadmaulidan",
- "fullName": "rahmad maulidan (rahmadmaulidan)",
- "avatarUrl": "https://www.gravatar.com/avatar/2d343e863d0ada74fa776c135338a660?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 13:00:48"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 65,
- "target": 69,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702518",
- "username": "Byrde",
- "fullName": "Byrde",
- "avatarUrl": "https://www.gravatar.com/avatar/4763941b7c80ff299f8bc4bd97a288fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-07 20:55:04"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 65,
- "target": 75,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745094",
- "username": "anhskrttt",
- "fullName": "anhskrttt",
- "avatarUrl": "https://www.gravatar.com/avatar/6f614a04fb7e73fc98ceca6e3bb97f72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 00:15:39"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 65,
- "target": 94,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654262",
- "username": "haidar3312",
- "fullName": "حيدر عمر (haidar3312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654262/medium/0960808170fde67e7fcd1f7e8fe3bfba.jpg",
- "joined": "2021-03-05 05:29:37"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 65,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546158",
- "username": "mahesh.rba",
- "fullName": "R Mahesh (mahesh.rba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546158/medium/c97755abdd8e61793d456b3c584269a9.png",
- "joined": "2020-12-22 08:14:22"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 64,
- "target": 76,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14463078",
- "username": "poojaranjan",
- "fullName": "Pooja Ranjan (poojaranjan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14463078/medium/0f7b024651717543c907bb53c95160bf.jpeg",
- "joined": "2020-10-19 16:52:47"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 64,
- "target": 106,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13731191",
- "username": "syahmin",
- "fullName": "syahmin",
- "avatarUrl": "https://www.gravatar.com/avatar/04ff2c9453e2fc98ec6c11e5a1d21441?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-20 10:24:11"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 63,
- "target": 59,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14052002",
- "username": "modartoken",
- "fullName": "modartoken",
- "avatarUrl": "https://www.gravatar.com/avatar/94f294d32c08b4e1984053b2910d76f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-13 10:04:02"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 63,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13375858",
- "username": "Cathness",
- "fullName": "Cathness",
- "avatarUrl": "https://www.gravatar.com/avatar/b48af8ec66562fd5e96178857052738f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 15:27:10"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 63,
- "target": 66,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14668094",
- "username": "nikkikedia",
- "fullName": "nikkikedia",
- "avatarUrl": "https://www.gravatar.com/avatar/ace33e47f779c0731181ae17eae6547c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 20:55:25"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 63,
- "target": 106,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14375966",
- "username": "tigger_ik_thai",
- "fullName": "Chicken Alone (tigger_ik_thai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14375966/medium/0ff66585f092e7bf690ff8fcbc2af4b7.png",
- "joined": "2021-03-31 09:05:33"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 63,
- "target": 37,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959165",
- "username": "hanzoh",
- "fullName": "Mayato Hattori (hanzoh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959165/medium/5b5d25560b26caab0ff4c839424126ab.jpg",
- "joined": "2019-08-22 08:04:39"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 63,
- "target": 176,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 42
- },
- {
- "user": {
- "id": "14635054",
- "username": "GourmelonGaetan",
- "fullName": "Gaëtan Gourmelon (GourmelonGaetan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635054/medium/92dc7e601ce7911daafcfaecb875e0cd.jpeg",
- "joined": "2021-02-21 18:56:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 63,
- "target": 66,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662728",
- "username": "opencar2018",
- "fullName": "open mind (opencar2018)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14662728/medium/7d894445fa53234eea8bd35962bfebea.jpeg",
- "joined": "2021-03-11 00:52:33"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 63,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14979259",
- "username": "caglarylmz",
- "fullName": "Çağlar YILMAZ (caglarylmz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14979259/medium/aaea9fcba4c2027490c2336e6d9b86c8.png",
- "joined": "2021-10-28 04:52:31"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 63,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696346",
- "username": "AndrewLillie64",
- "fullName": "AndrewLillie64",
- "avatarUrl": "https://www.gravatar.com/avatar/6a0fb4762b881cf0387a8169650751e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 19:15:58"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 63,
- "target": 54,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 63
- },
- {
- "user": {
- "id": "14955317",
- "username": "gillesduif",
- "fullName": "gillesduif",
- "avatarUrl": "https://www.gravatar.com/avatar/7355f5da07b450011f896bfb00989001?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 16:18:31"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 62,
- "target": 67,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021999",
- "username": "10denisenko10",
- "fullName": "Сергей Денисенко (10denisenko10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021999/medium/6019beedada344d78d324971b3adfd2c.jpeg",
- "joined": "2021-11-18 19:57:26"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 62,
- "target": 58,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621656",
- "username": "Anna-Sophie",
- "fullName": "Anna-Sophie",
- "avatarUrl": "https://www.gravatar.com/avatar/020cdcc2f8b97e0f256c812ee74bb17e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 13:19:15"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 62,
- "target": 54,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 20
- },
- {
- "user": {
- "id": "14967909",
- "username": "douglasgj",
- "fullName": "Douglas Galisteo (douglasgj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967909/medium/6dc4ca79a5d03006f0f73089101bbd1d.jpeg",
- "joined": "2021-10-19 02:08:56"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 62,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709226",
- "username": "Hishler",
- "fullName": "Hishler",
- "avatarUrl": "https://www.gravatar.com/avatar/1d641208816a310273798a47294a4393?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 20:00:45"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 62,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891780",
- "username": "GabrielaAndere",
- "fullName": "Gabriela Andere (GabrielaAndere)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891780/medium/27acbd59c98271b2bbb592ad38bc5f87.jpg",
- "joined": "2021-08-23 16:58:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 62,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12544745",
- "username": "muthuveerappan",
- "fullName": "muthuveerappan (muthuveerappan)",
- "avatarUrl": "https://www.gravatar.com/avatar/4f70279c7db5abd89dd9adb4c924cc38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-18 23:22:26"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 62,
- "target": 102,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757940",
- "username": "androx",
- "fullName": "androx",
- "avatarUrl": "https://www.gravatar.com/avatar/ec1937d5a33dc737e4500e7735ce74f0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 08:51:06"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 62,
- "target": 58,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14668114",
- "username": "ttinho",
- "fullName": "ttinho",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14668114/medium/abb6c5088e9fedee0db9d42e5079b776.jpeg",
- "joined": "2021-03-14 21:34:46"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 62,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981431",
- "username": "dilebucalossi",
- "fullName": "dilebucalossi",
- "avatarUrl": "https://www.gravatar.com/avatar/71cc24a8d6b8ab5842fafe0b4d94a1de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 11:47:15"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 62,
- "target": 62,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14885094",
- "username": "FrancoElicabe",
- "fullName": "FrancoElicabe",
- "avatarUrl": "https://www.gravatar.com/avatar/f0f6b7a6624308ec4392f59fc745f03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 18:28:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 62,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057576",
- "username": "sercanbasaran",
- "fullName": "Sercan Başaran (sercanbasaran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057576/medium/87f3ebf91dd2cf3be230d1dc717a4967.jpeg",
- "joined": "2019-12-24 11:44:32"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 62,
- "target": 60,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 58
- },
- {
- "user": {
- "id": "14364086",
- "username": "elenasapnit",
- "fullName": "ELENA SAPNIT (elenasapnit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364086/medium/593b8599802ba4ca6aeecbdb4bb11966.jpeg",
- "joined": "2020-08-02 06:01:57"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 61,
- "target": 78,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845564",
- "username": "Ramiro_ETH",
- "fullName": "Ramiro_ETH",
- "avatarUrl": "https://www.gravatar.com/avatar/3d026f6edc66a9646bb43ce532e5b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 12:43:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 61,
- "target": 70,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14644426",
- "username": "wode",
- "fullName": "wode",
- "avatarUrl": "https://www.gravatar.com/avatar/6fd40beebf809e90df044c81433928f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 02:33:31"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 60,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 28
- },
- {
- "user": {
- "id": "14791328",
- "username": "milindsoorya",
- "fullName": "milind soorya (milindsoorya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791328/medium/0ebf10e4cf80866063dff115afe00116.jpeg",
- "joined": "2021-06-08 12:13:27"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 60,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 48
- },
- {
- "user": {
- "id": "14572568",
- "username": "costablas",
- "fullName": "Costantino De Blasiis (costablas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572568/medium/3cbbfc1e2665ea1113e46481e65a3cb8.jpeg",
- "joined": "2021-01-11 11:36:45"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 60,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14914311",
- "username": "oleglody",
- "fullName": "oleglody",
- "avatarUrl": "https://www.gravatar.com/avatar/88d1f74e942037fae969788836f15005?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 12:50:38"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 60,
- "target": 77,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947627",
- "username": "mrchopin",
- "fullName": "mrchopin",
- "avatarUrl": "https://www.gravatar.com/avatar/200e25db33a4d48ead32de8fe15ce9a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 16:55:35"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 60,
- "target": 60,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737304",
- "username": "tommrovi",
- "fullName": "tommr (tommrovi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737304/medium/7c139dcf13435f5400716746d18acc51.jpeg",
- "joined": "2021-05-04 02:46:02"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 60,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14078043",
- "username": "sdfabiosilva",
- "fullName": "Fábio Silva (sdfabiosilva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14078043/medium/224ecf881424870b23a4517c55f6ba95.jpeg",
- "joined": "2020-01-15 21:48:05"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 60,
- "target": 66,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 47
- },
- {
- "user": {
- "id": "14836710",
- "username": "BumbyMoser",
- "fullName": "BumbyMoser",
- "avatarUrl": "https://www.gravatar.com/avatar/6be8a07ece86c0c1579ccf4ba0bcb151?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-12 10:49:40"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 60,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607254",
- "username": "cezary-stroczynski",
- "fullName": "cezary-stroczynski",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14607254/medium/b033a54bafd521fb58eddc8dbc1344ce.png",
- "joined": "2021-02-03 07:42:11"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 59,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14709210",
- "username": "mm.shirinnezhad",
- "fullName": "Mohammad Mehdi (mm.shirinnezhad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709210/medium/4f91166a36102f000bfd7c53769952aa.jpeg",
- "joined": "2021-04-12 19:19:18"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 59,
- "target": 60,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14631218",
- "username": "MesteRobot",
- "fullName": "Hassan Doodiyan (MesteRobot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631218/medium/499382603dfcc6053e1c2f872742c39e.jpg",
- "joined": "2021-05-20 02:58:56"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 59,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13234426",
- "username": "begiganellari1997",
- "fullName": "Begi Ganellari (begiganellari1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13234426/medium/19bc1758cb75b7fef26996e15b3b23cc.jpg",
- "joined": "2021-01-25 11:00:19"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 59,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14234914",
- "username": "BonieC",
- "fullName": "Bonie Jung (BonieC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14234914/medium/2965f8f4a58a9c35331f578a5c787c07.jpg",
- "joined": "2020-04-30 14:57:31"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 59,
- "target": 71,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999017",
- "username": "Stasha",
- "fullName": "Stasha",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999017/medium/6ada1c7859066549d278be64d778b2fa.jpeg",
- "joined": "2021-11-11 08:32:01"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 59,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823752",
- "username": "Leo500023",
- "fullName": "Leo500023",
- "avatarUrl": "https://www.gravatar.com/avatar/367819555226fe04e92cd96b4e10c772?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 23:15:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 59,
- "target": 117,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 59
- },
- {
- "user": {
- "id": "13094015",
- "username": "Helldelta",
- "fullName": "Helldelta",
- "avatarUrl": "https://www.gravatar.com/avatar/24aec05b5426673452ad2142981dbbe1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-25 15:04:23"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 59,
- "target": 60,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14367748",
- "username": "annekhate23",
- "fullName": "annekhate23",
- "avatarUrl": "https://www.gravatar.com/avatar/117ccadad9d81b86083707da49b60964?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-05 05:03:55"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 59,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563954",
- "username": "diego-salgado",
- "fullName": "Diego Salgado (diego-salgado)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563954/medium/4a1788a9cc959a9db35ac60f737b83a9.jpeg",
- "joined": "2021-01-05 14:06:54"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 58,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 22
- },
- {
- "user": {
- "id": "14637046",
- "username": "CryptoHamilton",
- "fullName": "Anthony Albertorio (CryptoHamilton)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637046/medium/a9a1f4853292ee84465a8d90062f3b8f.jpg",
- "joined": "2021-02-22 22:23:33"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 58,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752158",
- "username": "AuFish",
- "fullName": "AuFish",
- "avatarUrl": "https://www.gravatar.com/avatar/75191ff4b83c212b9c5a39d7108c8ddd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 02:02:28"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 58,
- "target": 114,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14638974",
- "username": "louiseperezserrano",
- "fullName": "Louise Pérez (louiseperezserrano)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638974/medium/96dbb1f75ee993fb0bea83c40a84c57d.jpeg",
- "joined": "2021-02-24 00:32:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 58,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14725384",
- "username": "kokxxxxik",
- "fullName": "ANDRZEJ J. (kokxxxxik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725384/medium/3d95e67f2d0cf018557b337329216fa4.jpeg",
- "joined": "2021-04-24 19:47:59"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 58,
- "target": 58,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14331932",
- "username": "mikolllll",
- "fullName": "KoxuXD (mikolllll)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14331932/medium/e36fec0c7340635e3546884bb044489f.png",
- "joined": "2020-07-05 16:43:19"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 58,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753704",
- "username": "leonardo.seji",
- "fullName": "Seiji K (leonardo.seji)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753704/medium/24de8f63b8599b59e7f9da5045ca34d6.jpeg",
- "joined": "2021-05-12 22:57:44"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 58,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935615",
- "username": "bratzconstantino",
- "fullName": "Spoiled Bratz (bratzconstantino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935615/medium/f41b61d9982f8da04237aae32a48a9ab.jpeg",
- "joined": "2021-09-24 01:43:03"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 57,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975451",
- "username": "RixCraft",
- "fullName": "RixCraft",
- "avatarUrl": "https://www.gravatar.com/avatar/89498fb8d22de8867ab4d03eaa07a7ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 07:29:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 57,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 34
- },
- {
- "user": {
- "id": "14940215",
- "username": "Blaslaw",
- "fullName": "Blaslaw",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940215/medium/8287f3ca1e766a45b1e013f430de367f.png",
- "joined": "2021-09-27 10:06:03"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 57,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800200",
- "username": "adrianpazosg",
- "fullName": "Adrián Pazos (adrianpazosg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800200/medium/6ed8760ef8fce69662fcee35915085d0.jpeg",
- "joined": "2021-06-15 06:51:50"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 57,
- "target": 63,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788710",
- "username": "niliosmon",
- "fullName": "Равиль Вахиев (niliosmon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788710/medium/279fe400c614f4ff9e976f620d8e3293.jpeg",
- "joined": "2021-06-06 16:45:24"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 57,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735846",
- "username": "weronicamc",
- "fullName": "Veronika Dudová (weronicamc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735846/medium/ade7898c29d686ea8682dbbe2cec816e.jpeg",
- "joined": "2021-05-02 23:59:14"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 57,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101293",
- "username": "wisterioso",
- "fullName": "haoyun (wisterioso)",
- "avatarUrl": "https://www.gravatar.com/avatar/4b5118faaffcbd991e92a4000b07ffc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 12:17:29"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 57,
- "target": 102,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14658714",
- "username": "rabihkhattar66",
- "fullName": "Rabih Khattar (rabihkhattar66)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658714/medium/05db5d5aeff930184ab6bd6ffb367b2b.jpeg",
- "joined": "2021-03-08 10:09:44"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 57,
- "target": 983,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14854804",
- "username": "nikbiondo",
- "fullName": "nikbiondo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854804/medium/e3ad6aa0acf22cbca8794a5fc69f95f9.jpeg",
- "joined": "2021-07-27 05:48:17"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 56,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14821378",
- "username": "charan2929292003",
- "fullName": "Charan (charan2929292003)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821378/medium/9b52b0efa05bb35de0a6d2c15372fdb6.jpeg",
- "joined": "2021-06-30 06:09:07"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 56,
- "target": 101,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618756",
- "username": "janrene2002328",
- "fullName": "Janrene Wln (janrene2002328)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618756/medium/4cc00cd911711f36316c5468f69231a5.jpeg",
- "joined": "2021-02-10 14:57:58"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 56,
- "target": 55,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "14312798",
- "username": "tabarca",
- "fullName": "tabarca",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312798/medium/5489a2aa359edfac235ad14726adcbb0.jpg",
- "joined": "2020-06-20 12:53:55"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 56,
- "target": 7847,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14765250",
- "username": "syamjayaraj",
- "fullName": "Syamlal C M (syamjayaraj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765250/medium/bf911d033e60adbf046de5f66fb0b8a0.jpeg",
- "joined": "2021-05-20 06:57:56"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 56,
- "target": 129,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14428258",
- "username": "Vilberg",
- "fullName": "Vilberg",
- "avatarUrl": "https://www.gravatar.com/avatar/d9f7001df65571d9688e1eeeebde7dd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-23 05:19:57"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 56,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548736",
- "username": "rojasafelipe91",
- "fullName": "Felipe Alfonso Rojas Araya (rojasafelipe91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548736/medium/eeb1f188ab9959eddb3275ae693664b2.jpg",
- "joined": "2020-12-24 07:57:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 55,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14058399",
- "username": "Balgair",
- "fullName": "Balgair",
- "avatarUrl": "https://www.gravatar.com/avatar/a318cde2d96baed55dddfe59a1a91a1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-04 16:09:54"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 55,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595552",
- "username": "jgcarrere",
- "fullName": "Joaquín González Carrere (jgcarrere)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595552/medium/2de405691db61f7cd4519fc49fe31860.jpg",
- "joined": "2021-01-26 14:44:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 55,
- "target": 58,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 13
- },
- {
- "user": {
- "id": "14678922",
- "username": "abc0905075395",
- "fullName": "張俊輔 (abc0905075395)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678922/medium/615c6a3a6c106fbbd8158ceac038f362.jpg",
- "joined": "2021-03-22 13:19:43"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 55,
- "target": 67,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 12
- },
- {
- "user": {
- "id": "15003025",
- "username": "RishYang",
- "fullName": "楊日新 (RishYang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003025/medium/2c2e962666bcd40b0f06ca6c1eb5e258.png",
- "joined": "2021-11-14 10:14:36"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 54,
- "target": 94,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869408",
- "username": "rezaabbasian",
- "fullName": "rezaabbasian",
- "avatarUrl": "https://www.gravatar.com/avatar/f27f8b419424846d12212697a4cc9752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 21:20:02"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 54,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14188993",
- "username": "Garesito",
- "fullName": "Garesito",
- "avatarUrl": "https://www.gravatar.com/avatar/a61fc552d7b456b2e7d08bb9b7180ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-03 16:49:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 54,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14959387",
- "username": "KilloWhite",
- "fullName": "KilloWhite",
- "avatarUrl": "https://www.gravatar.com/avatar/e8f2418e216e5a1f81edfdbe073d83de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 03:45:22"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 54,
- "target": 83,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14151675",
- "username": "buithang3058",
- "fullName": "buithang3058",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14151675/medium/ef9461c409a9d978f890cc99916c39b9.jpg",
- "joined": "2020-03-10 12:53:51"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 54,
- "target": 61,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720212",
- "username": "Mehdiamirirad",
- "fullName": "MehdiAmirirad (Mehdiamirirad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720212/medium/cfed5497d031cd84d81707be8efd1bd8.jpg",
- "joined": "2021-04-22 11:11:14"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 54,
- "target": 55,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594114",
- "username": "ccbtm83",
- "fullName": "Cristian Bejinariu (ccbtm83)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594114/medium/450d04d1ebe724824b4927a7d5a958be.png",
- "joined": "2021-01-25 16:40:25"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 54,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 2,
- "winning": 43
- },
- {
- "user": {
- "id": "14275472",
- "username": "solehsetiawan4987gmai.com",
- "fullName": "S setiawan (solehsetiawan4987gmai.com)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14275472/medium/38b43c4a4b8f4869574c444575dc6039.gif",
- "joined": "2020-05-26 15:06:20"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 53,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14730856",
- "username": "incio_chca",
- "fullName": "Cesar Incio (incio_chca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730856/medium/814f97b84cb2c46e7a0262db09698a11.jpg",
- "joined": "2021-04-29 11:02:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 53,
- "target": 61,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14973245",
- "username": "andangparsan",
- "fullName": "Andang Parsan (andangparsan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973245/medium/83a15ae159989f1f9a5bee86aeb6a14b.jpeg",
- "joined": "2021-10-23 03:42:31"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 52,
- "target": 48,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14055632",
- "username": "Oymate",
- "fullName": "Oymate",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14055632/medium/6307fe5e309a2baaa3b414482d2f4fe7.png",
- "joined": "2020-04-30 07:07:49"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 52,
- "target": 98,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 51
- },
- {
- "user": {
- "id": "14779956",
- "username": "aminmousavi5147",
- "fullName": "amin mousavi (aminmousavi5147)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779956/medium/e7f9bbadcf8a0fcd735ad66373fdb4fd.png",
- "joined": "2021-05-31 08:09:40"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 52,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14382396",
- "username": "AlbertChenKai",
- "fullName": "Albert Chen (AlbertChenKai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14382396/medium/375ae4397b5884ff0516d4eea525a0e8.jpeg",
- "joined": "2020-08-17 16:01:26"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 52,
- "target": 123,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720182",
- "username": "Mosaibah",
- "fullName": "Mosaibah",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720182/medium/abb7b48d789902353a50db327f236806.jpeg",
- "joined": "2021-04-20 20:35:56"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 52,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14492630",
- "username": "freonesuka",
- "fullName": "Андрей Вальтер (freonesuka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14492630/medium/0feb2d78f45cfdcb6f92f5061ffc44e8.jpg",
- "joined": "2021-10-07 21:10:51"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 52,
- "target": 56,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "15025129",
- "username": "willianpaixao",
- "fullName": "willianpaixao",
- "avatarUrl": "https://www.gravatar.com/avatar/2c3fa9a3959a870790d96b08e7fbce05?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 10:52:30"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 52,
- "target": 59,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554170",
- "username": "eriknoronha",
- "fullName": "Erik Noronha (eriknoronha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554170/medium/b6bf26ec67d0187f0829c5a6256d68b2.jpeg",
- "joined": "2020-12-28 20:07:58"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 52,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757574",
- "username": "anilgr.agr",
- "fullName": "anil gr (anilgr.agr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757574/medium/85827672f55103be185e54169d693067.jpeg",
- "joined": "2021-05-15 02:23:59"
- },
- "languages": [
- {
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 52,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591838",
- "username": "BohusKrypto",
- "fullName": "BohusKrypto",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591838/medium/10072388f5c8c36a68a3a573e671c583.jpg",
- "joined": "2021-02-08 09:06:48"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 52,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14147283",
- "username": "ABcryfi",
- "fullName": "ABcryfi",
- "avatarUrl": "https://www.gravatar.com/avatar/2c7d2007efe75e8dbb3193ba04fe6f30?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 17:18:50"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 52,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932861",
- "username": "kristinebui299",
- "fullName": "Kristine B (kristinebui299)",
- "avatarUrl": "https://www.gravatar.com/avatar/7ac4eab3f69b49953eaa21b3e968a496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 02:33:09"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 52,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817332",
- "username": "quietude.kid",
- "fullName": "quietude.kid",
- "avatarUrl": "https://www.gravatar.com/avatar/d150a330890d8a313a0841870c6ad4ff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 04:39:20"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 51,
- "target": 104,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14712126",
- "username": "maudmcok",
- "fullName": "Maud (maudmcok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712126/medium/9c0f3fa093a2a2354b275243d3061276.png",
- "joined": "2021-04-14 19:28:11"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 51,
- "target": 36,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "13978687",
- "username": "bellinas90",
- "fullName": "Jose Bell (bellinas90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978687/medium/97645182393553543eff0f6d2d313d8c.jpeg",
- "joined": "2019-09-10 09:47:38"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 51,
- "target": 55,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14780050",
- "username": "davidsard",
- "fullName": "David Sardinha (davidsard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780050/medium/a71a50629c8f17bbc5648dfc208157f8.png",
- "joined": "2021-05-31 09:34:58"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 51,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136073",
- "username": "daylimate",
- "fullName": "Daylimate r (daylimate)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136073/medium/fcebc001e053aae55f2f3c871907003d.jpg",
- "joined": "2020-02-26 16:57:57"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 51,
- "target": 73,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032613",
- "username": "3olotoy83",
- "fullName": "Rahmatullo Abdullaev (3olotoy83)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032613/medium/bbddc287052a26aacbc92b56388427c9.jpeg",
- "joined": "2021-11-27 04:51:10"
- },
- "languages": [
- {
- "id": "uz",
- "name": "Uzbek"
- }
- ],
- "translated": 50,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763374",
- "username": "untipollamadomarcelo",
- "fullName": "Marcelo Cornejo (untipollamadomarcelo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/6fada991f179e004707187b671444058.jpeg",
- "joined": "2021-08-14 03:27:04"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 50,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982589",
- "username": "cleber07.gab",
- "fullName": "Cleberson Gabriel (cleber07.gab)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982589/medium/0e324ff9259147b8e782e9545f17bbb4.jpeg",
- "joined": "2021-10-30 10:17:08"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 50,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022465",
- "username": "avolpe1998",
- "fullName": "avolpe1998",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022465/medium/0c46ffa5589448ece16b6ef83d7c2a1e.jpeg",
- "joined": "2021-11-19 05:08:51"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 50,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029193",
- "username": "xtrzy",
- "fullName": "xtrzy",
- "avatarUrl": "https://www.gravatar.com/avatar/18b91a7c8dc214ade6b3d23353b8cea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 09:14:16"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 50,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746732",
- "username": "asdealmeida1",
- "fullName": "Adam D. (asdealmeida1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746732/medium/41ad9e6c8c212d49a5e493167a43de8e.jpeg",
- "joined": "2021-05-09 02:13:17"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 50,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13366748",
- "username": "kendallcastillo4",
- "fullName": "Ken Castillo #Saiyan (#saiyan) (kendallcastillo4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13366748/medium/2661a6fda541b739a3f306da2e23ace1.jpg",
- "joined": "2021-04-04 05:06:25"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 50,
- "target": 52,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14880826",
- "username": "igenekim",
- "fullName": "GENE KIM (igenekim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880826/medium/321dd4c0081b9a2246cd14956dd1c36a.png",
- "joined": "2021-08-15 04:30:02"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 50,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648284",
- "username": "fgawlas2115",
- "fullName": "Muminek Zapasowy (fgawlas2115)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648284/medium/9d0d57ee2c4c97fce816dc11b4b0bb52.jpeg",
- "joined": "2021-03-01 15:00:44"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 50,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 17
- },
- {
- "user": {
- "id": "14656562",
- "username": "bryanalejandromedina",
- "fullName": "Bryan Medina (bryanalejandromedina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656562/medium/0750fe93463f7682ef9289e7d8fa3104.jpeg",
- "joined": "2021-03-06 20:49:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 49,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14803498",
- "username": "DeograciousAggrey",
- "fullName": "DeograciousAggrey",
- "avatarUrl": "https://www.gravatar.com/avatar/5c60d0cf9580eabc0799b3dc5ea5dec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 09:52:52"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 49,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035594",
- "username": "essame.samman",
- "fullName": "Essame Samman (essame.samman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035594/medium/7bed72a4e8e6db4496fcd670c99575c2.jpg",
- "joined": "2019-11-13 11:10:06"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 49,
- "target": 54,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 28
- },
- {
- "user": {
- "id": "13659341",
- "username": "nimapourazad52",
- "fullName": "Nima Pourazad (nimapourazad52)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13659341/medium/4ad7ae1e017a3fd4ddba1d1a8c30bb51.jpg",
- "joined": "2021-07-21 00:46:30"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 49,
- "target": 90,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14546022",
- "username": "TKHK4312",
- "fullName": "104 H17W1 (TKHK4312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546022/medium/1009bcdd2f3a11a1fdb5ff98ef1f0c50.jpeg",
- "joined": "2020-12-22 05:55:33"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 49,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "12816876",
- "username": "RicochetLT",
- "fullName": "RicochetLT",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12816876/medium/519ca5836fe261c023e5058f0a68e98d.png",
- "joined": "2021-10-12 07:07:27"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 49,
- "target": 93,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14291898",
- "username": "yc_93",
- "fullName": "Jordi Chu (yc_93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14291898/medium/0421ae76ef5b3e3f839b0c93a745f6c8.jpeg",
- "joined": "2020-06-05 09:42:15"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 49,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14265902",
- "username": "347720",
- "fullName": "David Husák (347720)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14265902/medium/134ecdbceb81b461a0de9212b6d361e5.jpeg",
- "joined": "2020-05-20 14:59:01"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 49,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020157",
- "username": "simplyfoodbiz",
- "fullName": "Смелый Стиль (simplyfoodbiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020157/medium/e87d1d7c1fed53ec6910d8515fe0afba.jpeg",
- "joined": "2021-11-17 10:56:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 49,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786426",
- "username": "Drmasoudrezaei",
- "fullName": "Dr Masoud Rezaei (Drmasoudrezaei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786426/medium/655a2e23f8fe6400cf5260b7ebd6f504.jpeg",
- "joined": "2021-06-04 16:20:27"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 49,
- "target": 557,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14042973",
- "username": "lujdzso",
- "fullName": "lujdzso",
- "avatarUrl": "https://www.gravatar.com/avatar/dbd707ffb0ae5db0e2255749897a27b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-26 16:04:48"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 49,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14605612",
- "username": "lzag",
- "fullName": "Aleksey Zagumennyi (lzag)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605612/medium/c577fe2d125311c10b6411962a209def.jpeg",
- "joined": "2021-02-02 06:59:17"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 49,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844128",
- "username": "abumalikamr",
- "fullName": "abumalikamr",
- "avatarUrl": "https://www.gravatar.com/avatar/341ead55964ea4cd1cd75ebfd3c3f4f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 09:44:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 49,
- "target": 48,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242960",
- "username": "AlexMetz",
- "fullName": "AlexMetz",
- "avatarUrl": "https://www.gravatar.com/avatar/e80ce0da4206ae158ca9e373977ca803?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 11:42:19"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 49,
- "target": 51,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14908081",
- "username": "luca.buglioli",
- "fullName": "Luca Buglioli (luca.buglioli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908081/medium/a6d00d2a7406dca4ec0b1c8557607f4d.png",
- "joined": "2021-09-03 17:29:36"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 48,
- "target": 53,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14060897",
- "username": "neeraj2000Kumar",
- "fullName": "Neeraj Kumar (neeraj2000Kumar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14060897/medium/434f70fb0e7f7e9ba044704d8ba2b668.jpeg",
- "joined": "2019-12-31 11:40:53"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 48,
- "target": 97,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750468",
- "username": "daniel26712671",
- "fullName": "daniel26712671",
- "avatarUrl": "https://www.gravatar.com/avatar/34da6c200642c609d9c95b3160539864?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 03:22:14"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 48,
- "target": 40,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14703186",
- "username": "giovanni.campagnoli",
- "fullName": "Giovanni Campagnoli (giovanni.campagnoli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703186/medium/44ae9c0792ba94297253ea6cebe4445d.jpg",
- "joined": "2021-04-08 08:29:43"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 48,
- "target": 53,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14929487",
- "username": "gutianyichn",
- "fullName": "gutianyichn",
- "avatarUrl": "https://www.gravatar.com/avatar/6aa15b2b5248c923eac9ccf554c8547a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 13:07:12"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 48,
- "target": 83,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952091",
- "username": "Revenant69",
- "fullName": "Revenant69",
- "avatarUrl": "https://www.gravatar.com/avatar/de707d601950e39bdbb890b93877660d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 06:40:46"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 48,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14254306",
- "username": "ChiKnCoop_",
- "fullName": "ChiKnCoop_",
- "avatarUrl": "https://www.gravatar.com/avatar/f8673cca6292f68d2a0c823c5ec95df2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 14:11:33"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 48,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14340146",
- "username": "axelrindle",
- "fullName": "Axel Rindle (axelrindle)",
- "avatarUrl": "https://www.gravatar.com/avatar/700121f3ea3d87e17a834e8b36fa2657?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 04:37:23"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 48,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14231160",
- "username": "twkgau",
- "fullName": "twkgau",
- "avatarUrl": "https://www.gravatar.com/avatar/78fa372c5283a44f48b49b0cbcf4bd42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-28 23:17:30"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 47,
- "target": 66,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844420",
- "username": "actgms",
- "fullName": "actgms",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844420/medium/db7256e7422c9fdc1fa99e46436b6b4d.jpeg",
- "joined": "2021-07-18 15:26:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 47,
- "target": 50,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13513343",
- "username": "IwAn11",
- "fullName": "IwAn11",
- "avatarUrl": "https://www.gravatar.com/avatar/a4816e34602d9fd985da36f8b9144514?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-23 11:13:38"
- },
- "languages": [
- {
- "id": "mk",
- "name": "Macedonian"
- }
- ],
- "translated": 47,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876410",
- "username": "dlphin",
- "fullName": "Pița Rareș (dlphin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876410/medium/e48734129bc32a7965b5c2f11bd36339.png",
- "joined": "2021-08-13 07:28:04"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 47,
- "target": 53,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 28,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14733510",
- "username": "Tessoroma",
- "fullName": "Tessoroma",
- "avatarUrl": "https://www.gravatar.com/avatar/3bb8ef05e13c17a8318ef6ab154fa1b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 19:26:23"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 47,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14779220",
- "username": "damienk",
- "fullName": "damienk",
- "avatarUrl": "https://www.gravatar.com/avatar/00a8722582bce7f61d6e74e2fd1c2471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 19:23:44"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 47,
- "target": 87,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14147269",
- "username": "OnoDK",
- "fullName": "Douglas Ono (OnoDK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14147269/medium/1944bd766c80e354ec3810fd4fb86115.jpeg",
- "joined": "2020-03-06 17:10:39"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 47,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897648",
- "username": "Verar093",
- "fullName": "Verar093",
- "avatarUrl": "https://www.gravatar.com/avatar/1c2ad271993412f703c043a0ef663e67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 00:25:15"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 47,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033057",
- "username": "reiko1991",
- "fullName": "Alessandra P. (reiko1991)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033057/medium/4a20c91eda2b109e3c3f3f12274cbb7c.png",
- "joined": "2021-11-27 12:19:18"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 47,
- "target": 45,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12375993",
- "username": "nobilistefano",
- "fullName": "istefano92 (nobilistefano)",
- "avatarUrl": "https://www.gravatar.com/avatar/1c7437a7fcac9b4202488c1eb882f4f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 18:28:34"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 47,
- "target": 36,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14047067",
- "username": "molecula451",
- "fullName": "Paul (molecula451)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14047067/medium/c9557eae6e796e2d6dbf0039bb95b7fc.jpeg",
- "joined": "2019-12-04 01:36:39"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 47,
- "target": 51,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14038506",
- "username": "ceynh212121",
- "fullName": "Emrah Basbug (ceynh212121)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14038506/medium/56c0c675c69229e868983b232d07edf7.jpeg",
- "joined": "2019-11-18 18:26:53"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 47,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 17
- },
- {
- "user": {
- "id": "14890296",
- "username": "sehitzler",
- "fullName": "Sebastian Hitzler (sehitzler)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890296/medium/404ffc28f8996aa26eb3ce5bdc1e3d3f.png",
- "joined": "2021-08-21 10:43:39"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 47,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949095",
- "username": "goodhat",
- "fullName": "goodhat",
- "avatarUrl": "https://www.gravatar.com/avatar/cec995a4caf856ac5949ed264fc57029?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 01:30:04"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 47,
- "target": 106,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670272",
- "username": "JulienMuggli",
- "fullName": "Julien Muggli (JulienMuggli)",
- "avatarUrl": "https://www.gravatar.com/avatar/a59c8646c23ffc82c3e26019e602f2c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 02:59:18"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 46,
- "target": 51,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837068",
- "username": "parpok",
- "fullName": "Patryk (parpok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837068/medium/ac82c254eca9f7c56757c56079b775c2.png",
- "joined": "2021-07-12 16:30:54"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 46,
- "target": 393,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14493582",
- "username": "ibLeDy",
- "fullName": "Iago Alonso (ibLeDy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14493582/medium/df1bec608e42094e00afb3578fe423f6.jpeg",
- "joined": "2020-12-27 16:55:33"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 46,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 35
- },
- {
- "user": {
- "id": "14778976",
- "username": "Jakob_Farian_Krarup",
- "fullName": "Jakob Farian Krarup (Jakob_Farian_Krarup)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778976/medium/b0d2bc0c4bb05f9c8da4fac5af6acd5b.jpeg",
- "joined": "2021-05-30 15:24:56"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 46,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572258",
- "username": "trimegistra",
- "fullName": "MAR TRIMEGISTRA (trimegistra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572258/medium/b0e967b555a190ecb3bf0045ffc8deed.jpeg",
- "joined": "2021-01-11 07:47:21"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 46,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 28
- },
- {
- "user": {
- "id": "14082329",
- "username": "Binh0103",
- "fullName": "Binh0103",
- "avatarUrl": "https://www.gravatar.com/avatar/afea9cb2f068a8958cba2e7f997985d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-19 19:50:18"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 46,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562420",
- "username": "TunahanMurat",
- "fullName": "Tunahan Murat (TunahanMurat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562420/medium/1ada228f288ba76ea5984273822e32bc.jpeg",
- "joined": "2021-01-04 11:02:48"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 45,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14848404",
- "username": "Andreccr",
- "fullName": "Andreccr",
- "avatarUrl": "https://www.gravatar.com/avatar/15114d1438719a62279c133fda3e78be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 20:11:31"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 45,
- "target": 44,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000323",
- "username": "aryoharris9a",
- "fullName": "Aryo Haris Wirakusuma (aryoharris9a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000323/medium/fffd3847d1ccffc61f4eeea7cab07f36.jpeg",
- "joined": "2021-11-12 07:31:12"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 45,
- "target": 49,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14227432",
- "username": "JustCaptcha",
- "fullName": "Albert (JustCaptcha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227432/medium/3c87c50e7fdf0a9933ddc3a7c41b7ac8.png",
- "joined": "2020-04-26 19:47:48"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 45,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14941689",
- "username": "JossVog",
- "fullName": "José Bernal (JossVog)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14941689/medium/bda6c6857a8faad62b2e05e88afec386.png",
- "joined": "2021-09-28 08:53:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 45,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14356614",
- "username": "punheo1176411",
- "fullName": "Heo Nguyễn (punheo1176411)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14356614/medium/9c7c8c06efe1591e849d1501c6784590.jpeg",
- "joined": "2020-07-26 13:53:08"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 44,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14738726",
- "username": "Chias0",
- "fullName": "Chias0",
- "avatarUrl": "https://www.gravatar.com/avatar/f3512c352a022105f9094848fcbf8e70?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 02:57:27"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 44,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "13388084",
- "username": "tom.savela",
- "fullName": "Slipstejn (tom.savela)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13388084/medium/d60a2780076220b818dd3e5fc713340b.jpg",
- "joined": "2020-07-30 14:24:39"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 44,
- "target": 40,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14996665",
- "username": "slowwdev",
- "fullName": "slow (slowwdev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996665/medium/d9d39ce06d506da97c2bad107ed016c5.png",
- "joined": "2021-11-09 14:37:36"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 44,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001441",
- "username": "supercode",
- "fullName": "kevin lee (supercode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001441/medium/f08615f09b6d388db02efbc751ca3f77.png",
- "joined": "2021-11-13 04:31:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 44,
- "target": 45,
- "approved": 0,
- "voted": 49,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634606",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/2a25ef4e6179f642d2ff748a1616cd5f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 11:30:46"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 44,
- "target": 55,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "14897560",
- "username": "LilyX0309",
- "fullName": "Lily Zhou (LilyX0309)",
- "avatarUrl": "https://www.gravatar.com/avatar/7a33ca1183c03e2e9df2ba74129f4e56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 22:37:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 44,
- "target": 76,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000715",
- "username": "rodgeraraujo",
- "fullName": "Rogerio Araújo (rodgeraraujo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000715/medium/1f83cb72b3024f8d05bb7f445712ad07.jpeg",
- "joined": "2019-10-02 08:39:36"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 43,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788998",
- "username": "ccosds",
- "fullName": "ccosds",
- "avatarUrl": "https://www.gravatar.com/avatar/06ab597f272f96e88582faca01cb1cb5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 23:51:31"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 43,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684396",
- "username": "imanpo",
- "fullName": "imanpo",
- "avatarUrl": "https://www.gravatar.com/avatar/8c88f8719c37d257cfa7ae72edd69a27?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-26 08:04:07"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 43,
- "target": 58,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 14,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699102",
- "username": "matiapa",
- "fullName": "Matías Apablaza (matiapa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699102/medium/31f4ce23d48d93b6e6d1c1d3f3a8cc18.jpeg",
- "joined": "2021-04-05 19:50:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 43,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594664",
- "username": "tintokaradin",
- "fullName": "Tinto Karadin (tintokaradin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594664/medium/80d1ab062af1d4539b5eb9e1a45345e8.jpeg",
- "joined": "2021-01-26 04:25:31"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 43,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812604",
- "username": "tjesco75",
- "fullName": "tjesco75",
- "avatarUrl": "https://www.gravatar.com/avatar/f9269b3383b308eae1ca50ae7ac3b85c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-23 10:39:41"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 42,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766386",
- "username": "shamekhi.ali",
- "fullName": "ali shamekhi (shamekhi.ali)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766386/medium/5a6c7247fbce5af5ba2830e1b988f2c6.png",
- "joined": "2021-05-21 01:29:17"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 42,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564674",
- "username": "max.jatmanov",
- "fullName": "Max Jatmanov (max.jatmanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564674/medium/de3304771bd8b32c063e6567dbccf637.png",
- "joined": "2021-01-06 01:09:16"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 42,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809902",
- "username": "vezga",
- "fullName": "vezga san (vezga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809902/medium/675a032e3202a461706fb2a350572bc5.png",
- "joined": "2021-06-21 16:17:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 42,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999609",
- "username": "metlyakova",
- "fullName": "Alisa Metlyakova (metlyakova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999609/medium/2447d5841fbb956f3d44eea295f09b65.jpeg",
- "joined": "2021-11-11 17:57:15"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 42,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14761864",
- "username": "stevensun9046",
- "fullName": "Steven Sun (stevensun9046)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761864/medium/040069d06c6dc89e287ef60bde6c7968.png",
- "joined": "2021-05-18 02:15:22"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 42,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 23
- },
- {
- "user": {
- "id": "14989289",
- "username": "KriptoBunny",
- "fullName": "KriptoBunny",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989289/medium/ab471be1fda9094f666fd76082600690.jpg",
- "joined": "2021-11-03 19:14:17"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 42,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14053950",
- "username": "kalentinvs",
- "fullName": "Валентин Коломенский (kalentinvs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14053950/medium/eabb0addc1168ebfecf4bf4715c233dd.jpeg",
- "joined": "2020-03-05 08:43:19"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 41,
- "target": 38,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999027",
- "username": "Oetomo",
- "fullName": "Oetomo",
- "avatarUrl": "https://www.gravatar.com/avatar/d4f8b6842ce7edb993915c0d6ccf2752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 08:50:27"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 41,
- "target": 40,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786918",
- "username": "shuaishao",
- "fullName": "Shuai Shao (shuaishao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786918/medium/683fae422ad7adbf5241cbfbfd5d08f9.png",
- "joined": "2021-06-05 04:22:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 41,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14870630",
- "username": "a8832021",
- "fullName": "a8832021",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14870630/medium/b36889c699124e54c6b781e3ba477726.png",
- "joined": "2021-08-08 00:51:30"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 41,
- "target": 107,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830540",
- "username": "Keonez",
- "fullName": "Joe Tribbiani (Keonez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830540/medium/0c57d4c791795b7bcdc9f6775936ef7a.gif",
- "joined": "2021-07-07 08:10:21"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 41,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14674186",
- "username": "yan.ex10si0n",
- "fullName": "Ex10si0n Yan (yan.ex10si0n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674186/medium/54d9df12345cb68993f1227afde2e10e.jpeg",
- "joined": "2021-03-19 04:24:25"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 41,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "14647722",
- "username": "Dr747",
- "fullName": "Jonathan Steiner (Dr747)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647722/medium/ecc33964ace94b3d24bda90f46eb8e7d.png",
- "joined": "2021-03-01 08:34:51"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 41,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13577083",
- "username": "editor-Ajian",
- "fullName": "editor-Ajian",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13577083/medium/48cf1f040e4eba541c0d759d1a94f417.png",
- "joined": "2019-09-15 22:29:39"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 41,
- "target": 85,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600562",
- "username": "ahmad.tajadod",
- "fullName": "Ahmad Ziaie Tajadod (ahmad.tajadod)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600562/medium/64136d796dede4d921c19e6bac7fa127.jpeg",
- "joined": "2021-01-29 15:28:43"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 40,
- "target": 50,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14197086",
- "username": "ericvt",
- "fullName": "ericvt",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197086/medium/f9f0b4ccf0c1a374ba2f208be1f7e061.JPG",
- "joined": "2021-01-27 14:13:05"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 40,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553452",
- "username": "aliguvez",
- "fullName": "Ali Guvez (aliguvez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553452/medium/3b3e2896659055ac72f48e3ae3c1b60e.jpg",
- "joined": "2021-01-08 06:07:12"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 40,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "14822732",
- "username": "kingway",
- "fullName": "Jingwei Zou (kingway)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822732/medium/5fbcf45bc14f5cbe8d207e8adee7bfc1.jpeg",
- "joined": "2021-07-01 06:36:31"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 40,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023359",
- "username": "empresamorclo",
- "fullName": "Morclo Empresa (empresamorclo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023359/medium/3370355ea7d096ade0905d238a24f26a.png",
- "joined": "2021-11-19 20:48:18"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 40,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729442",
- "username": "dddpower",
- "fullName": "HS J (dddpower)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729442/medium/0914935a24ff8326fedeab8863ffe8a7.jpg",
- "joined": "2021-05-24 21:41:20"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 40,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708840",
- "username": "dsantin95",
- "fullName": "dsantin95",
- "avatarUrl": "https://www.gravatar.com/avatar/f54449d40f99af23a219cfdf97eb7113?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 12:38:20"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 40,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787090",
- "username": "Sim0n",
- "fullName": "Sim0n",
- "avatarUrl": "https://www.gravatar.com/avatar/5c818046bf8ff41c9022c66788021066?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 07:20:42"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 39,
- "target": 35,
- "approved": 0,
- "voted": 818,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14855548",
- "username": "bayt",
- "fullName": "bayt",
- "avatarUrl": "https://www.gravatar.com/avatar/3053a78ca2d0c5091d982c9806e9e2a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 17:24:09"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 39,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805590",
- "username": "liushooter",
- "fullName": "liushooter",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805590/medium/a79b39967e3163a23f1aa233b780ac69.jpg",
- "joined": "2021-06-18 12:57:28"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 39,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14566952",
- "username": "darienmhc",
- "fullName": "Juan Darien Macías Hernández (darienmhc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566952/medium/1a8b3d25d4b5fb8654789c42dcd0d62c.jpeg",
- "joined": "2021-01-07 12:44:04"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 39,
- "target": 51,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 0,
- "winning": 34
- },
- {
- "user": {
- "id": "14613430",
- "username": "peskymoskq",
- "fullName": "John Call (peskymoskq)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14613430/medium/08d761ba5fee0a0eb372042435f17e58.png",
- "joined": "2021-02-07 09:12:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 39,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14510648",
- "username": "mexmas",
- "fullName": "mexmas",
- "avatarUrl": "https://www.gravatar.com/avatar/162cc4b4f3d25644baeb3fb7a71885fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-25 14:45:44"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 39,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14915807",
- "username": "tsangz189",
- "fullName": "tsangz189",
- "avatarUrl": "https://www.gravatar.com/avatar/f00088ffdad322e46c3e2eb701b4d192?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 12:37:18"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 39,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14753060",
- "username": "sibelkya1985",
- "fullName": "Brawl çoçuk (sibelkya1985)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753060/medium/14153a201ce927e2093b4d04f4934ada.png",
- "joined": "2021-05-12 12:19:57"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 39,
- "target": 39,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740026",
- "username": "nikunjsixteen",
- "fullName": "Nikunj Prajapati (nikunjsixteen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740026/medium/0272b374779158ad11c0b85811365104.png",
- "joined": "2021-05-05 23:37:16"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 39,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741046",
- "username": "korelaydogdu.ist",
- "fullName": "Korel Aydoğdu (korelaydogdu.ist)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741046/medium/72deb5cb8583d0d6ef9d91c10ba1af34.jpeg",
- "joined": "2021-05-06 14:18:39"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 39,
- "target": 102,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14360544",
- "username": "jasz3217",
- "fullName": "jasz3217",
- "avatarUrl": "https://www.gravatar.com/avatar/9b3d429ac54ba9dc9240bf77d0166b2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-29 22:55:33"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 39,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708254",
- "username": "nilsdethlefsen",
- "fullName": "nilsdethlefsen",
- "avatarUrl": "https://www.gravatar.com/avatar/5c1b5ce5f7a6b8c097158de47f6e8bc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 05:05:49"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 38,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559632",
- "username": "lvchnk88",
- "fullName": "Sergii Levchenko (lvchnk88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559632/medium/2f466f4630615ab7f0494094c24736e9.jpeg",
- "joined": "2021-01-02 12:09:29"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 38,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 8
- },
- {
- "user": {
- "id": "14022613",
- "username": "Ashley.li",
- "fullName": "Ashley.li",
- "avatarUrl": "https://www.gravatar.com/avatar/034f5cf453826439c38da40a65993c7a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-28 05:05:30"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- },
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "no",
- "name": "Norwegian"
- },
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- },
- {
- "id": "ig",
- "name": "Igbo"
- }
- ],
- "translated": 38,
- "target": 34,
- "approved": 1854,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14646244",
- "username": "mrsunchen0110",
- "fullName": "chen sun (mrsunchen0110)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646244/medium/ced9415dcbce7bb8ea9ded3d7d4809ff.jpg",
- "joined": "2021-02-28 10:18:48"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 38,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14903096",
- "username": "blue_mrvn",
- "fullName": "blue_mrvn",
- "avatarUrl": "https://www.gravatar.com/avatar/690f1eaca7256dfdc02abdd51ec4f4b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 06:33:53"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 38,
- "target": 36,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729514",
- "username": "kylin7647",
- "fullName": "顾轻言 (kylin7647)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729514/medium/86176f28da9e30f87eec5e8dd06df954.jpeg",
- "joined": "2021-04-28 02:52:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 38,
- "target": 88,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 28
- },
- {
- "user": {
- "id": "14822228",
- "username": "nTaco",
- "fullName": "nTaco",
- "avatarUrl": "https://www.gravatar.com/avatar/38cbc3eeebaf79b33d9901249efad48f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-30 20:25:12"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 38,
- "target": 111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908477",
- "username": "pamir04",
- "fullName": "pamir04",
- "avatarUrl": "https://www.gravatar.com/avatar/d0aa145db5cf0cb5ae0d4f30f63284e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-04 03:33:22"
- },
- "languages": [
- {
- "id": "tg",
- "name": "Tajik"
- }
- ],
- "translated": 38,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002503",
- "username": "xuqiaose",
- "fullName": "Qiao se Xu (xuqiaose)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002503/medium/e5d866fa06f7598f347de663345aff21.png",
- "joined": "2021-11-13 22:38:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 38,
- "target": 43,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14196954",
- "username": "vincenzo-bg",
- "fullName": "Винченцо (vincenzo-bg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14196954/medium/5e276e009f3b962a942aee8dbf1346b5.jpeg",
- "joined": "2021-05-09 18:38:14"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 38,
- "target": 38,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718510",
- "username": "truewarlock",
- "fullName": "Truewarlock (truewarlock)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718510/medium/ee2b5821e0cfda1fb4e191cb0e3d89be.png",
- "joined": "2021-04-19 16:35:50"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 38,
- "target": 43,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804278",
- "username": "edier022",
- "fullName": "edier022",
- "avatarUrl": "https://www.gravatar.com/avatar/2d827e020ed536385d790dd0c1eaff03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 19:02:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 38,
- "target": 42,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035167",
- "username": "airidassomka",
- "fullName": "Airidas Šomka (airidassomka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035167/medium/55db96bd735658814900ddae0754991e.jpeg",
- "joined": "2019-11-12 14:47:28"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 38,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650788",
- "username": "dealwith",
- "fullName": "hand some (dealwith)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650788/medium/6a56dbc2e5fbd0b589bcf21209042347.jpeg",
- "joined": "2021-03-03 01:50:38"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 38,
- "target": 69,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14709216",
- "username": "iliyaashrafi",
- "fullName": "iliyaashrafi",
- "avatarUrl": "https://www.gravatar.com/avatar/71c700fd076a14976925411a9716706f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 19:36:03"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 38,
- "target": 57,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959105",
- "username": "emmtnnx",
- "fullName": "EMMTNNX (emmtnnx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959105/medium/e2785b9e5fd171ccf129563a19844fd9.jpeg",
- "joined": "2021-10-11 22:09:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 37,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "13894501",
- "username": "yuchtyan",
- "fullName": "yuchtyan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13894501/medium/beb50eb157c8ed6305719b269fe5e56d.png",
- "joined": "2021-08-28 20:26:22"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 37,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966129",
- "username": "ratthakorn99",
- "fullName": "ratthakorn (ratthakorn99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966129/medium/9c1a435a52439cb6f587dae5ec765144.jpg",
- "joined": "2021-10-17 16:38:26"
- },
- "languages": [
- {
- "id": "br-FR",
- "name": "Breton"
- }
- ],
- "translated": 37,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969403",
- "username": "hongthaipro",
- "fullName": "Phạm Hồng Thái (hongthaipro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969403/medium/19300e3d649b1ad84292b1d4493307d6.jpeg",
- "joined": "2021-10-20 03:40:15"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 37,
- "target": 53,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13459452",
- "username": "nwongnor",
- "fullName": "Heart Beach (nwongnor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13459452/medium/428ad434e95cd784ff7864593f3c37e6.jpg",
- "joined": "2019-11-23 21:51:49"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 37,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637016",
- "username": "maole",
- "fullName": "maole",
- "avatarUrl": "https://www.gravatar.com/avatar/64c0a27d29a81099cacb505ba3e954b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 11:03:10"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 37,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961487",
- "username": "juancruz.ar",
- "fullName": "juancruz.ar",
- "avatarUrl": "https://www.gravatar.com/avatar/61863283feb1092d4658810e0354abb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 15:38:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 37,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 37
- },
- {
- "user": {
- "id": "14673606",
- "username": "ginaborgiani",
- "fullName": "Gina Borgiani (ginaborgiani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673606/medium/2d654f00b5f5bedb8a4692815772641f.jpg",
- "joined": "2021-04-09 18:15:57"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 37,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567240",
- "username": "jj123",
- "fullName": "정민석 (jj123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567240/medium/8411a1f4e4e3b3f982889f724c282c5a.jpg",
- "joined": "2021-01-07 17:39:23"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 36,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642418",
- "username": "nailsahin85",
- "fullName": "Nail Şahin (nailsahin85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642418/medium/dddfec0190d3ec04d464182f0e8e0cd9.jpeg",
- "joined": "2021-02-25 15:50:07"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 36,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026429",
- "username": "robin.thonhaugen11",
- "fullName": "robin thonhaugen (robin.thonhaugen11)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026429/medium/a8585ab9f4c29cee70147de56d7e73b0.png",
- "joined": "2021-11-22 11:27:40"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 36,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862718",
- "username": "anh_khoa",
- "fullName": "lilkwa (anh_khoa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862718/medium/17d111d400d4ab22af931aec7e495066.png",
- "joined": "2021-08-02 04:55:08"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 36,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600024",
- "username": "Klayer89",
- "fullName": "Klay Er (Klayer89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600024/medium/8ae92291801f1578f0cd335bc68d68f3.jpeg",
- "joined": "2021-01-29 08:49:46"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 35,
- "target": 41,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14357214",
- "username": "sensational.aziz",
- "fullName": "Aziz Kenjaev (sensational.aziz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357214/medium/7618d3f6cc496443c61213b14c28b12d.jpeg",
- "joined": "2020-07-27 14:41:58"
- },
- "languages": [
- {
- "id": "tg",
- "name": "Tajik"
- }
- ],
- "translated": 35,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14700534",
- "username": "aallaladil",
- "fullName": "adil aallal (aallaladil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14700534/medium/d018c1dc2d3f4d8b026bfd24c106f481.jpg",
- "joined": "2021-04-06 14:35:46"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 35,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681496",
- "username": "meecit",
- "fullName": "meecit",
- "avatarUrl": "https://www.gravatar.com/avatar/9e658bd4c94b654695626f0dbf66588f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-08 10:22:12"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 35,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750504",
- "username": "rishitsaraf",
- "fullName": "rishitsaraf",
- "avatarUrl": "https://www.gravatar.com/avatar/06113f768b3e9b14f98d0d5bacf49201?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 03:47:00"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 35,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819110",
- "username": "MahaveerD",
- "fullName": "Mahaveer Devabalan (MahaveerD)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819110/medium/fd3d7232bac14f74005e788dbb2e0ae7.jpeg",
- "joined": "2021-06-28 13:28:45"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 35,
- "target": 58,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14345994",
- "username": "herman90sidra",
- "fullName": "Herman Sidra (herman90sidra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14345994/medium/256b0667339ff6b587fefce7bf923937.jpeg",
- "joined": "2020-07-17 02:47:51"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 35,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14917397",
- "username": "ijann_",
- "fullName": "ijann_",
- "avatarUrl": "https://www.gravatar.com/avatar/af23c70f2e300427aad5461a15b2dc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 15:48:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 35,
- "target": 31,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14013137",
- "username": "Daniele02_777",
- "fullName": "Daniele02_777",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14013137/medium/2c6e3ce0c561d62061fe261d40d95453.jpg",
- "joined": "2019-12-04 14:09:55"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 35,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14985297",
- "username": "nicoin39",
- "fullName": "nicoin39",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985297/medium/a162dafaeba29430c0df4a824a66fc2f.jpg",
- "joined": "2021-11-01 08:56:11"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 35,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13583128",
- "username": "nikaose",
- "fullName": "nikaose",
- "avatarUrl": "https://www.gravatar.com/avatar/8797df9c6783cbd1053c886e2916af38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 16:47:05"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 34,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663084",
- "username": "aakashag",
- "fullName": "aakashag",
- "avatarUrl": "https://www.gravatar.com/avatar/1918cee3fb5ee945da642b1413893976?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 06:50:25"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 34,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629988",
- "username": "liam.comma",
- "fullName": "Liam Harris (liam.comma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14629988/medium/861e1c28e0f96300796c9d6feb1cfb01.jpeg",
- "joined": "2021-02-18 08:49:30"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 34,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826354",
- "username": "manzin",
- "fullName": "manzin",
- "avatarUrl": "https://www.gravatar.com/avatar/b20136210328d604d9cd396ecb7e012d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 03:53:01"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 34,
- "target": 42,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725086",
- "username": "Ackermann",
- "fullName": "Ackermann",
- "avatarUrl": "https://www.gravatar.com/avatar/55f6733f811a59351c943a13950dc228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 13:18:19"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 34,
- "target": 44,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 24
- },
- {
- "user": {
- "id": "14653772",
- "username": "ahmedebraright",
- "fullName": "Ahmed Ashour (ahmedebraright)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653772/medium/f5bc7c93cf9d8a28a22d0a02e78483d5.jpg",
- "joined": "2021-03-04 21:24:38"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 34,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609078",
- "username": "Kaersaan",
- "fullName": "Kaersaan",
- "avatarUrl": "https://www.gravatar.com/avatar/af98b93ce5a2f27c56ed437a3c08902e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 11:04:04"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 34,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 34
- },
- {
- "user": {
- "id": "14688548",
- "username": "bhmot",
- "fullName": "bhmot",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688548/medium/b05f4b0863b36f2784532e50edab498a.png",
- "joined": "2021-03-29 10:33:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 34,
- "target": 29,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021217",
- "username": "senthilvenkat",
- "fullName": "Venkatachalam (senthilvenkat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021217/medium/5b98edb188f1d3de5516a85f4c0d8348.png",
- "joined": "2021-11-18 07:32:47"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 34,
- "target": 61,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690192",
- "username": "marktest",
- "fullName": "marktest",
- "avatarUrl": "https://www.gravatar.com/avatar/9ffdace96acb8997dfe5611dd2d1a226?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 07:12:10"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 34,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709432",
- "username": "s.c.macchiato",
- "fullName": "Haruka Kawamura (s.c.macchiato)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709432/medium/cdfb5efd65d125af9b5d5a1d17d039f8.jpeg",
- "joined": "2021-09-29 00:06:44"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 34,
- "target": 93,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811672",
- "username": "Pois",
- "fullName": "Pois",
- "avatarUrl": "https://www.gravatar.com/avatar/cb689198fe8c6b621ba3c281df1c8041?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-22 16:58:17"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 33,
- "target": 35,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656714",
- "username": "ireverdu",
- "fullName": "Iván Revuelta (ireverdu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656714/medium/2c80d8f4dbba229f35d95960783e80da.jpeg",
- "joined": "2021-03-07 00:57:40"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 33,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14784092",
- "username": "akarakuzu8",
- "fullName": "Ahmet Karakuzu (akarakuzu8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784092/medium/c6dc90c8ae877bc5304606836ad5379d.png",
- "joined": "2021-06-03 03:18:10"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 33,
- "target": 29,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682072",
- "username": "FORGIS98",
- "fullName": "FORGIS98",
- "avatarUrl": "https://www.gravatar.com/avatar/705db25dd7e14055044b663c8e50aa14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 14:39:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 33,
- "target": 22,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13937453",
- "username": "umeshjha1998",
- "fullName": "Umesh Jha (umeshjha1998)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13937453/medium/11a2603b1de4e5ee8da759de59f6df47.jpg",
- "joined": "2021-08-09 15:28:33"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 33,
- "target": 52,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779700",
- "username": "viktolas",
- "fullName": "Victor B (viktolas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779700/medium/b093f2503629b02618afc9e43f1ec486.jpeg",
- "joined": "2021-05-31 05:16:22"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 33,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 22,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "15029781",
- "username": "B0nst3r",
- "fullName": "B0nst3r",
- "avatarUrl": "https://www.gravatar.com/avatar/7275eb6c8622d46317cbbc160c0ac843?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 19:58:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 32,
- "target": 26,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002823",
- "username": "sdominguez894",
- "fullName": "Sergio Domínguez (sdominguez894)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002823/medium/1d1caae3bcae5e7a54ddaa3a4b15784b.jpeg",
- "joined": "2021-11-14 06:40:59"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 32,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14290942",
- "username": "abhinavmir",
- "fullName": "abhinavmir",
- "avatarUrl": "https://www.gravatar.com/avatar/064ce2e5276115a7f4435299d5367801?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-04 16:54:07"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 32,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708432",
- "username": "karozkan",
- "fullName": "Özkan Göktaş (karozkan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708432/medium/fb9fc661d43315af3a7ed65bf1bedc04.jpeg",
- "joined": "2021-04-12 07:30:22"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 32,
- "target": 24,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 32
- },
- {
- "user": {
- "id": "14714636",
- "username": "dvincent157",
- "fullName": "David Vincent (dvincent157)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714636/medium/9f04d33ad23f86ccf3a50ed2ef84e3ef.png",
- "joined": "2021-04-16 13:17:13"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 32,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "13986271",
- "username": "ybb",
- "fullName": "Yiğit Burak (ybb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986271/medium/805f65ce273d713fc7c68735b4bc2e7b.jpg",
- "joined": "2021-03-18 08:39:02"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 32,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 32
- },
- {
- "user": {
- "id": "14974629",
- "username": "wesrajoko",
- "fullName": "Abu Hurairah (wesrajoko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974629/medium/406715c01abd6f63b289c0254935cb88.png",
- "joined": "2021-10-24 12:03:09"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 32,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759828",
- "username": "FSJGus",
- "fullName": "Gustavo Lima (FSJGus)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759828/medium/2ab0d05afed7232420ed8bb10abe5513.jpeg",
- "joined": "2021-05-16 15:45:38"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 32,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14402624",
- "username": "Tom5656",
- "fullName": "Supoht jobdee (Tom5656)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14402624/medium/c48ee62c7d3e37b9d60d426139546da7.jpg",
- "joined": "2020-09-04 12:30:04"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 32,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14181997",
- "username": "samuel.brb19",
- "fullName": "un_sam _sauvage (samuel.brb19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14181997/medium/0aaf4c266fa4700ccec8bcadb09440b6.jpg",
- "joined": "2021-03-30 17:48:08"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 32,
- "target": 38,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14905975",
- "username": "Hendrik07",
- "fullName": "Hendrik07",
- "avatarUrl": "https://www.gravatar.com/avatar/4564777ac0df36d91cad47153846aef1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 08:35:45"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 32,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14719400",
- "username": "SammyJkns",
- "fullName": "SammyJkns",
- "avatarUrl": "https://www.gravatar.com/avatar/0fb696919afd133eb20ef7beffe4c1f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 08:12:41"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 32,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14596176",
- "username": "a22864",
- "fullName": "a22864",
- "avatarUrl": "https://www.gravatar.com/avatar/81f6a5db40cd8a13e64f05be2c9ac701?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-27 02:37:26"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 32,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "12857382",
- "username": "antimonus",
- "fullName": "antimonus",
- "avatarUrl": "https://www.gravatar.com/avatar/0190b7865417356ee99a32f278bd94be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 07:25:33"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 32,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14756100",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/3f6a99a487a2c1609b0634f04135bf78?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 10:19:42"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 32,
- "target": 36,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655082",
- "username": "Yazan110adas",
- "fullName": "Yazan110adas",
- "avatarUrl": "https://www.gravatar.com/avatar/181369d841c43c188072085712d5bcf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 17:12:05"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 31,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743704",
- "username": "MarceloPires",
- "fullName": "MarceloPires",
- "avatarUrl": "https://www.gravatar.com/avatar/9cd294b0c554a93f5324d9f09fd9fb59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 10:12:34"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 31,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748368",
- "username": "i-shivamsoni",
- "fullName": "Shivam Soni (i-shivamsoni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748368/medium/e03c2dbecb8b847dac210c562882112b.jpeg",
- "joined": "2021-11-25 05:21:14"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 31,
- "target": 55,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14898212",
- "username": "tubelightmediaworks",
- "fullName": "Tubelight Mediaworks (tubelightmediaworks)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14898212/medium/38ce60e4d7795a5a9f5f0e6995aaa96a.png",
- "joined": "2021-08-27 10:02:47"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 31,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564272",
- "username": "liyifan333",
- "fullName": "liyifan333",
- "avatarUrl": "https://www.gravatar.com/avatar/baf6804715a59ecade94ac8926221e5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-05 16:34:51"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 31,
- "target": 61,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 18,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14823390",
- "username": "bitgalea",
- "fullName": "bitgalea",
- "avatarUrl": "https://www.gravatar.com/avatar/1125e27372dbf2c2f39bd22d7bff7752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 14:56:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 31,
- "target": 29,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13839387",
- "username": "lenhung9171",
- "fullName": "thi hong nhung le (lenhung9171)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13839387/medium/c76f0542f471c21514c999658555c994.jpg",
- "joined": "2019-12-13 06:12:33"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 31,
- "target": 29,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 7
- },
- {
- "user": {
- "id": "14185891",
- "username": "HuKuTo",
- "fullName": "HuKuTo",
- "avatarUrl": "https://www.gravatar.com/avatar/8608ffc699fa08df5a3c15fc271ad96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-02 05:33:27"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 31,
- "target": 33,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643044",
- "username": "anezdoank03",
- "fullName": "Muhammad Ariesta (anezdoank03)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643044/medium/e24977172eb4534e13257568b1fe6e93.jpeg",
- "joined": "2021-02-26 02:22:19"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 31,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725992",
- "username": "gkhnatc80",
- "fullName": "Gökhan Atıcı (gkhnatc80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725992/medium/738fc97226613aced2536303eff2ff22.jpeg",
- "joined": "2021-04-25 09:40:07"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 31,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14048477",
- "username": "N-C-M",
- "fullName": "Neenu Chacko (N-C-M)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048477/medium/da5258d8f19d1a2a0b643904d7246453.png",
- "joined": "2019-12-06 12:35:48"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 31,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14980727",
- "username": "francismaduro",
- "fullName": "francismaduro",
- "avatarUrl": "https://www.gravatar.com/avatar/6317d5bd489d8ca570ea2954ea7475db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 04:02:18"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 31,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545266",
- "username": "kilion",
- "fullName": "kilion",
- "avatarUrl": "https://www.gravatar.com/avatar/43a7307f28765065183496715847b48a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 14:47:28"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 31,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14677802",
- "username": "Esteban_Piedrah",
- "fullName": "Esteban_Piedrah",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677802/medium/407d37cc5288c7db6ff35ae7d6791aa8.jpg",
- "joined": "2021-03-21 19:46:49"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 30,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748012",
- "username": "bagetlincoln",
- "fullName": "Baget 2024 (bagetlincoln)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748012/medium/ecacbbf86d5eaac6e3faa22da423d949.png",
- "joined": "2021-05-09 16:50:10"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 30,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551086",
- "username": "SMreussite",
- "fullName": "SMreussite",
- "avatarUrl": "https://www.gravatar.com/avatar/04fbb262ac93a36e418011d4894c7990?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 10:28:23"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 30,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14825546",
- "username": "ph4ni",
- "fullName": "Phanindra (ph4ni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825546/medium/34f82ec0a369275b6764b4d12b91cf48.png",
- "joined": "2021-07-03 09:10:07"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 30,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14021891",
- "username": "hadi.jami",
- "fullName": "Hadi Jami (hadi.jami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14021891/medium/44cc377b4fc43a3e13c36a754b5a469b.jpeg",
- "joined": "2020-02-01 04:12:41"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 30,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033497",
- "username": "programonauta",
- "fullName": "programonauta",
- "avatarUrl": "https://www.gravatar.com/avatar/358ba475fad48e1783afe977706d1c7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 22:51:45"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 30,
- "target": 34,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14378524",
- "username": "toya8118",
- "fullName": "Sorasuk Sakon (toya8118)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14378524/medium/9c73355a594a13b26d97fb4af23b4621.jpg",
- "joined": "2020-08-14 04:02:01"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 30,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568988",
- "username": "Emanuele.Migliazzo",
- "fullName": "Emanuele.Migliazzo",
- "avatarUrl": "https://www.gravatar.com/avatar/19e499fecfc2110fa41d5f9c6cca5b09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 01:36:46"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 30,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14432240",
- "username": "pedroocalado",
- "fullName": "Pedro Calado (pedroocalado)",
- "avatarUrl": "https://www.gravatar.com/avatar/ddcc06f414afca43cae54ab7b8089dcc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-25 17:49:28"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 30,
- "target": 36,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101339",
- "username": "arketipicos",
- "fullName": "arketipicos",
- "avatarUrl": "https://www.gravatar.com/avatar/740598426e9e0ee16881d2eb0fc7f569?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 12:05:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 30,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582588",
- "username": "Kkian",
- "fullName": "Kkian",
- "avatarUrl": "https://www.gravatar.com/avatar/45d56e8f8347f2a3270d069f7edda272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 09:05:43"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 30,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737902",
- "username": "ruthiel",
- "fullName": "Ruthiel Trevisan (ruthiel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737902/medium/e80d38870c2a31088c929bdee3c74491.jpeg",
- "joined": "2021-05-04 10:53:37"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 30,
- "target": 30,
- "approved": 0,
- "voted": 41,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136535",
- "username": "HolyMoly",
- "fullName": "Sun Glasses (HolyMoly)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136535/medium/326620bd5f24578d4fc8c9d322497660.jpg",
- "joined": "2021-03-21 04:51:35"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 30,
- "target": 29,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14744448",
- "username": "yani4ek",
- "fullName": "Янис Волошин (yani4ek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14744448/medium/487500a62601bab3eaaef4a7d2cc0b57.jpeg",
- "joined": "2021-05-07 15:55:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 30,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662564",
- "username": "jyfmidi",
- "fullName": "jyfmidi",
- "avatarUrl": "https://www.gravatar.com/avatar/6f1fb1baa61d75ae216be7217d59d4ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 20:52:45"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 29,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "13856939",
- "username": "Fooftilly",
- "fullName": "Nikola Perović (Fooftilly)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13856939/medium/fa8d8cedef0ed56ad4d28a37bf19e389.jpeg",
- "joined": "2020-12-21 15:33:04"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 29,
- "target": 27,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660654",
- "username": "leon.musikhin",
- "fullName": "Leon Musikhin (leon.musikhin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660654/medium/911df2aec4ab9b4f6f729e55f6ac54e2.jpeg",
- "joined": "2021-03-09 16:08:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 29,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "13842283",
- "username": "Dzenan",
- "fullName": "Dženan (Dzenan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13842283/medium/bbfb9ef4136417577f368ab059d20644.jpeg",
- "joined": "2021-02-01 16:25:44"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 29,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14641434",
- "username": "bamboo420",
- "fullName": "bamboo420",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14641434/medium/32baccfa9e8b02cb7a0ed17e4d0a99e5.png",
- "joined": "2021-02-25 06:08:36"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 29,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14966881",
- "username": "nb33535",
- "fullName": "Наталія Болюх (nb33535)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966881/medium/7b4bd1fb8d6fde7a0d747f5c21e72b5a.jpg",
- "joined": "2021-10-22 16:18:07"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 29,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715154",
- "username": "AURICHEST",
- "fullName": "AURICHEST",
- "avatarUrl": "https://www.gravatar.com/avatar/be1895e0f0de06d5fd9a2dc15821bca4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 00:34:17"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 29,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14349092",
- "username": "Gabsolad",
- "fullName": "Gabsolad",
- "avatarUrl": "https://www.gravatar.com/avatar/92381063f28321dc2772fc0c17c19e9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-20 04:43:51"
- },
- "languages": [
- {
- "id": "yo",
- "name": "Yoruba"
- }
- ],
- "translated": 29,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730618",
- "username": "emilnachev69",
- "fullName": "Emil Nachev (emilnachev69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730618/medium/4cb6f96ea43b40aeabd58221e4ced361.jpeg",
- "joined": "2021-04-28 19:00:17"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 29,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14778926",
- "username": "FedericoV",
- "fullName": "FedericoV",
- "avatarUrl": "https://www.gravatar.com/avatar/e7d4c282f4dc61c560a7b89d15d4f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 14:27:17"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 29,
- "target": 69,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814206",
- "username": "novoadaniel2",
- "fullName": "Daniel Novoa (novoadaniel2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814206/medium/67568f30eb32fc4106e9e34eeba4f794.png",
- "joined": "2021-06-24 15:55:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 29,
- "target": 36,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958579",
- "username": "AWZ",
- "fullName": "AWZ",
- "avatarUrl": "https://www.gravatar.com/avatar/c1847aceaa5b7bb77810b614a56de60e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 23:21:26"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 29,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802856",
- "username": "hadeel.a",
- "fullName": "Hadeel A. (hadeel.a)",
- "avatarUrl": "https://www.gravatar.com/avatar/db294d466dc1976479f39453d7cd9ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 08:41:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 29,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848120",
- "username": "RickardW",
- "fullName": "RickardW",
- "avatarUrl": "https://www.gravatar.com/avatar/9c29e1f13b3ddc4562ed451b24d241e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 12:48:11"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 29,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811950",
- "username": "yanyanho",
- "fullName": "yanyanho",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811950/medium/19ae645e2dd0ce102ecb67c0330ae71e.png",
- "joined": "2021-06-23 00:41:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 29,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14262736",
- "username": "Fabricoepe3",
- "fullName": "Fabrizio Coello Perez (Fabricoepe3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14262736/medium/e0f3439d3cb27b607e68182245fc92ca.jpg",
- "joined": "2020-05-21 20:50:36"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 29,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "13756347",
- "username": "glazec",
- "fullName": "glaze (glazec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13756347/medium/461f182cdd50992bffca120a23e5c7eb.jpeg",
- "joined": "2021-05-26 22:49:18"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 29,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14937349",
- "username": "doritbenvakil",
- "fullName": "Dorit Ben Vakil (doritbenvakil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937349/medium/d94e0fb70b144ad3e88293dd5538a58e.jpeg",
- "joined": "2021-09-25 08:40:16"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 29,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13505487",
- "username": "gorkemakova",
- "fullName": "Görkem Akova (gorkemakova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13505487/medium/d53a04e33d027fa9892cd33ce25d077b.jpg",
- "joined": "2020-01-09 15:56:09"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 29,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14649288",
- "username": "ashraf1",
- "fullName": "Ashraf hasan (ashraf1)",
- "avatarUrl": "https://www.gravatar.com/avatar/41fbff92c62f3662bbd7b975ce9aeca8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 07:16:57"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 29,
- "target": 33,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14884570",
- "username": "anastasias",
- "fullName": "anastasias",
- "avatarUrl": "https://www.gravatar.com/avatar/1a4b46d27be66e4c6b4db4b4bbedbd59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 11:24:20"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 28,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638656",
- "username": "naser.aljaari78",
- "fullName": "Naser Aljaari (naser.aljaari78)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638656/medium/711d73ae43c9400d4bdd0574f6b0ce6c.jpg",
- "joined": "2021-05-17 13:34:58"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 28,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978885",
- "username": "asifmahmoud487g",
- "fullName": "Asif Mahmoud (asifmahmoud487g)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978885/medium/cd29b6fbfc96248791192d32cf7335f6.jpeg",
- "joined": "2021-10-27 22:59:39"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 28,
- "target": 65,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614008",
- "username": "serkandemir",
- "fullName": "serkandemir",
- "avatarUrl": "https://www.gravatar.com/avatar/59e47ec5960b9006dc7e3db57d4d077e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 18:12:29"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 28,
- "target": 456,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14724864",
- "username": "deepweed",
- "fullName": "deepweed",
- "avatarUrl": "https://www.gravatar.com/avatar/237a5f302ee077d06f14071dbf8e4775?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 09:27:18"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 28,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14944337",
- "username": "knopentiya",
- "fullName": "knopentiya",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14944337/medium/e15d754f673dc2d2263a16048f6d51b7.png",
- "joined": "2021-10-05 03:58:21"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 28,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820540",
- "username": "mrh",
- "fullName": "mrh",
- "avatarUrl": "https://www.gravatar.com/avatar/b17e704d6b4f70077184377b24f66d66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 13:58:44"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 28,
- "target": 42,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14036488",
- "username": "YeFuchao",
- "fullName": "YeFuchao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14036488/medium/e14fc236265b9a05d9bd437045e252b2.jpg",
- "joined": "2021-05-11 10:26:32"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 28,
- "target": 35,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14738064",
- "username": "msprinceana",
- "fullName": "Mihai Mihai (msprinceana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738064/medium/36ee3d9e8af2e019299e5513f0039c1e.jpeg",
- "joined": "2021-05-04 13:24:49"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 28,
- "target": 35,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996735",
- "username": "AndreaBadini",
- "fullName": "AndreaBadini",
- "avatarUrl": "https://www.gravatar.com/avatar/95266066115a8f09d277ee565691426a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 15:42:39"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 28,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633512",
- "username": "Nicler",
- "fullName": "Nicler",
- "avatarUrl": "https://www.gravatar.com/avatar/70395fb4b1c77e4297ae9d5ff1191fab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 16:47:31"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 28,
- "target": 27,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684140",
- "username": "migangelo.espo",
- "fullName": "Mig ESPO (migangelo.espo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684140/medium/38e31beaf887fdeb774e31912462166e.jpeg",
- "joined": "2021-03-26 04:15:09"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 28,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14283374",
- "username": "diogojpina",
- "fullName": "Diogo Pina (diogojpina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14283374/medium/bb727596b30fbd278195918b065cb209.jpeg",
- "joined": "2020-06-01 14:12:32"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 28,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 27
- },
- {
- "user": {
- "id": "12948080",
- "username": "omarmear",
- "fullName": "Omar Faruque (omarmear)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12948080/medium/1ca86fa82896019c17c87f3c0814de94.JPG",
- "joined": "2020-03-19 12:22:29"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 27,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958739",
- "username": "divinxu",
- "fullName": "Siri Ɛ: (divinxu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958739/medium/213d691dc3b4936181aa01b16f08abee.png",
- "joined": "2021-10-11 14:29:28"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 27,
- "target": 26,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615434",
- "username": "bjaniehsan99",
- "fullName": "ehsan jani (bjaniehsan99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615434/medium/1567d8c17ba7eb590fd7bacfecea98fe.jpg",
- "joined": "2021-02-08 15:15:37"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 27,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14927445",
- "username": "kazutaka3226",
- "fullName": "Kaz Tak (kazutaka3226)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927445/medium/0a9fc623888037236c754e61afcb1ea7.png",
- "joined": "2021-09-18 00:00:22"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 27,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926951",
- "username": "werew985",
- "fullName": "Were Were (werew985)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926951/medium/60813b9a95c00bf8943ff51d75bf26ec.png",
- "joined": "2021-09-17 14:04:29"
- },
- "languages": [
- {
- "id": "my",
- "name": "Burmese"
- }
- ],
- "translated": 27,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609342",
- "username": "rubt3",
- "fullName": "ruben Quintero (rubt3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609342/medium/32022ac26e5bc9a957fee2bc5015045e.jpeg",
- "joined": "2021-02-04 13:49:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 27,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867044",
- "username": "Sercelik",
- "fullName": "Sercelik",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867044/medium/d25753e6bc7cb3b8ddbf025dac169b4f.png",
- "joined": "2021-08-05 01:48:29"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 27,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729416",
- "username": "ronnyfahrudin",
- "fullName": "Ronny Fahrudin (ronnyfahrudin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729416/medium/b86dd8784f1012350c8387237a5f6014.jpeg",
- "joined": "2021-04-28 00:55:23"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 27,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926377",
- "username": "ShubhamKukreti",
- "fullName": "Shubham Kukreti (ShubhamKukreti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926377/medium/c23d2146ea906d371c9ea8af48d3832f.jpeg",
- "joined": "2021-09-17 06:15:26"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 27,
- "target": 44,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14925495",
- "username": "yuttapolp",
- "fullName": "Man Yuttapol Pimpison (yuttapolp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14925495/medium/d503eb59e0c32db1225720e570a68719.jpeg",
- "joined": "2021-09-16 13:48:27"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 27,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781176",
- "username": "GraysonZhang",
- "fullName": "我是花轮 (GraysonZhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781176/medium/d43f3175d04c05008e18cb3c14209ff2.png",
- "joined": "2021-06-01 05:57:12"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 27,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760278",
- "username": "1st.tati",
- "fullName": "Wisavaponr Tati (1st.tati)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760278/medium/757ae458617fb31da8ec9b4d38fcf55e.jpeg",
- "joined": "2021-05-17 01:16:28"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 27,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791842",
- "username": "fayewang4",
- "fullName": "wang faye (fayewang4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791842/medium/89d1c354959cba1cc202d48868419686.png",
- "joined": "2021-06-08 21:46:43"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 27,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031079",
- "username": "jvxon",
- "fullName": "Nhơn Võ (jvxon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031079/medium/1099cf15f2a152105f5014bb6e748954.jpeg",
- "joined": "2021-11-25 21:44:36"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 26,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13330091",
- "username": "Neurone",
- "fullName": "Giuseppe Bertone (Neurone)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13330091/medium/3b845ffc974bc9d909b60d7ed4ca5bf8.jpeg",
- "joined": "2021-09-10 19:16:03"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 26,
- "target": 31,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758100",
- "username": "Wisheechia",
- "fullName": "Marco Abate (Wisheechia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758100/medium/420cea9c5114f42804b9bfde2e438c38.png",
- "joined": "2021-05-15 10:18:39"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 26,
- "target": 18,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883776",
- "username": "ramirolucasb",
- "fullName": "Ramiro Baladron (ramirolucasb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883776/medium/b7bec81cb51a512c787582e9673a418a.png",
- "joined": "2021-08-17 01:55:38"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 32,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12892013",
- "username": "donlaiq",
- "fullName": "donlaiq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12892013/medium/3ab82b955b65e5eac6d5c108533c38a7.jpg",
- "joined": "2021-11-20 09:54:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13785527",
- "username": "iTwalkers",
- "fullName": "iTwalkers",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13785527/medium/91145be2a09a7801ebf8bcce44e121a1.jpg",
- "joined": "2021-01-29 09:52:33"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 26,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653932",
- "username": "lucasguglieri",
- "fullName": "lucasguglieri",
- "avatarUrl": "https://www.gravatar.com/avatar/cbe3e9c7db0bd31fd72fc55f65a1c056?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 01:34:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 26,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14707408",
- "username": "Stev110",
- "fullName": "Stev110",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707408/medium/06bb638d445604925d0bcaa58768558b.png",
- "joined": "2021-04-11 11:43:13"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 26,
- "target": 25,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312806",
- "username": "PoPure",
- "fullName": "สมรรถณพ ทองดี (PoPure)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312806/medium/5c2569402581dea5e30db1e0f8fbc76e.jpg",
- "joined": "2020-06-20 13:15:40"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 26,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14875422",
- "username": "T37B60",
- "fullName": "Sergiu Gelu Stoica (T37B60)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875422/medium/2e2cc48eb16214729aa8f09f43fe49ac.jpeg",
- "joined": "2021-08-11 11:12:14"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 26,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764350",
- "username": "mosfetti",
- "fullName": "mosfetti",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764350/medium/d84a713e1a14175198ac72212f6b3d05.png",
- "joined": "2021-05-19 14:25:07"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 26,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728440",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/9588577b4a09b7b9a4df8000b32b1846?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 08:08:12"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 26,
- "target": 66,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693154",
- "username": "Vojtakrecek5",
- "fullName": "Vojtakrecek5",
- "avatarUrl": "https://www.gravatar.com/avatar/2b47e8e37efc146a24b4a904182199dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 09:45:28"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 26,
- "target": 634,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662270",
- "username": "alan4499gomes.rubio",
- "fullName": "Alan Gomez (alan4499gomes.rubio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14662270/medium/81a64ec57910d241c094de5ef529b07c.jpeg",
- "joined": "2021-03-10 15:29:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14818556",
- "username": "lahdiez",
- "fullName": "lahdiez",
- "avatarUrl": "https://www.gravatar.com/avatar/496e2e851d9ffaaf28354c990782acdb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 04:30:41"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003205",
- "username": "fernandososxd4",
- "fullName": "Alex Flores (fernandososxd4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003205/medium/b1db938973973fdb74103eab0f2ae3a7.jpeg",
- "joined": "2021-11-14 13:25:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973807",
- "username": "ukr-user",
- "fullName": "ukr-user",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973807/medium/1d2a10d81726182ea2b7314c4105a1d7.png",
- "joined": "2021-10-23 15:27:41"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 26,
- "target": 23,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677628",
- "username": "Josek33",
- "fullName": "Josek33",
- "avatarUrl": "https://www.gravatar.com/avatar/58b70d473e150d07a5de0618a9dfc4a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 16:42:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 25,
- "target": 15,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610544",
- "username": "nikitaradov6",
- "fullName": "Никита Радов (nikitaradov6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14610544/medium/57a67ad6b287e9ddd3fad4dec959665c.jpg",
- "joined": "2021-02-05 09:13:08"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 25,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990899",
- "username": "juan.baranowa",
- "fullName": "Diego Baranowski (juan.baranowa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990899/medium/c7ef51465c9acf0f30c989ec42d6d5d2.png",
- "joined": "2021-11-05 03:31:34"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 25,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "13442389",
- "username": "dnse",
- "fullName": "DNSE (dnse)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13442389/medium/a6e71d4e535abf3b6d5c954658a93c70.jpg",
- "joined": "2021-02-01 23:15:59"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 25,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14079977",
- "username": "adi1382",
- "fullName": "Aditya verma (adi1382)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14079977/medium/35c8e9d061b6e00b370b3fa92d44a887.jpeg",
- "joined": "2020-01-17 12:01:12"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 25,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14699214",
- "username": "pearl.kapoor.675",
- "fullName": "Pearl Kapoor (pearl.kapoor.675)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699214/medium/12a7352656324f8a8d4375991d29f061.jpeg",
- "joined": "2021-06-04 23:54:22"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 25,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582306",
- "username": "Enrique_Mayen",
- "fullName": "Enrique_Mayen",
- "avatarUrl": "https://www.gravatar.com/avatar/acd100be47bec365b675cadb4a004a3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 05:55:21"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 25,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14922369",
- "username": "halley.oliveira",
- "fullName": "halley.oliveira",
- "avatarUrl": "https://www.gravatar.com/avatar/50becb2743c21fc6a72320fa8961e0d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 10:48:46"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 25,
- "target": 26,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498608",
- "username": "eadmann",
- "fullName": "eadmann",
- "avatarUrl": "https://www.gravatar.com/avatar/fc0dcad3181041f188e5fabb824b55da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-16 15:09:20"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 25,
- "target": 25,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14692718",
- "username": "Z3rtr0x",
- "fullName": "Z3rtr0x",
- "avatarUrl": "https://www.gravatar.com/avatar/655a8dcb3bc251405bad4c8b8a5b299c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 04:57:37"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 25,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565950",
- "username": "fabricioparramaldonado",
- "fullName": "Fabricio Parra (fabricioparramaldonado)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14565950/medium/6bfbe7ea0c369386965c196fd15e0905.jpeg",
- "joined": "2021-01-06 22:15:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 25,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 6
- },
- {
- "user": {
- "id": "14613880",
- "username": "Franciscoyou",
- "fullName": "Franciscoyou",
- "avatarUrl": "https://www.gravatar.com/avatar/0b9efad80c0e8aac0998edbf2d9ab874?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 15:37:07"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 25,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799060",
- "username": "alpergindao",
- "fullName": "alp (alpergindao)",
- "avatarUrl": "https://www.gravatar.com/avatar/0de6f9af763cc0a46781ae451a2bf1a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-14 10:15:13"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 24,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14974527",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/d14a807a4b76542a1fcdbb2e43205be1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-24 09:44:12"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 24,
- "target": 29,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709730",
- "username": "ArkadiaDev",
- "fullName": "Massimiliano Pighi (ArkadiaDev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709730/medium/2d56160896fed391c482f06f729b0f58.jpeg",
- "joined": "2021-04-13 04:42:38"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 24,
- "target": 32,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14865958",
- "username": "hasanmumtaz",
- "fullName": "Hasan Mumtaz (hasanmumtaz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865958/medium/cf8ccfc57528109bd94fb6dde9ec456f.jpeg",
- "joined": "2021-08-04 06:03:17"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 24,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987673",
- "username": "vlunaram",
- "fullName": "vlunaram",
- "avatarUrl": "https://www.gravatar.com/avatar/d436fcb22ecfe2eaf1f7b3ccfb530cd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 15:18:25"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 24,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14158645",
- "username": "cevdetzgr",
- "fullName": "Cevdet Özgür (cevdetzgr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158645/medium/023c48f1718bd7e044d1c71eb8d47983.jpg",
- "joined": "2020-03-15 23:15:28"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 24,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 24
- },
- {
- "user": {
- "id": "14728354",
- "username": "shenglim",
- "fullName": "shenglim",
- "avatarUrl": "https://www.gravatar.com/avatar/49d5ce3fdc3a6faa8e8bf10cb6340dfe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 22:57:14"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 24,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690126",
- "username": "ShervinR",
- "fullName": "ShervinR",
- "avatarUrl": "https://www.gravatar.com/avatar/4a923c900d930754d7d0c60893f6e06a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 11:33:38"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 24,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14048904",
- "username": "hakan.korkz",
- "fullName": "hakan korkmaz (hakan.korkz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048904/medium/5f08caa613c1f97c14c0ad0c6f4fb8f6.jpeg",
- "joined": "2021-02-27 02:29:12"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 24,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846664",
- "username": "donny.darco",
- "fullName": "Leon Te (donny.darco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846664/medium/7d61ca2c4b5dc23e2c385b52b51b9cce.jpeg",
- "joined": "2021-07-20 09:05:15"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 24,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14986897",
- "username": "Blockchainnewbie",
- "fullName": "Blockchainnewbie",
- "avatarUrl": "https://www.gravatar.com/avatar/70d268bdaf5a4a94ba316f5a49e9fb55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 06:01:24"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 24,
- "target": 28,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553420",
- "username": "Blockchaineur",
- "fullName": "Thibault Langlois-Berthelot (Blockchaineur)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553420/medium/ea46ae87fbc87da1a97ae30fc4c7cbb0.jpeg",
- "joined": "2020-12-28 07:08:13"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 24,
- "target": 36,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14649550",
- "username": "forty.cat1997",
- "fullName": "Fortunato Catania (forty.cat1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14649550/medium/363188cca21ef93a6e9e7578a8ef65f9.jpg",
- "joined": "2021-03-02 08:39:04"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 24,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14322244",
- "username": "tattooist2505",
- "fullName": "Дмитрий Шкорин (tattooist2505)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14322244/medium/9b37a8b636bf42882642aa974b77f3a5.jpeg",
- "joined": "2020-07-01 01:43:50"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 24,
- "target": 24,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13497805",
- "username": "Catalan_MIUIProofreader",
- "fullName": "Catalan_MIUIProofreader",
- "avatarUrl": "https://www.gravatar.com/avatar/f7de0dc6ba59bf22dd9e57543f6ef4b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-29 22:17:18"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 24,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633366",
- "username": "lucacalliera",
- "fullName": "Luca Calliera (lucacalliera)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633366/medium/3be7c6e7b402477ff8e7cb8fee4adca9.jpeg",
- "joined": "2021-02-20 14:32:40"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 24,
- "target": 13,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566568",
- "username": "YIgITeFe",
- "fullName": "YIgITeFe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566568/medium/f9f56947e8c3882058f060c6d30c7fde.jpeg",
- "joined": "2021-02-26 19:35:45"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 23,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033811",
- "username": "Lubiab19",
- "fullName": "Lubiab19",
- "avatarUrl": "https://www.gravatar.com/avatar/85f5f55b79e8f44bf36ebd75a3883092?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 05:35:41"
- },
- "languages": [
- {
- "id": "ur-IN",
- "name": "Urdu (India)"
- }
- ],
- "translated": 23,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820852",
- "username": "btclient",
- "fullName": "btclient",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820852/medium/6d3e4e81b1dd0aa840959da8c8bcf63f.jpg",
- "joined": "2021-06-30 10:18:34"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 23,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982575",
- "username": "Dhirajnyse",
- "fullName": "DJ (Dhirajnyse)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982575/medium/da7bc8b41720e10df6e46a4a76d78bb2.jpeg",
- "joined": "2021-10-30 10:01:39"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 23,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13702183",
- "username": "kawlove250139",
- "fullName": "สุกัญญา ตาลรัศมี (kawlove250139)",
- "avatarUrl": "https://www.gravatar.com/avatar/ce27be1547552d05485034c2836c578a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-26 11:22:08"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 23,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972843",
- "username": "Khraken",
- "fullName": "Khraken",
- "avatarUrl": "https://www.gravatar.com/avatar/5ef38b24c37f6064315ee252c8a93959?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 16:16:51"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 23,
- "target": 30,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14976705",
- "username": "shenruiqi3",
- "fullName": "Shen ruiqi (shenruiqi3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14976705/medium/920ef0e477bc510958724bfedbafe0fa.jpeg",
- "joined": "2021-10-26 08:17:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 23,
- "target": 39,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14173635",
- "username": "amin57000",
- "fullName": "amin57000",
- "avatarUrl": "https://www.gravatar.com/avatar/397e845df1a52ce8b6305b1a7d40dd02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-26 03:32:31"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 23,
- "target": 31,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13939747",
- "username": "klaudek-pakula",
- "fullName": "klaudek-pakula",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13939747/medium/b08dc14cf85baffa048518d87afa3c14.jpeg",
- "joined": "2021-04-24 10:54:24"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 23,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14159957",
- "username": "mishkap93",
- "fullName": "Michael Pisarev (mishkap93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14159957/medium/8de714a2a632207bc4ae635c5092d9dc.jpeg",
- "joined": "2020-03-16 22:23:55"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 23,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739786",
- "username": "mk.marcus.aurelius",
- "fullName": "mk.marcus.aurelius",
- "avatarUrl": "https://www.gravatar.com/avatar/1b914fae12fe32fd81ac108fa62b5d3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 18:36:16"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 22,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999683",
- "username": "amal.jaison2000",
- "fullName": "amal jaison (amal.jaison2000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999683/medium/2a99d9bd895c3104f4b4ca40e8642477.jpeg",
- "joined": "2021-11-11 19:38:37"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 22,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028313",
- "username": "jafuda",
- "fullName": "jafuda",
- "avatarUrl": "https://www.gravatar.com/avatar/bb3ad2846c9c73de07ab3c8e009a8d1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 17:14:25"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 22,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950765",
- "username": "m.kseniaaa",
- "fullName": "m.kseniaaa",
- "avatarUrl": "https://www.gravatar.com/avatar/1d2fbb8f812f2b8b0cace056370c5dc9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 04:56:57"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 22,
- "target": 21,
- "approved": 0,
- "voted": 64,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14870048",
- "username": "Sunnyhk",
- "fullName": "Sunnyhk",
- "avatarUrl": "https://www.gravatar.com/avatar/102f6302741e7b4349b06d0fb1bc33c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-07 12:06:00"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 22,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14274852",
- "username": "NikeEend",
- "fullName": "NikeEend",
- "avatarUrl": "https://www.gravatar.com/avatar/4dba24457f3aaeada0ee431b881064cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-26 12:00:37"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 22,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14084853",
- "username": "agnieszkaposzwa6",
- "fullName": "Agnieszka Poszwa (agnieszkaposzwa6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14084853/medium/cf706f82a2556f8272f0e1619a9ceacc.jpeg",
- "joined": "2020-01-21 15:49:32"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 22,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751972",
- "username": "khalil-sami",
- "fullName": "Khalil Mouih (khalil-sami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751972/medium/0c35d736b7d32898fe47b6ebd66e9f1e.jpeg",
- "joined": "2021-05-11 21:50:38"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 22,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713310",
- "username": "aravion",
- "fullName": "aravion",
- "avatarUrl": "https://www.gravatar.com/avatar/34c265ee06f81b5c7b922dfc9c0e3280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 14:27:10"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 22,
- "target": 81,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751254",
- "username": "marmolcaballerom",
- "fullName": "miguell 248 (marmolcaballerom)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751254/medium/35f1a9d98d9b37a9d9bbc83f378e0ae7.jpeg",
- "joined": "2021-05-11 11:49:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 22,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12579111",
- "username": "ofek18",
- "fullName": "Green Army (ofek18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12579111/medium/7a32cf48eea062741b673c3bfc07b9b3.gif",
- "joined": "2021-05-25 02:39:12"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 22,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14453924",
- "username": "rungrot922j",
- "fullName": "chocolate and cake (rungrot922j)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14453924/medium/36863c65ecd19173d8783dda10b2ce3a.jpeg",
- "joined": "2020-10-12 18:55:07"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 22,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934499",
- "username": "c4r3fyl",
- "fullName": "Valentino Gechev (c4r3fyl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934499/medium/2da67358d1967d920a109354e6dade53.png",
- "joined": "2021-09-23 07:08:13"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 22,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14265548",
- "username": "Sanilawan46",
- "fullName": "Sanilawan46",
- "avatarUrl": "https://www.gravatar.com/avatar/e5c20b357cf83e0c147a9c574d87b2de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-20 10:41:30"
- },
- "languages": [
- {
- "id": "ha",
- "name": "Hausa"
- }
- ],
- "translated": 22,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746172",
- "username": "VAHL1108",
- "fullName": "VAHL1108",
- "avatarUrl": "https://www.gravatar.com/avatar/c1c12827706c6a3d4837731c507fed43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 16:02:44"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 21,
- "target": 28,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14606028",
- "username": "Redii",
- "fullName": "David (Redii)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606028/medium/5e304c22276ea2aefbc6f8c816f0b750.jpeg",
- "joined": "2021-04-26 16:56:13"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 21,
- "target": 23,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760728",
- "username": "amicod9r",
- "fullName": "AwiR (amicod9r)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760728/medium/2905324afa04498f40bdcde399b96d47.jpeg",
- "joined": "2021-05-17 07:53:47"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 21,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022459",
- "username": "leonardo002031",
- "fullName": "Leonardo Williams (leonardo002031)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022459/medium/49d209032b65b891f5122d63ca0e7490.png",
- "joined": "2021-11-19 09:55:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 21,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726116",
- "username": "salih.keyf",
- "fullName": "salih keyf (salih.keyf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726116/medium/276f7773be59d0dd0ea1252e816006ca.jpg",
- "joined": "2021-04-25 12:14:25"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 21,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13826385",
- "username": "ma.de",
- "fullName": "ma.de",
- "avatarUrl": "https://www.gravatar.com/avatar/ccee80f57de9d8173f772ba497374be1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-07 03:21:38"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 21,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14724502",
- "username": "barcaglobalservices",
- "fullName": "barcaglobalservices",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724502/medium/5270f924a12ffb55ce9f1f060c95ac51.png",
- "joined": "2021-04-24 03:44:15"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 21,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705756",
- "username": "near_",
- "fullName": "near_",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705756/medium/291add958fcab6d68ed7be8fdf4fbc73.jpg",
- "joined": "2021-04-10 03:24:17"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 21,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14117661",
- "username": "amberaltyn",
- "fullName": "igor altynpara (amberaltyn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14117661/medium/669e2585b1c7a9134c5e4fce4b1a7fbb.jpeg",
- "joined": "2020-02-13 14:43:59"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 21,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736246",
- "username": "Sami.staar",
- "fullName": "Sami Najem (Sami.staar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736246/medium/f963438693a03d07d9b914e6839f09f1.jpeg",
- "joined": "2021-05-03 06:52:30"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 21,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710420",
- "username": "Afshin4030",
- "fullName": "Afshin4030",
- "avatarUrl": "https://www.gravatar.com/avatar/095e0bdee3d3f914fe82205d5e3a267a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 13:48:30"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 21,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960593",
- "username": "pedrosoft",
- "fullName": "pedrosoft",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13960593/medium/b8f8b7bcf3d412cffe6ac3d93183cad2.jpeg",
- "joined": "2019-08-23 16:19:12"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 21,
- "target": 21,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13961973",
- "username": "TakeshiNagahisa",
- "fullName": "TakeshiNagahisa",
- "avatarUrl": "https://www.gravatar.com/avatar/a3b5fae50c3818fe96d8442fe07cfc14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-25 08:52:22"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 21,
- "target": 56,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 31
- },
- {
- "user": {
- "id": "14574342",
- "username": "ahmetucar973",
- "fullName": "Ahmet M. (ahmetucar973)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14574342/medium/87b119554fb2c3635cc240d77e9b711c.jpeg",
- "joined": "2021-01-12 16:31:40"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 21,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14591708",
- "username": "lihelh",
- "fullName": "李* (lihelh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591708/medium/505be4f784f752b373e3357952cc9c28.png",
- "joined": "2021-04-06 09:36:51"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 21,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14751614",
- "username": "Zekel97",
- "fullName": "Andreas Szekely (Zekel97)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751614/medium/617245d20333ac5379ab1c9532ffa90a.png",
- "joined": "2021-05-11 15:45:57"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 21,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14284870",
- "username": "saiharsha_b",
- "fullName": "saiharsha_b",
- "avatarUrl": "https://www.gravatar.com/avatar/1929a916f567afa637913b7c92537d57?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-31 23:09:55"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 21,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14604672",
- "username": "Arthheo",
- "fullName": "Arthur SCH (Arthheo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604672/medium/f0f0b5f0b1512c443dc8d91cf1036c9a.jpeg",
- "joined": "2021-02-01 15:25:33"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 21,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611278",
- "username": "mattgene",
- "fullName": "Yang, Chi En (mattgene)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14611278/medium/1826f3f39b402a0386b082945c71c7d1.jpeg",
- "joined": "2021-02-05 20:09:51"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 20,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546828",
- "username": "Mxitep",
- "fullName": "Mxitep",
- "avatarUrl": "https://www.gravatar.com/avatar/f901b2e87e345e332ff2c116f51fb1ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-23 14:27:59"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 20,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14973491",
- "username": "Baby_Bubbles",
- "fullName": "Baby_Bubbles",
- "avatarUrl": "https://www.gravatar.com/avatar/86fafd1bed94890980c573a4d411ea60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 09:07:56"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 20,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946413",
- "username": "slimShadyxx",
- "fullName": "slimShadyxx",
- "avatarUrl": "https://www.gravatar.com/avatar/aeeec2c6e5f349c95b7229de7c8dcee4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-01 17:06:43"
- },
- "languages": [
- {
- "id": "yo",
- "name": "Yoruba"
- }
- ],
- "translated": 20,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874054",
- "username": "work.research.closil",
- "fullName": "CLOTILDE SILVA (work.research.closil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14874054/medium/b8c468681861135296f108ae592b801d.png",
- "joined": "2021-08-10 11:17:22"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 20,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733356",
- "username": "isadorasst",
- "fullName": "Isadora Tavares (isadorasst)",
- "avatarUrl": "https://www.gravatar.com/avatar/6a01ad71354d5af2ca10746a52f835ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 16:06:25"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 20,
- "target": 24,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619636",
- "username": "raizo.bank007",
- "fullName": "wassim siaf (raizo.bank007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619636/medium/521ac78b4246337b92db96332f0a3d1c.jpg",
- "joined": "2021-02-11 07:16:43"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 20,
- "target": 21,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14054996",
- "username": "unsoindovo",
- "fullName": "unSo IndoVo (unsoindovo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14054996/medium/15300e76cadf9169ffc8f4f2d2da8656.jpg",
- "joined": "2019-12-19 03:54:53"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 20,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715384",
- "username": "kemallbangus123",
- "fullName": "Muhamad Kemal Pebriansyah (kemallbangus123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715384/medium/1882a3be104737a70d57a761e223b721.jpeg",
- "joined": "2021-04-17 06:21:37"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 20,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14987665",
- "username": "Artem_Levenko",
- "fullName": "Artem_Levenko",
- "avatarUrl": "https://www.gravatar.com/avatar/17f91c5dddb6c7766a5153a009880b3b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 05:20:18"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 20,
- "target": 16,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842502",
- "username": "excelaa",
- "fullName": "excelaa",
- "avatarUrl": "https://www.gravatar.com/avatar/831f1e467000356793c95289198ac7bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 19:34:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 20,
- "target": 14,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669862",
- "username": "YeahJack",
- "fullName": "Jack Xu (YeahJack)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669862/medium/3b9412b83dceb6cb13b61c67320649b6.jpeg",
- "joined": "2021-03-16 04:56:31"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 20,
- "target": 38,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000307",
- "username": "bergmannlucas",
- "fullName": "Lucas Bergmann (bergmannlucas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000307/medium/fdd87c00289f2b29277212427f3accdf.jpeg",
- "joined": "2019-10-01 23:32:43"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 20,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14901400",
- "username": "shimanto2",
- "fullName": "shimanto (shimanto2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901400/medium/05a5f76d6f25c24b20989cc2a8481a6f.jpg",
- "joined": "2021-08-30 03:27:31"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 20,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890278",
- "username": "Hephaistos357",
- "fullName": "Hephaistos357",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890278/medium/7fd731668afeab1f389fbe0b256f0619.png",
- "joined": "2021-08-21 10:19:15"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 20,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13931633",
- "username": "khg0712",
- "fullName": "HyungGyu Kim (khg0712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13931633/medium/f51a62e6400540a88293510ae3412172.png",
- "joined": "2021-04-24 16:29:32"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 20,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14125983",
- "username": "doanhlv",
- "fullName": "Doanh Văn Lương (doanhlv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125983/medium/f7bd2cd492ff0799dba4bd3b5850f97d.jpeg",
- "joined": "2020-02-19 09:17:43"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 20,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790174",
- "username": "FatihOng",
- "fullName": "FatihOng",
- "avatarUrl": "https://www.gravatar.com/avatar/b19940a772c651ab824a365987d98cee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 17:23:14"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 20,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565546",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/0da032de8df29c4f658c808cf4502c68?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-06 12:38:13"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 20,
- "target": 27,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14915729",
- "username": "Gae..l",
- "fullName": "Gae..l",
- "avatarUrl": "https://www.gravatar.com/avatar/cbca2ac72780df856d9bfd8434cf3cfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 11:42:33"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 20,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14140949",
- "username": "sendrosand",
- "fullName": "sendrosand",
- "avatarUrl": "https://www.gravatar.com/avatar/9a1c63f4710562c5073813134e7bf39a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-01 14:33:34"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 19,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753676",
- "username": "sj69",
- "fullName": "Alsajad Majid (sj69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753676/medium/7d0765449802f44ed616c6db8d996a49.jpeg",
- "joined": "2021-05-12 23:19:00"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 19,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712994",
- "username": "bordakito",
- "fullName": "bordakito",
- "avatarUrl": "https://www.gravatar.com/avatar/d45cd8bd66936fba5670921c72bc970c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 10:14:40"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 19,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360632",
- "username": "nongjize",
- "fullName": "nongjize",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14360632/medium/419cfc459e1d68e1303b1e7b8554c2f5.jpeg",
- "joined": "2020-07-30 02:24:07"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 19,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14852154",
- "username": "bartekbugajski",
- "fullName": "Bartek Bugajski (bartekbugajski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852154/medium/0039a82eff71b9ca0fe6a2d037273d3a.jpeg",
- "joined": "2021-07-25 01:49:27"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 19,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967935",
- "username": "Ma1402",
- "fullName": "Ma1402",
- "avatarUrl": "https://www.gravatar.com/avatar/311ed7b3758f60f466de00372d67d556?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 02:20:38"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 19,
- "target": 19,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14593316",
- "username": "mankal111",
- "fullName": "Manolis Kalafatis (mankal111)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593316/medium/ae46e7d0b56eac4de18909fed070e1c4.jpeg",
- "joined": "2021-01-25 05:44:43"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 19,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14386026",
- "username": "msuresh85",
- "fullName": "Suresh Kumar (msuresh85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14386026/medium/9ce1fa7bce1e86459117924566fcb1e0.jpg",
- "joined": "2020-08-20 23:23:12"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 19,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767956",
- "username": "Taigan",
- "fullName": "Daniel Van mosnenck (Taigan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767956/medium/a72b13affbab7771e971c11783374b34.jpeg",
- "joined": "2021-05-22 06:04:46"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 19,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815846",
- "username": "biboufr",
- "fullName": "Midori Nika (biboufr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815846/medium/e3ef6e9bf613468bccc78bf46b9ed89b.png",
- "joined": "2021-06-25 20:44:01"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 19,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14117485",
- "username": "kberey",
- "fullName": "Ken Crypto Philippines (kberey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14117485/medium/682f03c5de47113a2d79b0dbdebd3eee.jpeg",
- "joined": "2020-02-13 11:59:01"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 19,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916719",
- "username": "erndevelop",
- "fullName": "erndevelop",
- "avatarUrl": "https://www.gravatar.com/avatar/616a39f2f590e4d611da9061b6b152bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 05:34:07"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 19,
- "target": 25,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840702",
- "username": "EmpirePers",
- "fullName": "Persacho (EmpirePers)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840702/medium/dab9b07237a7db5ed0e7b5a526edeb9d.png",
- "joined": "2021-07-15 09:20:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 19,
- "target": 26,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960053",
- "username": "Mahesar",
- "fullName": "Mahesar",
- "avatarUrl": "https://www.gravatar.com/avatar/1fbe4b214f0e543eaa0df60332c31636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 13:02:12"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 19,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873848",
- "username": "seaona",
- "fullName": "Mariona (seaona)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873848/medium/b17de5f28e79a1bf040851bf192bc9e1.jpeg",
- "joined": "2021-08-10 08:58:45"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 19,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909801",
- "username": "client2019",
- "fullName": "client2019",
- "avatarUrl": "https://www.gravatar.com/avatar/048b048fbf8560ca3d71782944d0ce9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 06:28:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 19,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675062",
- "username": "msjadidi",
- "fullName": "msjadidi",
- "avatarUrl": "https://www.gravatar.com/avatar/ae0951fda66a455af68b6e18ea661c96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 15:52:22"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 19,
- "target": 22,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14250810",
- "username": "sharthan",
- "fullName": "Sharthan Simoons (sharthan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14250810/medium/265247c7a05f29a0d5c04c63e5a85e9f.jpeg",
- "joined": "2020-05-11 01:41:50"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 19,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14169771",
- "username": "Elparano",
- "fullName": "Elparano",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14169771/medium/dfa5364b652e14968d3170961f4d3c76.jpeg",
- "joined": "2020-03-23 21:29:06"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 19,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622304",
- "username": "HadesCoin",
- "fullName": "HadesCoin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14622304/medium/15b9b8b3e7294e0b6d1ab95a9664bcb5.png",
- "joined": "2021-02-13 02:22:11"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 19,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14695768",
- "username": "Thebetterbutter",
- "fullName": "Thebetterbutter",
- "avatarUrl": "https://www.gravatar.com/avatar/196cf03d279a94aca450b76e908657d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 09:35:34"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 19,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14658124",
- "username": "Whisker17",
- "fullName": "Whisker17",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658124/medium/18f9c6ace7e85e56eb86e2b6486789e0.jpeg",
- "joined": "2021-03-08 02:25:47"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 19,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14845634",
- "username": "andrejmnunes",
- "fullName": "andrejmnunes",
- "avatarUrl": "https://www.gravatar.com/avatar/81251e5f80461de5f05f16e9651c2212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 13:41:38"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 19,
- "target": 18,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627716",
- "username": "alessioperinilu",
- "fullName": "Alessio (alessioperinilu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627716/medium/735445e9c72bbd0f33671af2fcf6e133.jpeg",
- "joined": "2021-02-16 19:06:46"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 18,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14142021",
- "username": "Lahcen-KH",
- "fullName": "Lahcen-KH",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14142021/medium/a975e15d82f2b4000869328428713087.png",
- "joined": "2020-04-08 14:41:55"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 18,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707524",
- "username": "kali77",
- "fullName": "kali77",
- "avatarUrl": "https://www.gravatar.com/avatar/4f6ac0259323a40da42e4d0da87100f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 13:59:57"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 18,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606704",
- "username": "crisfresho",
- "fullName": "crisfresho",
- "avatarUrl": "https://www.gravatar.com/avatar/5b16948c1779239c85367de2c08c803c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-02 22:51:48"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 18,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "12335754",
- "username": "MostafaAlSayed",
- "fullName": "Mostafa Al Sayed (MostafaAlSayed)",
- "avatarUrl": "https://www.gravatar.com/avatar/a94708d63d7365a25b967474caecf104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-28 15:26:34"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 18,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14996511",
- "username": "rlandeira",
- "fullName": "Renato A. Landeira (rlandeira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996511/medium/bc8903b9375a605c6351bc77c9976524.jpeg",
- "joined": "2021-11-09 12:29:19"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 18,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899828",
- "username": "MickeyMelendez7",
- "fullName": "MickeyMelendez7",
- "avatarUrl": "https://www.gravatar.com/avatar/ce60ac7fdfb503c810a5ec177105f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 20:02:45"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 18,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617430",
- "username": "codeater",
- "fullName": "codeater",
- "avatarUrl": "https://www.gravatar.com/avatar/034c6d5904c46d12abb3c8608db485ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 19:50:01"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 18,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14497686",
- "username": "pisuthd",
- "fullName": "ohmz (pisuthd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14497686/medium/ba1721d461a19e33745ecafefde6eaad.jpeg",
- "joined": "2020-11-15 23:31:39"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 18,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14369986",
- "username": "miroelfj",
- "fullName": "miroelfj",
- "avatarUrl": "https://www.gravatar.com/avatar/06a74f0fe0a357ebbfc23eaed729f543?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-07 00:47:14"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 18,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14988379",
- "username": "Nikita_Yuriev",
- "fullName": "Никита Юрьев (Nikita_Yuriev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988379/medium/30ba5c83780593f0dbbb5f35b47dd1b7.png",
- "joined": "2021-11-06 07:11:40"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 18,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893204",
- "username": "alanwang123",
- "fullName": "alanwang123",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893204/medium/a117e332c42088df14b116c428944e52.jpeg",
- "joined": "2021-08-24 18:39:28"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 18,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999585",
- "username": "CaptnSauerkraut",
- "fullName": "CaptnSauerkraut",
- "avatarUrl": "https://www.gravatar.com/avatar/6c22f8073f60dde4c50101bf6d222da9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 17:10:08"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 18,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289162",
- "username": "viswanathkgp12",
- "fullName": "Viswanath (viswanathkgp12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289162/medium/aef493424354f36254809317dbb62de1.png",
- "joined": "2020-06-03 13:51:30"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 18,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973311",
- "username": "BandarBasamh",
- "fullName": "Bandar (BandarBasamh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973311/medium/cf3a913993d90ab591a8aacf4a07623f.png",
- "joined": "2021-10-23 05:29:51"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 18,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14348910",
- "username": "reddynagendra2000",
- "fullName": "Reddy Nagendra Kola (reddynagendra2000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14348910/medium/c7841b89c57d45ab87d0b344bbe422e7.jpeg",
- "joined": "2020-07-20 00:50:16"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 18,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749896",
- "username": "muratkoc1881",
- "fullName": "MURAT KOÇ (muratkoc1881)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14749896/medium/38476a7709fc6ae3810fb8ed9c6c6c72.jpeg",
- "joined": "2021-05-10 17:14:11"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 18,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13388045",
- "username": "VengaReview_ES",
- "fullName": "VengaReview_ES",
- "avatarUrl": "https://www.gravatar.com/avatar/f7187abb7b5476b5fbbd85723ebd53a9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-12 01:34:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 18,
- "target": 17,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575216",
- "username": "JulsKawa",
- "fullName": "JulsKawa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575216/medium/445f76865b9c16e571577e5eb7ee6dc8.png",
- "joined": "2021-01-13 08:36:20"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 18,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14783598",
- "username": "lemony.jerome",
- "fullName": "Jj (lemony.jerome)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783598/medium/3222a279390e4b25e1a6a456c008139b.jpeg",
- "joined": "2021-06-02 16:21:48"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 18,
- "target": 20,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14841924",
- "username": "giulia29",
- "fullName": "Giulia Iuppa (giulia29)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14841924/medium/8491c59d47fdaf576a34ff07a9808c5c.jpg",
- "joined": "2021-07-16 18:29:21"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 18,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14804874",
- "username": "LHD",
- "fullName": "LHD",
- "avatarUrl": "https://www.gravatar.com/avatar/e24fcfddb6f5847a01d8bcd8d40b8693?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 04:49:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 18,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14977945",
- "username": "TagPlex",
- "fullName": "Kevin Palma (TagPlex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977945/medium/725a8d38c46f2ac4ebbce870cce83922.png",
- "joined": "2021-10-27 07:25:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 17,
- "target": 17,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563624",
- "username": "lucasbalieiro",
- "fullName": "Lucas Balieiro (lucasbalieiro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563624/medium/71d6efac2487357d12cdc6723d14facd.jpeg",
- "joined": "2021-01-05 07:52:16"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 17,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14781478",
- "username": "pantherax",
- "fullName": "pantherax",
- "avatarUrl": "https://www.gravatar.com/avatar/1352f74fc2d80f346e7ec67cd650d1da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 09:04:14"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 17,
- "target": 20,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14039900",
- "username": "YuriiKillerBee",
- "fullName": "YuriiKillerBee",
- "avatarUrl": "https://www.gravatar.com/avatar/3690e6911d55e40540040baf2632926e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-21 09:56:03"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 17,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14050356",
- "username": "marcusjaatinen",
- "fullName": "Marcus Jaatinen (marcusjaatinen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14050356/medium/5a5f4294a5e73b25c202a7fbddaf1cc6.jpg",
- "joined": "2020-06-14 16:55:49"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 17,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14750382",
- "username": "SabuesoDigital",
- "fullName": "SabuesoDigital",
- "avatarUrl": "https://www.gravatar.com/avatar/465ce7a4b3a7761383bb70cbf5e24382?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 01:54:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 17,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703638",
- "username": "okabrionz",
- "fullName": "Oka bRionZ (okabrionz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703638/medium/d155aad65f6574ce5dc850691e4f7342.jpeg",
- "joined": "2021-04-08 13:49:39"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 17,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14014865",
- "username": "VitorCarminatti",
- "fullName": "Vitor Carminatti (VitorCarminatti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14014865/medium/f2e87f0515e1dc27581553b414edead1.jpeg",
- "joined": "2019-10-15 15:21:48"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 17,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751854",
- "username": "IBMBigBlue",
- "fullName": "IBMBigBlue",
- "avatarUrl": "https://www.gravatar.com/avatar/5d337bd57e1bfb0bc6b6ac5445482ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 19:47:21"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 17,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677584",
- "username": "Jzurithe",
- "fullName": "Jzurithe",
- "avatarUrl": "https://www.gravatar.com/avatar/bfb6810d6106aa9696da572ef836ce83?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 15:55:47"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 17,
- "target": 23,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758532",
- "username": "manu55a",
- "fullName": "Mariano F. (manu55a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758532/medium/a8628399954ffeaa70d3614014c851f6.png",
- "joined": "2021-05-15 17:03:46"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 17,
- "target": 18,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14583868",
- "username": "7kamikaze7",
- "fullName": "Asc Sedmosm (7kamikaze7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14583868/medium/ad867635428b0cb1b6eb4f13b185a263.jpeg",
- "joined": "2021-01-19 06:09:18"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 17,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682572",
- "username": "giovanni.lagunaolaya",
- "fullName": "Giovanni Laguna (giovanni.lagunaolaya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682572/medium/f7aa3e4eb0e844db0db1d6b00951bb82.jpg",
- "joined": "2021-03-25 00:47:44"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 17,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557298",
- "username": "KhalidM",
- "fullName": "KhalidM",
- "avatarUrl": "https://www.gravatar.com/avatar/6cc88181eb07d095c6edde8246ad9d76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-31 08:32:57"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 17,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13432036",
- "username": "Jay-Way",
- "fullName": "Jay-Way",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13432036/medium/d8fc2570988848e2d0bd21ceeab36080.png",
- "joined": "2020-08-19 04:58:13"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 17,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14952791",
- "username": "HADIDBESSH",
- "fullName": "HADIDBESSH",
- "avatarUrl": "https://www.gravatar.com/avatar/0801cb3d594f3963f46092bb8bbdaba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 17:30:41"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 17,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874804",
- "username": "cg123",
- "fullName": "cg123",
- "avatarUrl": "https://www.gravatar.com/avatar/ac933b9d10dd7f9559fdc39e35603357?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-11 02:32:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 17,
- "target": 204,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030189",
- "username": "seshasri",
- "fullName": "seshasri",
- "avatarUrl": "https://www.gravatar.com/avatar/bf6eab15bd0d4c2712b91ea83172f980?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 04:53:48"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 17,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971225",
- "username": "kazumidavies813",
- "fullName": "Kazumi Davies (kazumidavies813)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971225/medium/c21a537592e11f6972745ff4d6182d12.jpeg",
- "joined": "2021-10-21 09:33:45"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 17,
- "target": 28,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830086",
- "username": "Kirschm",
- "fullName": "Kirschm",
- "avatarUrl": "https://www.gravatar.com/avatar/eb37d97855a77d257dfaf8b6daf645d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 01:28:58"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 17,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820344",
- "username": "tonylove0505",
- "fullName": "tonylove0505",
- "avatarUrl": "https://www.gravatar.com/avatar/bc3bbdc8c35b53244941d817e8779ac7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 10:47:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 17,
- "target": 1267,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900372",
- "username": "h2-so4",
- "fullName": "H2-SO4 (h2-so4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900372/medium/0e2d91393c967253a354ded009b0df61.png",
- "joined": "2021-08-29 08:00:37"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 16,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914877",
- "username": "alexding",
- "fullName": "Alex (alexding)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14914877/medium/d5cd27d11988bc77c9d6dc68a9aa8ae5.jpg",
- "joined": "2021-09-09 00:39:15"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 16,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13831937",
- "username": "atamerco23",
- "fullName": "Ata Çağan Atamer (atamerco23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13831937/medium/e1a794be136eb53ee2ec1d58afe8f370.jpg",
- "joined": "2021-08-06 09:13:53"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 16,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717710",
- "username": "damianmartelletti",
- "fullName": "Damian Martelletti (damianmartelletti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717710/medium/519dad3fb3793a299c0c24f5e9ec46f6.jpg",
- "joined": "2021-04-19 04:44:23"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 16,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14933019",
- "username": "Nodral",
- "fullName": "Nodral",
- "avatarUrl": "https://www.gravatar.com/avatar/c49a614198d66adaecf930dea95b8419?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 05:11:03"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 16,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13546290",
- "username": "YBHwang",
- "fullName": "Yuchan Hwang (YBHwang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13546290/medium/5bed4686e2d38160c92ffa384999c958.jpeg",
- "joined": "2021-06-22 11:18:47"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 16,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996607",
- "username": "rigmah",
- "fullName": "성창환 (rigmah)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996607/medium/fdd3ab42388c593e2bc61fc4ebba6849.png",
- "joined": "2021-11-09 13:39:26"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 16,
- "target": 16,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13555518",
- "username": "linxd",
- "fullName": "linxd",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13555518/medium/7857fc7cd3690f272e61c6c33185c508.png",
- "joined": "2021-05-20 21:49:07"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 16,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576034",
- "username": "Cryptocoins333",
- "fullName": "Cryptocoins333",
- "avatarUrl": "https://www.gravatar.com/avatar/dcd887ed90526ab29769d7c9d4e2a902?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 19:26:56"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 16,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695278",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/7d7eb99d78eddfb00041d1d0433d6e9f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 19:22:52"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 16,
- "target": 14,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14353306",
- "username": "kvdbve34",
- "fullName": "HSD Channel (kvdbve34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14353306/medium/413ef0013c32d733ecc690e5d7445d0e.png",
- "joined": "2021-04-07 01:29:19"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 16,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13992489",
- "username": "shehazrin",
- "fullName": "Sheik Hazrin Bin Sheik Othman (shehazrin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13992489/medium/0c72d2c9f06da9369b1feceaf3d0f648.jpeg",
- "joined": "2020-11-18 10:24:29"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 16,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693050",
- "username": "Luuck4s",
- "fullName": "Lucas Lima (Luuck4s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693050/medium/4c771a227b48f3be61dedc652acbefe1.jpeg",
- "joined": "2021-04-01 09:00:38"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 16,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871250",
- "username": "Kiepasaaaaa",
- "fullName": "Kiepasaaaaa",
- "avatarUrl": "https://www.gravatar.com/avatar/abd1d53abc1ac7a2913000a934adeff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 14:07:12"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 16,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676482",
- "username": "Behnamp02",
- "fullName": "Behnamp02",
- "avatarUrl": "https://www.gravatar.com/avatar/a562b100a050b267d59bc8f4cc3a1026?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 19:20:12"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 16,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14597850",
- "username": "iggyiccy",
- "fullName": "Iggy (iggyiccy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597850/medium/1b9ccd160d1d9c3807b5de89f0333bc8.png",
- "joined": "2021-04-23 21:03:06"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 15,
- "target": 29,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572502",
- "username": "Little_UY_Scuti",
- "fullName": "Little_UY_Scuti",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572502/medium/148d3f5d928a6f4954f004570812debf.jpg",
- "joined": "2021-01-11 10:50:16"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 15,
- "target": 17,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867008",
- "username": "LJian",
- "fullName": "LJian",
- "avatarUrl": "https://www.gravatar.com/avatar/495d44b77952b5132b203781a3911fe0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 00:56:06"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 15,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970317",
- "username": "natsnats",
- "fullName": "natsnats",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970317/medium/3bf7365a2c248c83944a92590efecbdf.png",
- "joined": "2021-10-20 15:57:24"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 15,
- "target": 20,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14506010",
- "username": "arafat877",
- "fullName": "arafat bouchafra (arafat877)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14506010/medium/36b5c3cd4edc933544e9998ee647314e.jpeg",
- "joined": "2021-03-14 19:09:16"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 15,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717068",
- "username": "realtho",
- "fullName": "daniellesniak (realtho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717068/medium/a598805684a9d5a1fcf970131ce59963.jpeg",
- "joined": "2021-04-18 15:33:21"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 15,
- "target": 16,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "15027127",
- "username": "sunnyyyc",
- "fullName": "sunnyyyc",
- "avatarUrl": "https://www.gravatar.com/avatar/e4592835622152ea1bb4e87ca028bed8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 00:32:15"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 15,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033202",
- "username": "Huynhanh883",
- "fullName": "Huynhanh83 (Huynhanh883)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033202/medium/9283f613d1807b20fdbc4c7a07a54ed1.png",
- "joined": "2019-11-21 01:17:46"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 15,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14992833",
- "username": "Nommie",
- "fullName": "Nommie",
- "avatarUrl": "https://www.gravatar.com/avatar/6eadf26d494174c45ea18d5af36b6f66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 15:30:16"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 15,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988359",
- "username": "Alex-crowdin1",
- "fullName": "Alex-crowdin1",
- "avatarUrl": "https://www.gravatar.com/avatar/1f1fb859727ed0498314b12d234a3468?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-19 08:30:04"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 15,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14867004",
- "username": "JRay",
- "fullName": "JRay",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867004/medium/82c9ff6ab75bffb7784d244698b3becc.jpg",
- "joined": "2021-08-05 00:45:45"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 15,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666408",
- "username": "gregosaure",
- "fullName": "Gregory Kalscheuer (gregosaure)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666408/medium/99af6b68941ee050aa03bd23c1ec27aa.jpeg",
- "joined": "2021-03-13 12:59:42"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 15,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "15024245",
- "username": "gayathri.ramanujam.2021",
- "fullName": "Gayathri Ramanujam (gayathri.ramanujam.2021)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024245/medium/334a06e375b4e1726f745adff19eadb3.png",
- "joined": "2021-11-20 14:01:51"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 15,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13744177",
- "username": "Asix",
- "fullName": "Alexei Onishchuk (Asix)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13744177/medium/dbee0e581341d2b96a5a12c620b1e5fa.png",
- "joined": "2020-07-19 20:48:09"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 15,
- "target": 18,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686246",
- "username": "ahmanrz",
- "fullName": "Ahmad Manzoor (ahmanrz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686246/medium/6e7aaa8d2ec45055ba82a3ce3dc6af34.jpeg",
- "joined": "2021-03-27 17:59:55"
- },
- "languages": [
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 15,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876232",
- "username": "takbass7",
- "fullName": "kittichart Seneewong na ayudhaya (takbass7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876232/medium/e51cba47d7f770c4fee549426ed45e8e.jpg",
- "joined": "2021-08-12 02:54:21"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 15,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563490",
- "username": "GPorlando",
- "fullName": "Orlando García Parra (GPorlando)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563490/medium/c606f7aa932c65e87021cb8aa275b579.jpg",
- "joined": "2021-04-18 18:22:04"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 15,
- "target": 17,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14988257",
- "username": "khafidprayoga",
- "fullName": "Khafid Prayoga (khafidprayoga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988257/medium/90f049a63e6c2b1d6775756247dbdc5a.jpeg",
- "joined": "2021-11-03 03:22:38"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 15,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13300225",
- "username": "lyubomyr888",
- "fullName": "lyubomyr888",
- "avatarUrl": "https://www.gravatar.com/avatar/e76d945a28b65f1aebf7b110307bd8ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-28 08:33:47"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 15,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14677792",
- "username": "Emad980",
- "fullName": "Emad980",
- "avatarUrl": "https://www.gravatar.com/avatar/f4db43698e06d9d7319575cf3e0b510b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 19:31:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 15,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548152",
- "username": "tonisanchezdev",
- "fullName": "tonisanchezdev",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548152/medium/db8b130a43f224e86ee40f329ed4d115.jpg",
- "joined": "2020-12-24 10:58:02"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 15,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545802",
- "username": "lacontra",
- "fullName": "lacontra",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545802/medium/b39638ebf5c2d8620189f776469687b5.png",
- "joined": "2020-12-22 02:26:57"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 15,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757010",
- "username": "jesusrobot9000",
- "fullName": "Jesus Velasco (jesusrobot9000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757010/medium/58e209756be429d085fe644e8fff8d26.jpeg",
- "joined": "2021-05-14 15:43:41"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 15,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610312",
- "username": "chala11",
- "fullName": "chala11",
- "avatarUrl": "https://www.gravatar.com/avatar/56f316068e07fac52a7c9af021aae1e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 05:44:12"
- },
- "languages": [
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 15,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13616778",
- "username": "spoorthi_s",
- "fullName": "Spoorthi Satish (spoorthi_s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13616778/medium/b3ca39ba82be6d81f60d6f90aeb7f5b0.jpeg",
- "joined": "2021-05-14 12:17:08"
- },
- "languages": [
- {
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 15,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024397",
- "username": "AM113",
- "fullName": "AM113",
- "avatarUrl": "https://www.gravatar.com/avatar/b735be89478a1b1d81ca55d1cc4e2cce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 17:19:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 15,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14218736",
- "username": "offcode",
- "fullName": "Adam Schmideg (offcode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14218736/medium/a4438c582e6702dd1d8fda820d0eaacf.jpeg",
- "joined": "2020-04-21 11:44:35"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 14,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14901548",
- "username": "ctz0411",
- "fullName": "ctz0411",
- "avatarUrl": "https://www.gravatar.com/avatar/cf42c2743649e5d62fb172dcde84594e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-30 05:21:40"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 14,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005325",
- "username": "dmrdemircioglu08",
- "fullName": "Demir Demircioglu (dmrdemircioglu08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005325/medium/07bdd1addeecac3fa5c9d1c4469fcdd3.jpeg",
- "joined": "2021-11-16 07:07:47"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 14,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738918",
- "username": "tlumaczenia.kijowski",
- "fullName": "Michał Kijowski (tlumaczenia.kijowski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738918/medium/f23bbb027ce85512c533103a19cf0608.png",
- "joined": "2021-05-05 05:38:57"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 14,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14991627",
- "username": "isemau",
- "fullName": "Isemau Antong Tie (isemau)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991627/medium/e6eecc0d9401f25366b7e6020b466415.png",
- "joined": "2021-11-05 14:04:23"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 14,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14044564",
- "username": "3bdelrhmann",
- "fullName": "Abdelrhman Mohamed (3bdelrhmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14044564/medium/6d2569fb21f5327b814707a35215d3ae.jpeg",
- "joined": "2019-11-29 09:47:44"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 14,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14791670",
- "username": "nestisamet",
- "fullName": "Samet TEMIZER (nestisamet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791670/medium/9ebd2f349d30bf2a7ea46cf7b33ff0ac.jpeg",
- "joined": "2021-06-08 17:12:53"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 14,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738314",
- "username": "srecko.ivetic",
- "fullName": "Srećko Ivetić (srecko.ivetic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738314/medium/d980606aa34d961b2ee524edf09502b8.jpeg",
- "joined": "2021-05-04 17:29:44"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 14,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595814",
- "username": "mhj3056",
- "fullName": "mh Junior (mhj3056)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595814/medium/a47d756cc7c13f42ac7d8632b70dc7b9.jpg",
- "joined": "2021-01-26 19:20:29"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 14,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14158559",
- "username": "BruceLvJC",
- "fullName": "吕锦程 (BruceLvJC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158559/medium/6173bbb0f2c1da287c7c3864d98fd739.jpg",
- "joined": "2021-11-16 03:44:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 14,
- "target": 38,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822530",
- "username": "krishnagaurav",
- "fullName": "krishnagaurav",
- "avatarUrl": "https://www.gravatar.com/avatar/80cfc37428c1f903133c139927c52fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 03:45:19"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 14,
- "target": 668,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312562",
- "username": "ValentinDiscord",
- "fullName": "Valentin (ValentinDiscord)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312562/medium/d65ab707acfea5a7acda465bd6b57a49.gif",
- "joined": "2021-01-17 10:04:50"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 14,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034331",
- "username": "sjadrzvani1998",
- "fullName": "sjadrzvani1998",
- "avatarUrl": "https://www.gravatar.com/avatar/f5eb76929dad34e5283b059b1a231d88?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 15:32:33"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 14,
- "target": 17,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14044196",
- "username": "ankushpartapsingh",
- "fullName": "ankushpartapsingh",
- "avatarUrl": "https://www.gravatar.com/avatar/5035829814ea0fa92b8b8e237b2e0d86?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-28 16:02:46"
- },
- "languages": [
- {
- "id": "pa-IN",
- "name": "Punjabi"
- }
- ],
- "translated": 14,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13188316",
- "username": "pakokrew",
- "fullName": "Pacien Boisson (pakokrew)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13188316/medium/dc5354eac07cccb2529a5e207b1fad5b.jpeg",
- "joined": "2021-01-31 06:45:34"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 14,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779562",
- "username": "andrejmirovic",
- "fullName": "andrejmirovic",
- "avatarUrl": "https://www.gravatar.com/avatar/43a8f2a3cb58903a933b335fe6a98e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 03:36:25"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 14,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13964881",
- "username": "gabriellas",
- "fullName": "gabriellas",
- "avatarUrl": "https://www.gravatar.com/avatar/7988a6bb3994c6e8623bc37c6ebf7681?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-28 05:41:42"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 14,
- "target": 15,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14602998",
- "username": "ravraw",
- "fullName": "ravraw",
- "avatarUrl": "https://www.gravatar.com/avatar/3d6db81005b3bc860e5ec87357925a55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-31 12:37:12"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 14,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14324304",
- "username": "hsinwen.wu",
- "fullName": "Hsin-Wen Wu (hsinwen.wu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14324304/medium/9251680c550511978eb4f5e1569185d6.jpeg",
- "joined": "2020-06-29 10:53:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 14,
- "target": 22,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "15029535",
- "username": "vitekurban0",
- "fullName": "Vit Urban (vitekurban0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029535/medium/d1920ed19810c05c35d43b4ea0a8ff85.png",
- "joined": "2021-11-24 14:31:15"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 14,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000275",
- "username": "gstvribs",
- "fullName": "Gustavo Ribeiro (gstvribs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000275/medium/4e40d6163c8df85f9868e1d39806f4a7.jpeg",
- "joined": "2019-10-01 22:07:40"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 13,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14033992",
- "username": "RedStillPlays",
- "fullName": "RedStillPlays",
- "avatarUrl": "https://www.gravatar.com/avatar/b162408428680fb3d6be1b7382414e47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 14:44:43"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 13,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14996737",
- "username": "_FROGGIE__",
- "fullName": "_FROGGIE__",
- "avatarUrl": "https://www.gravatar.com/avatar/c57a9394def752f461ff5f3b9d8dfad4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 03:11:19"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 13,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101317",
- "username": "Omer_Sagar",
- "fullName": "Omer_Sagar",
- "avatarUrl": "https://www.gravatar.com/avatar/481485f26fa364f23abeafbc720528bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 11:48:18"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 13,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "12895198",
- "username": "lacriment",
- "fullName": "Taha İbrahim (lacriment)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12895198/medium/0e6b5e9d61eb2b57e7f98330c84a6c3d.png",
- "joined": "2019-11-04 01:54:49"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 13,
- "target": 12,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959485",
- "username": "gabrocheleau",
- "fullName": "Gabriel Rocheleau (gabrocheleau)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959485/medium/c03b8e7ceadf394bdc3dfcf4e04b29ae.jpeg",
- "joined": "2019-08-22 13:08:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 13,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14757788",
- "username": "zeririzakaria10",
- "fullName": "ninja games (zeririzakaria10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757788/medium/58c27779ad2481afce1af14d09bed24f.png",
- "joined": "2021-05-15 05:46:29"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 13,
- "target": 104,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759974",
- "username": "onurf",
- "fullName": "Onur F. Özben (onurf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759974/medium/f4393009ab051483d1e3fb647bff34bb.png",
- "joined": "2021-05-16 18:13:00"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 13,
- "target": 12,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14654666",
- "username": "zennomi",
- "fullName": "Tuấn Anh Nguyễn Đăng (zennomi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654666/medium/76a0948cea9c66434c3c6d8650a5e040.jpg",
- "joined": "2021-03-05 11:08:57"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 13,
- "target": 26,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781034",
- "username": "Tomfoxy0852",
- "fullName": "Tomfoxy0852",
- "avatarUrl": "https://www.gravatar.com/avatar/51f8a651a0b3b57c601d5cf147e3ae29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 03:13:31"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 13,
- "target": 13,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560082",
- "username": "myshd11",
- "fullName": "서현동 (myshd11)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560082/medium/6d8d9dcff6308ceb09ff44bf0b6d11f3.jpg",
- "joined": "2021-01-02 19:34:29"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 13,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695500",
- "username": "wuhjie",
- "fullName": "wuhjie",
- "avatarUrl": "https://www.gravatar.com/avatar/a714b8339e9f214d7f577c93230fd5ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 04:37:21"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 13,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14456614",
- "username": "matousch",
- "fullName": "David Matoušek (matousch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14456614/medium/36397004003e01786ac8e254a78c6e74.jpeg",
- "joined": "2020-10-14 16:11:41"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 13,
- "target": 13,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14845082",
- "username": "overeasyy",
- "fullName": "overeasyy",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845082/medium/c3f88881536bddc4173514c2d6c6103a.png",
- "joined": "2021-07-19 06:37:07"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 13,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14347080",
- "username": "anis7365",
- "fullName": "anis7365",
- "avatarUrl": "https://www.gravatar.com/avatar/b7cbad0b5cbea96bdc97c42edcdc00db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-18 01:37:55"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 13,
- "target": 11,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643482",
- "username": "areejsalem30",
- "fullName": "Areej Salem (areejsalem30)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643482/medium/2112012f11df09ad2e3390120c49fe0a.jpg",
- "joined": "2021-02-26 08:32:42"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 12,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14632574",
- "username": "Rorical",
- "fullName": "Rorical",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632574/medium/278721df71dd6a9e56c9479c2cd46cd4.png",
- "joined": "2021-10-26 09:43:23"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 12,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816800",
- "username": "Sumari",
- "fullName": "Rizqie Alfian mutha (Sumari)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816800/medium/73d286f72b7399e0c4acb1ed4a3812b8.jpeg",
- "joined": "2021-06-26 15:47:30"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 12,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854298",
- "username": "sahlawiz",
- "fullName": "Ahmed Sahlawiz (sahlawiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854298/medium/d74fe68289efd3614f5daeff99c71d00.jpeg",
- "joined": "2021-07-26 18:22:05"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- },
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 12,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620444",
- "username": "ChanHoiLam",
- "fullName": "ChanHoiLam",
- "avatarUrl": "https://www.gravatar.com/avatar/b65458c49743c5ea9875a791a2cc61c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 17:32:55"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 12,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897212",
- "username": "iosadcha",
- "fullName": "iosadcha",
- "avatarUrl": "https://www.gravatar.com/avatar/21196c23e9d447ef70bb9f014aa28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 15:58:31"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 12,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14359374",
- "username": "shahzad.shahid02",
- "fullName": "shahzad shahid (shahzad.shahid02)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14359374/medium/83a1af05764dfe82667ce51d9cdd8d5a.jpeg",
- "joined": "2020-07-29 00:16:31"
- },
- "languages": [
- {
- "id": "ur-IN",
- "name": "Urdu (India)"
- }
- ],
- "translated": 12,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759534",
- "username": "ThTy56",
- "fullName": "Thomas T. (ThTy56)",
- "avatarUrl": "https://www.gravatar.com/avatar/4cac9a501952bdb258c2b786bac7335a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 11:07:13"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 12,
- "target": 12,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659246",
- "username": "mohamed.faisal.alabsy",
- "fullName": "Mohammed Faisal (mohamed.faisal.alabsy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659246/medium/563188834be6f03958979efc191b9f4a.jpg",
- "joined": "2021-03-08 17:59:56"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 12,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694080",
- "username": "120123vadik",
- "fullName": "Вадим Карайван (120123vadik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694080/medium/2eb83aa25be4969cc18afea0e1a8c855.jpg",
- "joined": "2021-04-02 01:54:20"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 12,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12397171",
- "username": "shohagkhan",
- "fullName": "Mahbub Alam Khan (shohagkhan)",
- "avatarUrl": "https://www.gravatar.com/avatar/173a5a80a89c2af52d1b2c17d48e97cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-04 06:40:13"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 12,
- "target": 26,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601398",
- "username": "teknolojiohk",
- "fullName": "Teknoloji Oyun ve Haber (teknolojiohk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601398/medium/a5ae295c0bcf756cb94fda1cb805af5f.jpeg",
- "joined": "2021-01-30 08:55:00"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 12,
- "target": 14,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14451648",
- "username": "vadimibr",
- "fullName": "Sunday Night (vadimibr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14451648/medium/00ffc7066a6e832c974569d04fc320d2.png",
- "joined": "2020-10-14 21:01:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 12,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699938",
- "username": "Depolice",
- "fullName": "Edvardas Dervis (Depolice)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699938/medium/279d2e40a8a6d6481ec1110aa6bfe95b.jpeg",
- "joined": "2021-04-06 08:21:24"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 12,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781120",
- "username": "hamed.ashrafi",
- "fullName": "Hamed Ashrafi (hamed.ashrafi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781120/medium/d555db51771c6342e7a1cbe6ac78039b.jpeg",
- "joined": "2021-06-01 04:49:59"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 12,
- "target": 11,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639610",
- "username": "FizziPizzi",
- "fullName": "Трюк (FizziPizzi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14639610/medium/99a114fae9f918965d14b000c52596f6.jpg",
- "joined": "2021-02-24 08:41:50"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 12,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14873224",
- "username": "haren724",
- "fullName": "haren724",
- "avatarUrl": "https://www.gravatar.com/avatar/05e8aae1708a6c3b39dbf300192da0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 02:56:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 12,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731202",
- "username": "Sungbin",
- "fullName": "Sungbin Lee (Sungbin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731202/medium/8766d6dd42fc7373d7b9580769ff4baa.jpg",
- "joined": "2021-04-29 07:18:06"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 12,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573438",
- "username": "icicek",
- "fullName": "ilhan_cicek (icicek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573438/medium/c1f9bbf4366cec061f2f0a203c6e6af5.jpg",
- "joined": "2021-01-12 03:54:12"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 12,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14627782",
- "username": "nancyjlau",
- "fullName": "nancyjlau",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627782/medium/d01b02b82ab8803dcab92213bff03868.png",
- "joined": "2021-02-16 20:54:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 11,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14147457",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/afc252ac9f8b036a713b3c203e89006a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 22:21:25"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 11,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021479",
- "username": "dcecil",
- "fullName": "dcecil",
- "avatarUrl": "https://www.gravatar.com/avatar/20e2ccb1fb13cd9dbf3fc8d218747a99?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-18 11:18:18"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 11,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673692",
- "username": "alisa_lisenok_lebedeva",
- "fullName": "Алиса Лебедева (alisa_lisenok_lebedeva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673692/medium/921ac82058296bc13ebc53fff332d8dc.jpeg",
- "joined": "2021-03-18 17:38:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 11,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771770",
- "username": "Archeb",
- "fullName": "Archeb",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771770/medium/97595f39d34a57c19224c3cc05a73dd0.jpeg",
- "joined": "2021-05-25 04:51:18"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 11,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14805464",
- "username": "lijiachuan",
- "fullName": "lijiachuan",
- "avatarUrl": "https://www.gravatar.com/avatar/7742cb188d8172fd11144ebcbc1d1d1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 20:55:34"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 11,
- "target": 533,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14540192",
- "username": "jkbishbish",
- "fullName": "John Bishop (jkbishbish)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14540192/medium/d7ec76648f3d50e6c8396b4430550f0e.jpeg",
- "joined": "2020-12-17 12:49:58"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627372",
- "username": "bleucode",
- "fullName": "Maia (bleucode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627372/medium/1cce0811394fa677eb1059b92da32b48.jpeg",
- "joined": "2021-02-16 15:12:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686158",
- "username": "MrRFN",
- "fullName": "MrRFN",
- "avatarUrl": "https://www.gravatar.com/avatar/227488675c690f210303a2fd9206a610?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 16:10:43"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 11,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14565190",
- "username": "Sky_NiniKo",
- "fullName": "Sky_NiniKo",
- "avatarUrl": "https://www.gravatar.com/avatar/481074cbd6e69b55df35ad0431c75082?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-06 06:37:43"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051596",
- "username": "anise_W",
- "fullName": "anise_W",
- "avatarUrl": "https://www.gravatar.com/avatar/52d7136b87106a558c2bff9acdadcd95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-12 12:41:37"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 11,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708720",
- "username": "DanielLopezSainz",
- "fullName": "DanielLopezSainz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708720/medium/61502a29fddc4e6ceca1e731a593dfc3.png",
- "joined": "2021-04-12 10:56:18"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14364198",
- "username": "rezaa_kh",
- "fullName": "Reza Khojasteh (rezaa_kh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364198/medium/755513245ba7ad31b5565724a43e7757.jpeg",
- "joined": "2020-08-02 08:02:25"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 11,
- "target": 13,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639094",
- "username": "matiricardo99",
- "fullName": "Mati Ricardo (matiricardo99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14639094/medium/0be11b0699a488d1ba362ae3c5172590.jpg",
- "joined": "2021-02-24 02:50:57"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14618330",
- "username": "prosalife",
- "fullName": "Mikhail Krainov (prosalife)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618330/medium/777cd082c17d5d200d9f46724992378b.jpeg",
- "joined": "2021-02-10 09:31:24"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 11,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "13995555",
- "username": "muhadire2029",
- "fullName": "muhamed abdo (muhadire2029)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13995555/medium/938c1298bb55094d63701f6e0b2cde67.jpg",
- "joined": "2019-11-11 21:31:32"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 11,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767094",
- "username": "joshuaoliverdouglas",
- "fullName": "Joshua Douglas (joshuaoliverdouglas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767094/medium/3114c0487b19c05afa8dc283c94c3a76.png",
- "joined": "2021-05-21 12:26:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14796460",
- "username": "PA.SA.",
- "fullName": "PA.SA.",
- "avatarUrl": "https://www.gravatar.com/avatar/19d3a27d39c9b423f90d07241055ba95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 05:32:43"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 11,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978481",
- "username": "alvaro98",
- "fullName": "Alvaro Ch (alvaro98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978481/medium/03b22aa2e5a993b6a9864b8a9342eb46.png",
- "joined": "2021-10-27 15:01:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13017030",
- "username": "yavorysynka",
- "fullName": "Olga Yavorska (yavorysynka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13017030/medium/0ee0bf7d9ee331160d16e596b5e3f102.jpg",
- "joined": "2019-12-04 10:58:01"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 11,
- "target": 9,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14000483",
- "username": "harkce",
- "fullName": "harkce",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000483/medium/fc9a15b787ef07f2ff61c89fdad21dd5.jpeg",
- "joined": "2019-10-02 04:37:58"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 11,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14205710",
- "username": "abdou7191",
- "fullName": "abdou7191",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14205710/medium/5c3234dfa54fbd78a3143e26af1f741c.png",
- "joined": "2020-04-13 17:49:06"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 11,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768172",
- "username": "settarovrustem483",
- "fullName": "Рустем Сеттаров (settarovrustem483)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14768172/medium/3657322c0a00fe3ce0869a6ee4863bef.png",
- "joined": "2021-05-22 09:46:23"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10,
- "target": 243,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020309",
- "username": "sandeepsahu",
- "fullName": "Sandeep Kumar Sahu (sandeepsahu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020309/medium/19858a2b34be230b1d361e5a0be59757.jpeg",
- "joined": "2021-11-17 12:46:31"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734966",
- "username": "emih.antonijo",
- "fullName": "Antonijo Emih (emih.antonijo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734966/medium/d8828625eab1f5da6826a88b8bb62b94.jpeg",
- "joined": "2021-05-02 03:48:00"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 10,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958779",
- "username": "kevin.moreau655",
- "fullName": "Kévin Moreau (kevin.moreau655)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958779/medium/3f5b3d32118d59bf14db8053362e627a.png",
- "joined": "2021-10-14 07:26:08"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 10,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14181387",
- "username": "ashleyjr6",
- "fullName": "ashleyjr6",
- "avatarUrl": "https://www.gravatar.com/avatar/3027b9efb9b598a48bfff530313a1c5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-31 02:37:29"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14411940",
- "username": "Nadzir",
- "fullName": "Nadzir",
- "avatarUrl": "https://www.gravatar.com/avatar/0dd0b2398b7e611878a0735e74639aee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 13:11:42"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 10,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12606390",
- "username": "tapikdj",
- "fullName": "Артем Неволько (tapikdj)",
- "avatarUrl": "https://www.gravatar.com/avatar/bc926fae7ca33e4bf7849ec14b11ed7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 05:50:17"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831430",
- "username": "markmaksi",
- "fullName": "markmaksi",
- "avatarUrl": "https://www.gravatar.com/avatar/4bb4f33b60109a59a63fb7372d791e38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-08 00:32:40"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 10,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985003",
- "username": "m.naeimy",
- "fullName": "Meysam Naeimy (m.naeimy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985003/medium/0e21b7a5dcd802d0203fceadaf2ef22f.png",
- "joined": "2021-11-01 04:40:38"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 10,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980905",
- "username": "Ash601",
- "fullName": "Ash601",
- "avatarUrl": "https://www.gravatar.com/avatar/0c0e62552585e1262e035565688260e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 06:05:50"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14928669",
- "username": "knowwell",
- "fullName": "knowwell",
- "avatarUrl": "https://www.gravatar.com/avatar/f84d23e5e00cfce6b33405177e3a76f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-18 22:10:09"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657118",
- "username": "evgasadov",
- "fullName": "Евгений Асадов (evgasadov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657118/medium/468b1c43cdb413475632521eb8b7f031.jpeg",
- "joined": "2021-08-18 12:34:57"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10,
- "target": 154,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778724",
- "username": "tpereira2005",
- "fullName": "Tomás Pereira (tpereira2005)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778724/medium/03bd53bd35c7863f67760bc34e0289f7.jpg",
- "joined": "2021-05-30 10:59:08"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877334",
- "username": "Ergi18",
- "fullName": "Ergi (Ergi18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877334/medium/4c61f13d89fbae72ff61c0bc2071b6fe.png",
- "joined": "2021-08-12 13:55:33"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 10,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026807",
- "username": "arican35",
- "fullName": "arican35",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026807/medium/a64aca2b97f9362fdcee4d7ac1145477.png",
- "joined": "2021-11-22 16:46:22"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 10,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881646",
- "username": "constan2305",
- "fullName": "constan2305",
- "avatarUrl": "https://www.gravatar.com/avatar/cf566e9043b091f6632d9260c70fb352?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-15 16:39:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 10,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "15023385",
- "username": "Aparticle",
- "fullName": "Aparticle",
- "avatarUrl": "https://www.gravatar.com/avatar/7145c493f2cd4d97b93ef42b16a88478?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 21:22:29"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 10,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14534424",
- "username": "allex77755",
- "fullName": "Алексей Алексей (allex77755)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14534424/medium/3b106b72a492eba4b5ae553647e72327.jpg",
- "joined": "2020-12-13 07:32:33"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752122",
- "username": "karna.prayoga13",
- "fullName": "Karna Prayoga (karna.prayoga13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752122/medium/53cc72d28bf7b8287340892b9aa2c315.png",
- "joined": "2021-05-12 01:14:52"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674814",
- "username": "octoslav",
- "fullName": "Vyacheslav Eliseev (octoslav)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674814/medium/1376cc6eec0f3d7197bcc675b2e942fa.jpeg",
- "joined": "2021-03-19 12:18:04"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14778992",
- "username": "IsmaelRC",
- "fullName": "El Gato (IsmaelRC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778992/medium/646865835d4b959bf3bfca67b66ef04f.png",
- "joined": "2021-05-30 15:24:09"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 10,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745548",
- "username": "Roman4x97",
- "fullName": "Igor Romanenko (Roman4x97)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745548/medium/6af7ad276603bbede6bed93c98ed7d9b.jpeg",
- "joined": "2021-05-08 08:40:01"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14080359",
- "username": "naphahanarsa",
- "fullName": "นภา หาษอาษา (naphahanarsa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14080359/medium/a1d25b23699d8fbc6b9c32726d20f5fc.jpeg",
- "joined": "2020-01-18 05:45:55"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 10,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909647",
- "username": "tszar",
- "fullName": "tszar",
- "avatarUrl": "https://www.gravatar.com/avatar/d1a316a5f6951054e644a5eb673d5642?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 03:33:58"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 10,
- "target": 17,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983237",
- "username": "Zaqms",
- "fullName": "Zaqms",
- "avatarUrl": "https://www.gravatar.com/avatar/7948ededf44b206485cb4e1337f3036e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 23:42:17"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 10,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617412",
- "username": "basile.succeed",
- "fullName": "justreal succeed (basile.succeed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617412/medium/edd804c817d71f33ed7773ef5e254f7c.jpeg",
- "joined": "2021-02-09 19:38:10"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 10,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14342808",
- "username": "bharathpgp",
- "fullName": "bharathpgp",
- "avatarUrl": "https://www.gravatar.com/avatar/30226809aab99cbe344ae1c0e460eb0d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-14 13:37:33"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 10,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971421",
- "username": "vlahnina",
- "fullName": "vlahnina",
- "avatarUrl": "https://www.gravatar.com/avatar/a01a781871bc50e4400dbfdb996fcec5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-21 12:10:22"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 10,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14460678",
- "username": "ranjanmanishr",
- "fullName": "Manish Ranjan (ranjanmanishr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14460678/medium/3821327168d8e9ac03243100466d9fa1.jpeg",
- "joined": "2020-10-17 20:53:32"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 9,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731048",
- "username": "Xackurai",
- "fullName": "Xackurai",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731048/medium/f26e2018bffc93ae932ec0a7c8ad8775.jpeg",
- "joined": "2021-04-29 05:14:19"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727746",
- "username": "boygirlln1",
- "fullName": "Tamxom da1992 (boygirlln1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727746/medium/bb9d9d833f8280f65c9f53620fc789b3.jpeg",
- "joined": "2021-04-26 17:07:14"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14960405",
- "username": "youssef_garib",
- "fullName": "Rexson Rexson (youssef_garib)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960405/medium/3eddc7573634d80c4f9e5414242d21df.jpeg",
- "joined": "2021-10-12 20:25:19"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12406629",
- "username": "cristianolima",
- "fullName": "Cristiano Lima (cristianolima)",
- "avatarUrl": "https://www.gravatar.com/avatar/50c2f3d8215ab743f053fe1fc1107222?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 02:14:58"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646842",
- "username": "jcanlas13",
- "fullName": "jcanlas13",
- "avatarUrl": "https://www.gravatar.com/avatar/5e386b0731d2423803b522a1d92e2984?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 20:00:35"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 9,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981781",
- "username": "frameset",
- "fullName": "frameset",
- "avatarUrl": "https://www.gravatar.com/avatar/5f768fb05238d3a9ff75c4d56ce52061?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 17:04:55"
- },
- "languages": [
- {
- "id": "ku",
- "name": "Kurdish"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950571",
- "username": "hurricaneneo",
- "fullName": "hurricaneneo",
- "avatarUrl": "https://www.gravatar.com/avatar/f3de160707c989504abd9a67c89f5a83?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 03:47:56"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694870",
- "username": "osman.celikkol09",
- "fullName": "Osman Çelikkol (osman.celikkol09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694870/medium/e69e8de92b877174018cbbdfc588bd83.png",
- "joined": "2021-04-02 13:57:10"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 9,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634768",
- "username": "FireTom",
- "fullName": "Thomas Riotte (FireTom)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634768/medium/ab495d03cf23779673a9c1101625106d.jpeg",
- "joined": "2021-02-21 13:45:50"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672166",
- "username": "marius.zaharia",
- "fullName": "marius.zaharia",
- "avatarUrl": "https://www.gravatar.com/avatar/25e4a9d7c2922aab65876891d9fcb360?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 15:41:23"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 9,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15025347",
- "username": "Imothep12",
- "fullName": "Imothep12",
- "avatarUrl": "https://www.gravatar.com/avatar/2874e7a09ede048e240ddb883db8bc6b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 14:52:27"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866212",
- "username": "ramesh.jetsoft",
- "fullName": "Ramesh R (ramesh.jetsoft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866212/medium/1d8f9a5ae2f70dd83e171ebb1aeb3558.jpeg",
- "joined": "2021-08-04 09:29:29"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 9,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14196752",
- "username": "harithk.17",
- "fullName": "Harith Kamarul (harithk.17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14196752/medium/96c07ebdf4c7dea2b16141e5f354062d.jpg",
- "joined": "2020-04-08 09:32:29"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14497466",
- "username": "Tomasz80053950",
- "fullName": "Tomasz80053950",
- "avatarUrl": "https://www.gravatar.com/avatar/210a492b28765302274b11cef115900e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-15 17:31:05"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14035029",
- "username": "nestoruk93",
- "fullName": "Vasyl Nestoruk (nestoruk93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035029/medium/3cfffe4656bea0462aacb77fc6429694.jpeg",
- "joined": "2019-11-12 09:06:30"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 9,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801608",
- "username": "burgmancat",
- "fullName": "Andres Sanchez (burgmancat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801608/medium/37108cefa2cd3315ef2183f2d9fe70ae.jpeg",
- "joined": "2021-06-16 07:21:03"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 9,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14088799",
- "username": "adgasdghdh",
- "fullName": "adgasdghdh",
- "avatarUrl": "https://www.gravatar.com/avatar/c89739739291baeb4d8c08b016a70196?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-25 05:30:32"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 9,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14321408",
- "username": "Rambhawan",
- "fullName": "Rambhawan",
- "avatarUrl": "https://www.gravatar.com/avatar/694085c9fd3ad62bb5d234e5f2f45765?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-27 00:49:06"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 9,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12502848",
- "username": "hran",
- "fullName": "Andrii Khronenko (hran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12502848/medium/d6f0d637bd22c832aafd30f8cf964b5f.png",
- "joined": "2021-01-22 14:53:57"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 9,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14185873",
- "username": "fgorczynski",
- "fullName": "Filip Górczyński (fgorczynski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14185873/medium/39e4bd835fb01f6fa0682a374c26044a.jpg",
- "joined": "2020-04-02 05:20:41"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 9,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12817692",
- "username": "poltoray",
- "fullName": "poltoray",
- "avatarUrl": "https://www.gravatar.com/avatar/588c81f1c401f3512b1e7a4466e68485?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 07:18:36"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 9,
- "target": 14,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889596",
- "username": "thallesamott",
- "fullName": "Thalles Caramão (thallesamott)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889596/medium/3e50df6563e8389c67e773c0adc8bbc5.jpeg",
- "joined": "2021-08-20 19:23:13"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 9,
- "target": 103,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759618",
- "username": "PanteaNegra",
- "fullName": "Maryana Pantea (PanteaNegra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759618/medium/ed23a37bb50ec664979f34807af1ed31.jpg",
- "joined": "2021-05-16 12:24:36"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 9,
- "target": 255,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13991829",
- "username": "twfhyr",
- "fullName": "Mitu Tan (twfhyr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13991829/medium/ec5ddc6ce26e1723ffdcc48cb11e74c0.jpg",
- "joined": "2019-09-23 04:20:20"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 9,
- "target": 23,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586642",
- "username": "key2russia",
- "fullName": "Vladimir Pochinov (key2russia)",
- "avatarUrl": "https://www.gravatar.com/avatar/ce138bb68bff7ffa76d0c1a09fdd2388?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 02:58:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14570838",
- "username": "aktugyilmaz",
- "fullName": "Aktuğ Yılmaz (aktugyilmaz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570838/medium/ab4609990da7910d87caca2adbbd7854.jpeg",
- "joined": "2021-01-10 10:00:02"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 9,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14747066",
- "username": "Emilie696",
- "fullName": "Emilie696",
- "avatarUrl": "https://www.gravatar.com/avatar/9096c1f5b3737e2f12398886f51568e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 07:07:40"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951357",
- "username": "AH1309",
- "fullName": "AH1309",
- "avatarUrl": "https://www.gravatar.com/avatar/156ac9572ac855bbe6d377cb2175d948?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:13:11"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 8,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14786220",
- "username": "AkumaAsuramaru",
- "fullName": "Black Label (AkumaAsuramaru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786220/medium/eecd1bcb00da5c64d5718883aa99466e.jpeg",
- "joined": "2021-06-04 12:57:13"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14814346",
- "username": "ThunderDeliverer",
- "fullName": "Jan Turk (ThunderDeliverer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814346/medium/0b89b5f1816ee9e6fd8cd60e01ac357c.png",
- "joined": "2021-06-24 18:48:49"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 8,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873046",
- "username": "ycad",
- "fullName": "Cady Zhou (ycad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873046/medium/d0c199ae81e6f1e4778b04692c599483.png",
- "joined": "2021-08-09 23:11:46"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 8,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687594",
- "username": "cruzgutierrezramiro46",
- "fullName": "Ramiro Cruz Gutiérrez (cruzgutierrezramiro46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687594/medium/d18d25f17f29d4266866f7bc9633e172.jpeg",
- "joined": "2021-03-28 18:52:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973323",
- "username": "wealeyasilva87",
- "fullName": "wealeyasilva87",
- "avatarUrl": "https://www.gravatar.com/avatar/9b3a449cba7652f602deeecd41eca479?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 05:34:29"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 8,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "15005021",
- "username": "mrcvs31",
- "fullName": "Marc Vernet (mrcvs31)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005021/medium/99b5ad6194f6bf4449f55fb9a64f97c0.jpeg",
- "joined": "2021-11-16 02:05:38"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688912",
- "username": "03172358530",
- "fullName": "Asrar Ahmed (03172358530)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688912/medium/725c7fac3e573d6ffe7e253c9e50ef90.jpeg",
- "joined": "2021-03-29 15:40:21"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 8,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688996",
- "username": "BugsVskBunny",
- "fullName": "Владислав Жекунов (BugsVskBunny)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688996/medium/2879abb585b18c986c9cb323f7b46adb.jpg",
- "joined": "2021-03-29 17:15:06"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 8,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14772374",
- "username": "ssm82009",
- "fullName": "Sultan Alzahrani (ssm82009)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14772374/medium/a564a83de3921010741be671f5e9f229.jpeg",
- "joined": "2021-05-25 12:45:25"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752468",
- "username": "kedergon",
- "fullName": "Amin Hadian (kedergon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752468/medium/7937f2f9494df39c53372a741c571ae4.jpeg",
- "joined": "2021-05-12 05:55:29"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563266",
- "username": "makcimmc89",
- "fullName": "Максим Смирнов (makcimmc89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563266/medium/25df61604814781b59d0be9372dc75de.jpg",
- "joined": "2021-01-05 01:34:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 8,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667834",
- "username": "zeza",
- "fullName": "Hüseyin Öztürk (zeza)",
- "avatarUrl": "https://www.gravatar.com/avatar/175567915934b09eaddae2442bef249a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:11:45"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 8,
- "target": 7,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781240",
- "username": "herrisonfnascimento",
- "fullName": "Herrison (herrisonfnascimento)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781240/medium/7ca1a1a0b850a8d749c5e711eba35e85.png",
- "joined": "2021-06-01 06:26:06"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 8,
- "target": 51,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14223022",
- "username": "Svennies",
- "fullName": "Svennies",
- "avatarUrl": "https://www.gravatar.com/avatar/1aecdf188e4bbe1a09337f4dcf4caec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-23 20:14:29"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14783432",
- "username": "Husain7",
- "fullName": "HusainKapasi (Husain7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783432/medium/44a62ae94f5961e10f4ed656175d8ec3.jpeg",
- "joined": "2021-06-02 14:14:03"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 8,
- "target": 16,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678674",
- "username": "wl10909",
- "fullName": "wl10909",
- "avatarUrl": "https://www.gravatar.com/avatar/64ce708a727f9223a497e4cf8bdfd3c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 09:43:58"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 8,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14500864",
- "username": "iyamgondraneos",
- "fullName": "Iyam Gondraneos (iyamgondraneos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14500864/medium/5b11180320d82d67e7110613c9ef66fe.jpg",
- "joined": "2020-11-18 08:45:37"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 8,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995627",
- "username": "slelrlelgla",
- "fullName": "Sergey (slelrlelgla)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995627/medium/5c9cc272fc1131cd84293a6c6a69e5fe.jpeg",
- "joined": "2021-11-08 21:27:15"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 8,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14467440",
- "username": "nivetha23",
- "fullName": "nivetha23",
- "avatarUrl": "https://www.gravatar.com/avatar/72a722999233fec71aee226dab24f3f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-10-23 00:53:30"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 8,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896216",
- "username": "kabilan",
- "fullName": "Kabilan (kabilan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896216/medium/624d3b93f0d213ed07b9beef492d09c3.jpeg",
- "joined": "2021-08-26 00:06:02"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 8,
- "target": 254,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657340",
- "username": "FadyZarief",
- "fullName": "Fady Zarief (FadyZarief)",
- "avatarUrl": "https://www.gravatar.com/avatar/916820c2307b32d337d9e04d9b485ecb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 10:59:42"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 8,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936915",
- "username": "seilkhankulzhanov",
- "fullName": "Seilkhan Kulzhanov (seilkhankulzhanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936915/medium/be75dda81c208776fb04ab0e365f3e49.png",
- "joined": "2021-09-24 22:44:39"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730690",
- "username": "Khasanboy91",
- "fullName": "Khasanboy Abdullaev H7 (Khasanboy91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730690/medium/272dc1528c197c387c450230a21bc893.jpg",
- "joined": "2021-04-28 20:45:56"
- },
- "languages": [
- {
- "id": "uz",
- "name": "Uzbek"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813110",
- "username": "nefcorp",
- "fullName": "nefcorp",
- "avatarUrl": "https://www.gravatar.com/avatar/cdb2e3e35746dffd44051a409a082939?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-23 20:40:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 7,
- "target": 9,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14969101",
- "username": "FernandoAriel",
- "fullName": "Fernando Ariel Rodriguez (FernandoAriel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969101/medium/d7de9a5c295620ca49956106bb6938d0.jpeg",
- "joined": "2021-10-19 19:53:36"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 7,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030445",
- "username": "eth31",
- "fullName": "eth31",
- "avatarUrl": "https://www.gravatar.com/avatar/309c2f8ce89e7c67718e3ba5ef91bef8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 08:55:27"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755480",
- "username": "mohammad.famo",
- "fullName": "Mohammad Famo (mohammad.famo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755480/medium/c00eecfb1c432d916c106b04ca4c3755.jpeg",
- "joined": "2021-05-14 02:57:09"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 7,
- "target": 10,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754350",
- "username": "hektopaxvil",
- "fullName": "hektopaxvil",
- "avatarUrl": "https://www.gravatar.com/avatar/489e647a808df935e0fe2f80a631240a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 09:31:42"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028277",
- "username": "mowaii",
- "fullName": "mowaii",
- "avatarUrl": "https://www.gravatar.com/avatar/01a6398959b9c93dcc3ed0f406eb857a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 16:20:40"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 7,
- "target": 8,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816094",
- "username": "karislam0322",
- "fullName": "karis lam (karislam0322)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816094/medium/6a5e736d81288d51f223a0f107d09d8a.png",
- "joined": "2021-06-26 03:40:39"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14773280",
- "username": "ricardosouzasantos12",
- "fullName": "Ricardo Santos (ricardosouzasantos12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773280/medium/5a652d356da40908fe076115199f1edc.jpeg",
- "joined": "2021-05-26 05:47:50"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775416",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/6497883f93acdfc4506f4fffe6d43a0a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 13:35:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 7,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14952901",
- "username": "hungchann",
- "fullName": "Hùng Phạm (hungchann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952901/medium/3b3728b72bc86770df44c9458d96f2cf.png",
- "joined": "2021-10-06 20:16:56"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 7,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855956",
- "username": "RRKamil",
- "fullName": "RRKamil",
- "avatarUrl": "https://www.gravatar.com/avatar/787a4f479b22ca62f51ecbe4be547b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-28 03:37:27"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14748362",
- "username": "klger",
- "fullName": "klüger (klger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748362/medium/2d098bcd62dd7fcec689be982e10afa0.png",
- "joined": "2021-05-09 21:38:01"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 7,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952215",
- "username": "faky0n",
- "fullName": "faky0n",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952215/medium/ad676f1d985c405e7a8648d9e1fff49f.jpg",
- "joined": "2021-10-06 08:37:48"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 7,
- "target": 9,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996887",
- "username": "berksukahramn",
- "fullName": "Berksu Kahraman (berksukahramn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996887/medium/e27fe47548643527bf782f6881c5318b.png",
- "joined": "2021-11-09 18:40:09"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787946",
- "username": "importwyf",
- "fullName": "汪一帆 (importwyf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787946/medium/887ff1f844f3421fdad67e477aa2b0f7.png",
- "joined": "2021-06-06 01:57:28"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 7,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992673",
- "username": "dmars300",
- "fullName": "Diego Mares (dmars300)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992673/medium/4add4365ba4bd588ffc2988d4d7966fa.jpeg",
- "joined": "2021-11-06 12:40:50"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034399",
- "username": "Blob.eth",
- "fullName": "Blob.eth",
- "avatarUrl": "https://www.gravatar.com/avatar/4a544345569010a1d328df3bfcbc11ad?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 17:14:24"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14080781",
- "username": "dgordg85",
- "fullName": "Антон Петров (dgordg85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14080781/medium/6801087e5ea5a3b7bdf56a8fdea0cf82.jpg",
- "joined": "2021-01-07 12:58:51"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 7,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14570128",
- "username": "mingxvsky",
- "fullName": "mingxvsky",
- "avatarUrl": "https://www.gravatar.com/avatar/4303a7b94aeb60e8dd6a9d428cec14f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 20:58:18"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 7,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14634442",
- "username": "hina5633030331",
- "fullName": "水浦比奈子 (hina5633030331)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634442/medium/0d51169805ff11c6ac971b077ce5d595.jpg",
- "joined": "2021-02-21 11:51:03"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 7,
- "target": 13,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14693928",
- "username": "vasilevsky",
- "fullName": "vasilevsky",
- "avatarUrl": "https://www.gravatar.com/avatar/702c82c246d335fbc786c0f136677ff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 22:31:31"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 7,
- "target": 60,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560930",
- "username": "ariosto.ponterio",
- "fullName": "Ariosto Ponterio (ariosto.ponterio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560930/medium/4e55904d467702daf3ee6b7021afd8cc.png",
- "joined": "2021-01-03 11:13:18"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632856",
- "username": "dbwg25",
- "fullName": "유주니 (dbwg25)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632856/medium/e37be366099501cdcf48cf2c2e177be9.jpeg",
- "joined": "2021-02-20 06:42:44"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 7,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632436",
- "username": "dkoval",
- "fullName": "Dmytro Koval (dkoval)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632436/medium/99039f1fbb13f12187c9f08d10cbd50a.jpeg",
- "joined": "2021-02-20 00:50:39"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 7,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14625098",
- "username": "sasha7rasha",
- "fullName": "Alex SPD (sasha7rasha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625098/medium/edf9ab59bd259b580368ab804b48cf8a.gif",
- "joined": "2021-02-15 05:58:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 7,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14625120",
- "username": "jdbrh16",
- "fullName": "jdbrh16",
- "avatarUrl": "https://www.gravatar.com/avatar/3a91cf276217076de4f40a29a408a951?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 08:59:46"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13419366",
- "username": "EzigboOmenana",
- "fullName": "EzigboOmenana",
- "avatarUrl": "https://www.gravatar.com/avatar/7dcc22982518fd214e4db47ca34ad5dd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 04:25:22"
- },
- "languages": [
- {
- "id": "ig",
- "name": "Igbo"
- }
- ],
- "translated": 7,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545334",
- "username": "Ed1",
- "fullName": "Ed1",
- "avatarUrl": "https://www.gravatar.com/avatar/3b77bdfdd3c21245ed6b5e23ccf976c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 02:02:09"
- },
- "languages": [
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689480",
- "username": "sykoramarek74",
- "fullName": "Marek Sýkora (sykoramarek74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689480/medium/ebf18dbce0a18270c89d7d7794227844.jpeg",
- "joined": "2021-03-30 03:30:36"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14544610",
- "username": "anezdoank84",
- "fullName": "Muhammad Ariesta (anezdoank84)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544610/medium/4421d54e18059665ee9037d0bef6216c.jpg",
- "joined": "2020-12-21 05:14:10"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14026590",
- "username": "florijan.kocbek",
- "fullName": "Florijan Kocbek (florijan.kocbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14026590/medium/303298c7b37fc4252b47f87fa21f2825.jpg",
- "joined": "2021-01-06 11:36:15"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 7,
- "target": 6,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640814",
- "username": "1936094566",
- "fullName": "1936094566",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640814/medium/cb1747813ca6bdd8c467d6f8edcec19c.png",
- "joined": "2021-02-24 22:10:07"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 7,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916763",
- "username": "MuhammadharoonShaukat",
- "fullName": "MuhammadharoonShaukat",
- "avatarUrl": "https://www.gravatar.com/avatar/4c2d21221e2483bea9d18c71516793e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 06:52:58"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 6,
- "target": 39,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14103835",
- "username": "hrkrshnn",
- "fullName": "Harikrishnan Mulackal (hrkrshnn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14103835/medium/922ba8f9957c54294283e7f42b9d6854.png",
- "joined": "2020-02-06 11:16:57"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 6,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710992",
- "username": "nihadermina2010",
- "fullName": "Nihad Mahovic (nihadermina2010)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710992/medium/47ec1a0e2ee639420cf6fbf258eefd7f.jpg",
- "joined": "2021-04-14 01:43:23"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14998947",
- "username": "JohanZwaan",
- "fullName": "JohanZwaan",
- "avatarUrl": "https://www.gravatar.com/avatar/059ccba4dec87bf92777b65c96d4eea5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 07:53:25"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 6,
- "target": 114,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710684",
- "username": "sort0905291712",
- "fullName": "蔡加盟 (sort0905291712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710684/medium/9fa52441908f577f867b51a43ac00aac.jpg",
- "joined": "2021-04-13 18:40:19"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 6,
- "target": 13,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707288",
- "username": "canerdundar",
- "fullName": "canerdundar",
- "avatarUrl": "https://www.gravatar.com/avatar/0a322693a378cac44da61d515f4e001d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 10:03:16"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 6,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14152701",
- "username": "zsoltkecskes93",
- "fullName": "zsolt kecskés (zsoltkecskes93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14152701/medium/da3778be8b4769676038ecf1b474d69c.jpeg",
- "joined": "2020-03-11 09:27:05"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14636234",
- "username": "Dialditto",
- "fullName": "Dialditto",
- "avatarUrl": "https://www.gravatar.com/avatar/d02ad4e13334b048f5cc43ebddab859f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 09:52:38"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 6,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667186",
- "username": "dawidthur",
- "fullName": "Dawid Mateusz Zimoń (dawidthur)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667186/medium/1a4ed5be4891a763568337ffde5b57c9.jpeg",
- "joined": "2021-03-14 05:58:34"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14145377",
- "username": "Harrypotter3379",
- "fullName": "Harrypotter3379",
- "avatarUrl": "https://www.gravatar.com/avatar/15e1a918a5abd876ed5c9ba6ccc3c0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-05 04:17:23"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 6,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14513238",
- "username": "yeft",
- "fullName": "yeft",
- "avatarUrl": "https://www.gravatar.com/avatar/39be11322956e117df828db0396ab2e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 12:47:33"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 6,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554002",
- "username": "AmonVJhin",
- "fullName": "Charon Jhin (AmonVJhin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554002/medium/5059d0c39f37b1ce70dad969feec5f2b.jpeg",
- "joined": "2020-12-28 16:37:30"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14660944",
- "username": "ko.no.do1023",
- "fullName": "Koko Sweet (ko.no.do1023)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660944/medium/83d2a56c3ff5320eedd26348707000f9.jpeg",
- "joined": "2021-03-09 22:09:24"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 6,
- "target": 8,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14192884",
- "username": "hasank0c",
- "fullName": "hasank0c",
- "avatarUrl": "https://www.gravatar.com/avatar/8304522e526a7122da0314573dcbd1a1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-06 06:40:57"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14203984",
- "username": "Bilal.Om",
- "fullName": "Bilal AbuHayyah (Bilal.Om)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14203984/medium/d9e58bf028603bba15520fad91e0ab13.jpeg",
- "joined": "2020-08-03 01:15:35"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14703180",
- "username": "kmasuda",
- "fullName": "kmasuda",
- "avatarUrl": "https://www.gravatar.com/avatar/a43d50338c716437078657061c8d7280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-08 08:24:16"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 6,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14838604",
- "username": "lieolik",
- "fullName": "Olga Shablykina (lieolik)",
- "avatarUrl": "https://www.gravatar.com/avatar/16597afc89da43effc248922ddd94267?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-31 08:49:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14544944",
- "username": "emersonlaurentino",
- "fullName": "Emerson Laurentino (emersonlaurentino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544944/medium/307497c490b2c0b11fd011f5f1938cf8.jpeg",
- "joined": "2021-08-16 17:12:36"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613592",
- "username": "talipcakir",
- "fullName": "talipcakir",
- "avatarUrl": "https://www.gravatar.com/avatar/0e69b48581847d1e15c5352d94454c44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 11:27:31"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14132617",
- "username": "ebimoradvand",
- "fullName": "ebi moradvand (ebimoradvand)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14132617/medium/bdc08e01d406df20078137371a78f618.jpg",
- "joined": "2020-02-24 06:02:17"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868830",
- "username": "Fluida",
- "fullName": "Fluida",
- "avatarUrl": "https://www.gravatar.com/avatar/5cf30c9add2145daaef2294f4a936ee2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-26 09:08:24"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 6,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878484",
- "username": "FahadOsaimi",
- "fullName": "Fahad Osaimi (FahadOsaimi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878484/medium/a1b78f9090f604c464b910d59796731a.png",
- "joined": "2021-08-13 08:46:38"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 6,
- "target": 118,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755920",
- "username": "Neleroth",
- "fullName": "Neleroth",
- "avatarUrl": "https://www.gravatar.com/avatar/83bc5363a3fc673cafb79b8f3af1f0c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 07:29:12"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 6,
- "target": 8,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983447",
- "username": "vincentlaucy",
- "fullName": "Chun Yin Vincent Lau (vincentlaucy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983447/medium/209213ddd4e53e7b0996911c0436f71d.png",
- "joined": "2021-10-31 02:01:03"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 6,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888266",
- "username": "sandrogomes101",
- "fullName": "Sandro Gomes (sandrogomes101)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888266/medium/ec3720087a2af8b90ac90119f026a2f8.png",
- "joined": "2021-08-19 21:46:06"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679216",
- "username": "aljuriz",
- "fullName": "Amaury Bravo Aljuriz (aljuriz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14679216/medium/6ef48f45024d04960f36c402109cb60d.jpeg",
- "joined": "2021-03-22 17:29:47"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 6,
- "target": 5,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576088",
- "username": "shivanshu4755",
- "fullName": "Shivanshu Mishra (shivanshu4755)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576088/medium/16fdde265fa36b6f9a1be9712e83d1d9.jpeg",
- "joined": "2021-01-13 20:36:55"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 6,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575508",
- "username": "portovino881",
- "fullName": "portovino881",
- "avatarUrl": "https://www.gravatar.com/avatar/c98b81402cb632310a58924819bf2136?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 11:46:24"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 6,
- "target": 10,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771650",
- "username": "EasonWW",
- "fullName": "EasonWW",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771650/medium/bdfc60c7672791687a1ad086f1690ae3.jpeg",
- "joined": "2021-05-25 03:22:43"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 6,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14692200",
- "username": "TakashiOka",
- "fullName": "TakashiOka",
- "avatarUrl": "https://www.gravatar.com/avatar/b9860c3cc5cb27dcf18d9a6489e197c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 19:23:57"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 6,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14726760",
- "username": "setiawanst",
- "fullName": "setiawanst",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726760/medium/5b90f1769b62ac80a10233b8b9558eed.jpg",
- "joined": "2021-04-26 00:45:45"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14052148",
- "username": "mikaelrb",
- "fullName": "Mikael Robert (mikaelrb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14052148/medium/0194400d73fdeeb0e12eec633f88034d.jpeg",
- "joined": "2019-12-13 16:20:02"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13964197",
- "username": "Ldibartolo",
- "fullName": "Ldibartolo",
- "avatarUrl": "https://www.gravatar.com/avatar/2122a92514b788b40e427154fec7e3d7?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-27 13:27:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14047362",
- "username": "shailesh.nift",
- "fullName": "shailesh kumar (shailesh.nift)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14047362/medium/188b22e96fabe3e3ec66c9b930f49e7c.jpeg",
- "joined": "2019-12-04 12:12:45"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14193244",
- "username": "chapuisatstephane",
- "fullName": "chapuisatstephane",
- "avatarUrl": "https://www.gravatar.com/avatar/81a9079e8bffed8894415f18df1a7eb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-06 10:15:29"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 5,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "13081328",
- "username": "spolrot",
- "fullName": "Simon Polrot (spolrot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13081328/medium/ed09cf991faa0301f004879cac6df50b.jpg",
- "joined": "2019-09-28 05:19:52"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660598",
- "username": "DupK",
- "fullName": "Jules Dupont (DupK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660598/medium/a40b20fba99a1de1b947c30caf013c88.jpeg",
- "joined": "2021-03-09 15:20:43"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14743370",
- "username": "CLEMENT2000",
- "fullName": "CLEMENT2000",
- "avatarUrl": "https://www.gravatar.com/avatar/d046f1b1be28c3149460610025eb7a9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 07:09:23"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 5,
- "target": 53,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14040008",
- "username": "Ochtadin",
- "fullName": "Ochtadin",
- "avatarUrl": "https://www.gravatar.com/avatar/daeb380dcf4c98b583b9eb61a259e58c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-21 14:16:04"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726474",
- "username": "zzhou",
- "fullName": "zzhou",
- "avatarUrl": "https://www.gravatar.com/avatar/5fb2ce40f06959b253dabc90bece479d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 16:56:27"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 5,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14663476",
- "username": "bray_careto",
- "fullName": "Bray Caréto (bray_careto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663476/medium/f4de50be25f047d5dca157159471930f.jpeg",
- "joined": "2021-03-11 11:14:37"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 5,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14588194",
- "username": "jotunn",
- "fullName": "jotunn",
- "avatarUrl": "https://www.gravatar.com/avatar/98f7f37f845f0910dcae9bfd7173dcb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 14:58:47"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 5,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "13180742",
- "username": "gostovicvukasin46",
- "fullName": "Vukasin Gostovic (gostovicvukasin46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13180742/medium/a45a8a6c1ac78c9310b25f12ea1ea688.jpg",
- "joined": "2021-01-15 08:57:06"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790916",
- "username": "Smaily",
- "fullName": "Smaily",
- "avatarUrl": "https://www.gravatar.com/avatar/85245f1a50ea372727e77bfc29d7fa98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 08:17:06"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 5,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672492",
- "username": "ukhack",
- "fullName": "ukhack",
- "avatarUrl": "https://www.gravatar.com/avatar/ca3545be49d2d0807fcbb9f6435a3ff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 21:34:10"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 5,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892132",
- "username": "bolingboling",
- "fullName": "bolingboling",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892132/medium/0d05975017e3f5fb32c005f3dca098f5.jpeg",
- "joined": "2021-08-30 22:58:21"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 5,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13243539",
- "username": "gilbertginsberg",
- "fullName": "Steven Gilbert (gilbertginsberg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13243539/medium/a9e7442c74a08d1eab055e952f41fa44.jpeg",
- "joined": "2019-08-09 00:39:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14946543",
- "username": "babasik.ab",
- "fullName": "Aleksandr Babenko (babasik.ab)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946543/medium/c1a91da93a9c5fb25d83a22e0171111d.png",
- "joined": "2021-10-01 19:18:40"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 5,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618122",
- "username": "araripi",
- "fullName": "araripi",
- "avatarUrl": "https://www.gravatar.com/avatar/aa97df0f1bc994240b5faeb555d4203e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-10 19:43:49"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 5,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591374",
- "username": "SGROI",
- "fullName": "SGROI",
- "avatarUrl": "https://www.gravatar.com/avatar/3c10b664c7037867d104a19c1e5c4c07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 18:49:15"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807818",
- "username": "Trettionde",
- "fullName": "Trettionde",
- "avatarUrl": "https://www.gravatar.com/avatar/85bd16a83cde2748b53ccf3036c6a81e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 03:48:20"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 5,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051341",
- "username": "qiaoliang89",
- "fullName": "Liang Qiao (qiaoliang89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14051341/medium/7958cbfce27c72eb181f0c63edf4d83b.jpeg",
- "joined": "2021-06-15 23:06:08"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 5,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14048507",
- "username": "hknaltinbas",
- "fullName": "Hakan Altınbaş (hknaltinbas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048507/medium/98569053b2625adaa3f717b50e5e2463.jpeg",
- "joined": "2019-12-06 13:38:16"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 5,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773928",
- "username": "Sozkil",
- "fullName": "Sozkil",
- "avatarUrl": "https://www.gravatar.com/avatar/113f21ec90fe9266365c154fe40c4178?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 13:47:42"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 5,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13980841",
- "username": "phernandes277",
- "fullName": "phernandes277",
- "avatarUrl": "https://www.gravatar.com/avatar/44755ec05f9c60c54ddba8eda72bfde1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-12 07:16:33"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599152",
- "username": "Sawansolanki",
- "fullName": "Sawan Solanki (Sawansolanki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599152/medium/0c8ff52eed5f9ed85e4f204472e0f412.jpeg",
- "joined": "2021-01-28 16:12:01"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "13872871",
- "username": "AntwnhsM.",
- "fullName": "Antwnhs M. (AntwnhsM.)",
- "avatarUrl": "https://www.gravatar.com/avatar/b478b15a022566e1891c6ec6055af76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-31 05:36:11"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 5,
- "target": 7,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12658643",
- "username": "dirt3009",
- "fullName": "Emir (dirt3009)",
- "avatarUrl": "https://www.gravatar.com/avatar/55605080b2490591262896be930bed38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 04:36:30"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 5,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653070",
- "username": "laurelx1",
- "fullName": "laurelx1",
- "avatarUrl": "https://www.gravatar.com/avatar/7e21d6619a652b17915967c99b41adc5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 10:44:41"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14329762",
- "username": "lixingnan5",
- "fullName": "李幸男 (lixingnan5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14329762/medium/7428604bb37ef36b8f8425ca4b9daaa2.jpg",
- "joined": "2020-07-03 14:23:00"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 5,
- "target": 8,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14669638",
- "username": "Bigchain",
- "fullName": "Виталий Добрый (Bigchain)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669638/medium/542782d0aa0b95801fbf719f0b5578d9.jpg",
- "joined": "2021-03-15 23:32:14"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907321",
- "username": "vitalli",
- "fullName": "Віталій Петрів (vitalli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907321/medium/287a90ef0414e5cc3e9b9719a44c47cc.jpeg",
- "joined": "2021-09-03 06:27:42"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 5,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12930933",
- "username": "kerocate",
- "fullName": "kerocate",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12930933/medium/98233a4ea01a32d666991eedd9c30a9a.png",
- "joined": "2021-07-23 13:16:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 5,
- "target": 10,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "13554238",
- "username": "snns999",
- "fullName": "MOHD AL. (snns999)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13554238/medium/b000a0a79abe7bd6e039852d7e741c9d.jpg",
- "joined": "2021-10-22 05:11:51"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 5,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814760",
- "username": "zhaoyonghe",
- "fullName": "zhaoyonghe",
- "avatarUrl": "https://www.gravatar.com/avatar/1849350f7cb43f8db85818f35ebc6edf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 03:53:16"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 4,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807258",
- "username": "fccxw",
- "fullName": "fccxw",
- "avatarUrl": "https://www.gravatar.com/avatar/5f111ebb9921906dfb0d53101ed27b94?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 16:13:21"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 4,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14355292",
- "username": "CreaZyp154",
- "fullName": "CreaZyp154",
- "avatarUrl": "https://www.gravatar.com/avatar/e5a5039f8551e5de7bf7146ffb31a928?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-26 07:26:21"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "15021219",
- "username": "olexandr13",
- "fullName": "olexandr13",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021219/medium/ce5d674ca767f1212b184bc3878a368d.jpeg",
- "joined": "2021-11-18 07:12:54"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737918",
- "username": "saeednajafi959",
- "fullName": "دنیای موازی (saeednajafi959)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737918/medium/c35be6100a6ddd43d7be39a9abb3ad8d.jpeg",
- "joined": "2021-05-04 11:18:51"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14373706",
- "username": "kbeker",
- "fullName": "Karol Beker (kbeker)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14373706/medium/c89f32888e25c6408fa3bd56a7911670.png",
- "joined": "2020-08-10 12:47:05"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14353294",
- "username": "lubo.cur123",
- "fullName": "Lubo Čurgala (lubo.cur123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14353294/medium/f76ec1fcc5914c88cdb27fd0db2e64d8.jpeg",
- "joined": "2020-07-23 16:11:55"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14786760",
- "username": "Christiadarma",
- "fullName": "David Christiadarma Setiawan (Christiadarma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786760/medium/0a9de74a9a0f585ec24105d566a0170b.png",
- "joined": "2021-06-05 00:23:57"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14254558",
- "username": "mofriy",
- "fullName": "mofriy",
- "avatarUrl": "https://www.gravatar.com/avatar/0a42057e1f7dbba20a96661f945da4ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-13 09:16:48"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14103549",
- "username": "mrtbrr",
- "fullName": "Murat Han (mrtbrr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14103549/medium/a6110a8040a839711e89ed55a576d363.jpeg",
- "joined": "2020-02-06 07:23:38"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988859",
- "username": "treecz",
- "fullName": "Jan Stránský (treecz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13988859/medium/1dc2e70a169815577dbd2cc191cbcbc2.jpeg",
- "joined": "2019-09-19 17:38:24"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14986013",
- "username": "santosmichael3856",
- "fullName": "Santos Michael (santosmichael3856)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14986013/medium/7145f141cdce5146f180f8455875b76c.png",
- "joined": "2021-11-02 03:21:22"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771528",
- "username": "gsonicsad",
- "fullName": "GSS Germanstreetstyle (gsonicsad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771528/medium/c51abef9fc773d08735d7b7445d524c4.png",
- "joined": "2021-05-25 01:12:01"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771990",
- "username": "Badzso7",
- "fullName": "Badzso7",
- "avatarUrl": "https://www.gravatar.com/avatar/18691a412a18e3ebfcde4550b1f19748?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 07:50:50"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978357",
- "username": "burhan.khambati13",
- "fullName": "Burhanuddin Khambati (burhan.khambati13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978357/medium/24080cd625f74a46f2dc7bac7a31bf9a.png",
- "joined": "2021-10-27 13:11:15"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 4,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693968",
- "username": "hazem121986",
- "fullName": "حازم المغازى (hazem121986)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693968/medium/c9985512ac32b62c0ee97bd52a387b55.jpg",
- "joined": "2021-04-01 23:15:42"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974785",
- "username": "leandroesl3",
- "fullName": "LEANDRO ESL (leandroesl3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974785/medium/b1c7b07092a354e83b5b4be250c49218.jpeg",
- "joined": "2021-10-24 18:31:42"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998839",
- "username": "jony.stn",
- "fullName": "Jony S (jony.stn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998839/medium/db1c6ba3b1fe58d45e94b7d36ba46677.png",
- "joined": "2021-11-11 06:22:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "8411",
- "username": "nijel",
- "fullName": "Michal Čihař (nijel)",
- "avatarUrl": "https://www.gravatar.com/avatar/abbcd6344e160597fb2694f25c46149f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-08 09:20:32"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14964031",
- "username": "Charlongolo",
- "fullName": "Charlie (Charlongolo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964031/medium/dbf2d915e98e9db707c54f4df467701f.jpg",
- "joined": "2021-10-15 18:14:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14780684",
- "username": "ssfuentes.99",
- "fullName": "sebastian fuentes (ssfuentes.99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780684/medium/043f791a09160411432cc5c7146f6aaa.jpeg",
- "joined": "2021-05-31 20:26:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737034",
- "username": "Hyeo_n",
- "fullName": "Hyeo_n",
- "avatarUrl": "https://www.gravatar.com/avatar/6f7556096b5c4db5979cd960daa73107?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 19:54:49"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666112",
- "username": "tramanhluong228",
- "fullName": "Anh LNT (tramanhluong228)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666112/medium/36fe2b2f8de789d1a17fa3359e5bf0ae.jpeg",
- "joined": "2021-03-13 10:32:20"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14665962",
- "username": "sadegh7708",
- "fullName": "sadegh7708",
- "avatarUrl": "https://www.gravatar.com/avatar/da53f0ad022fda6679397596fd283ae5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 06:16:07"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13843383",
- "username": "rezarria",
- "fullName": "rezarria",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13843383/medium/d397cd99de14a9d74f3962239e0db91a.jpg",
- "joined": "2021-06-08 07:28:33"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14159293",
- "username": "yb191080",
- "fullName": "NAKON90120952 (yb191080)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14159293/medium/1fdcda9f5e1b51692fef0e63b8e79473.jpg",
- "joined": "2020-03-16 10:38:49"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785220",
- "username": "rokinot",
- "fullName": "Rokinot Channel (rokinot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785220/medium/4a6f6852105b606735b08d45c74b0fd7.png",
- "joined": "2021-06-03 22:55:22"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663688",
- "username": "Elvis339",
- "fullName": "Elvis (Elvis339)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663688/medium/ee99bf7167513672a05a4bda2ee9e428.jpeg",
- "joined": "2021-03-11 14:04:01"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14188975",
- "username": "radkobanchev00",
- "fullName": "R. MorgenStern (radkobanchev00)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14188975/medium/a583eee4bd70b9585b2d7f00246490cc.jpg",
- "joined": "2020-04-03 16:32:27"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815664",
- "username": "Marigold0106",
- "fullName": "Marigold0106",
- "avatarUrl": "https://www.gravatar.com/avatar/75b35629161d0cd3e8255e81efacf231?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 16:42:48"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 4,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810086",
- "username": "pinapalmieri",
- "fullName": "pina palmieri (pinapalmieri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810086/medium/42fdb28f8d445e4e2774845014a7fffa.jpeg",
- "joined": "2021-06-25 03:38:21"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 4,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736936",
- "username": "Nagihan",
- "fullName": "Nagihan Erbaş (Nagihan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736936/medium/da62b14c0eb800dba5863fc2834f35f7.jpeg",
- "joined": "2021-05-03 17:39:32"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861960",
- "username": "isaul",
- "fullName": "isaul",
- "avatarUrl": "https://www.gravatar.com/avatar/44895e9c99a8fde7d2fd25632415e024?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 11:13:13"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 4,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14597740",
- "username": "Berkov",
- "fullName": "Judas Berkov (Berkov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597740/medium/0a073b278154bc96d0802ad1fee59b4f.jpg",
- "joined": "2021-01-28 01:05:22"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14717562",
- "username": "PeterTakahashi",
- "fullName": "Peter Takahashi (PeterTakahashi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717562/medium/0a655e422c3b96351c89bb35120cdb02.jpeg",
- "joined": "2021-04-19 01:58:50"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 4,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879636",
- "username": "joseferde",
- "fullName": "Josef Erde (joseferde)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879636/medium/ddd7c42a87b94cfaf57783881127f849.jpeg",
- "joined": "2021-08-14 06:23:01"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 4,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636794",
- "username": "Nignas64",
- "fullName": "Nignas64",
- "avatarUrl": "https://www.gravatar.com/avatar/d6cd15396d9abb89a4b493efb56ce160?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 17:59:58"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842426",
- "username": "Brijesh_GeetAshok",
- "fullName": "Brijesh GeetAshok (Brijesh_GeetAshok)",
- "avatarUrl": "https://www.gravatar.com/avatar/4332a3cb3ddb2f8f80400c9175924f19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 19:12:12"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632796",
- "username": "good.studentsun",
- "fullName": "Rentao Sun (good.studentsun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632796/medium/7a8ea0a073a1a5944a23bd39d02cdcb8.jpg",
- "joined": "2021-02-21 13:56:35"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 4,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 4
- },
- {
- "user": {
- "id": "14549416",
- "username": "fymingf",
- "fullName": "Min Fu (fymingf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549416/medium/fd35815355034e41f00470db0bbea34d.jpg",
- "joined": "2020-12-24 23:09:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14623146",
- "username": "motube2030",
- "fullName": "Mo Tube (motube2030)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623146/medium/7efc74358ea2f542a1bb2faec0dee427.jpg",
- "joined": "2021-02-13 15:43:14"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567754",
- "username": "TiXO",
- "fullName": "TiXO",
- "avatarUrl": "https://www.gravatar.com/avatar/72a88e60f64a918f25afd886483584f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 18:27:25"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549250",
- "username": "brizzo1982",
- "fullName": "Daniele Brizzolari (brizzo1982)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549250/medium/f498eb35d5a5c6213f6a5aff97ae3c73.jpeg",
- "joined": "2020-12-24 17:53:29"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14383758",
- "username": "617087085",
- "fullName": "Abuukar Cali Macow Addres Abuukar Cali (617087085)",
- "avatarUrl": "https://www.gravatar.com/avatar/8602c5c97583123cc015acfbe94bc890?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-06 18:16:03"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 4,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609240",
- "username": "tiagogontias",
- "fullName": "Tiago Martins Gontias (tiagogontias)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609240/medium/ae7855a4b988007f53cebde5456cccba.jpeg",
- "joined": "2021-02-04 14:37:26"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14574530",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/12572d2d29eaf4edd7bca9265c7fb7bd?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 14:57:13"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14072349",
- "username": "kmmmeissa",
- "fullName": "Karam Eissa (kmmmeissa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14072349/medium/f204930b2c06b2fd5e15f1728cd4cb5c.jpg",
- "joined": "2020-01-11 03:33:39"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14668266",
- "username": "zladupka",
- "fullName": "Zla Dupka (zladupka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14668266/medium/9a47ff2fefed04e81000beba521783e9.jpg",
- "joined": "2021-03-15 01:03:17"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 3,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561650",
- "username": "jaekiki",
- "fullName": "Jaekee Lee (jaekiki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561650/medium/ece557cd177c2d281c0b048f03d53102.jpg",
- "joined": "2021-01-03 23:42:02"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14069573",
- "username": "Buntymittal",
- "fullName": "Kamal Kumar Mittal (Buntymittal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14069573/medium/802afa60459eaeff40981741eab6272c.jpeg",
- "joined": "2020-01-08 22:05:37"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14779512",
- "username": "amkelhatw",
- "fullName": "Aly Hatw (amkelhatw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779512/medium/c1bff336933b85526e7bba7078cc79be.png",
- "joined": "2021-05-31 02:39:03"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14718060",
- "username": "patrykremiszewski95",
- "fullName": "Patryk Remiszewski (patrykremiszewski95)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718060/medium/703056468685f001cd29edf00e36549b.png",
- "joined": "2021-04-19 09:47:35"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14091843",
- "username": "joanadugarte",
- "fullName": "joanadugarte",
- "avatarUrl": "https://www.gravatar.com/avatar/500f73a1f808d69c8ea704c3ddf49adb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-27 21:41:09"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667410",
- "username": "Den_ziiz",
- "fullName": "ismanto (Den_ziiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667410/medium/137da446e2f798bacb3382aa78ac1441.jpg",
- "joined": "2021-03-14 09:54:25"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696528",
- "username": "Deibiei",
- "fullName": "Deibiei",
- "avatarUrl": "https://www.gravatar.com/avatar/75726f5d2b8e1b96d38e15f811c46f35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-04 00:23:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14067507",
- "username": "MainzenanZ0935313252",
- "fullName": "MainzenanZ 0935313252 (MainzenanZ0935313252)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14067507/medium/91d036661e766bf018813a0cb34f0188.jpeg",
- "joined": "2020-01-07 07:13:45"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666804",
- "username": "leipayne168",
- "fullName": "lei payne (leipayne168)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666804/medium/df90c12157632350cb2bef5a418175b3.jpg",
- "joined": "2021-03-13 20:48:24"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14122089",
- "username": "perfor_001",
- "fullName": "perfor_001",
- "avatarUrl": "https://www.gravatar.com/avatar/c72f3e18b62a6d719cf089c56d677825?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-16 16:23:20"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747658",
- "username": "Domokun",
- "fullName": "皇耀司 (Domokun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747658/medium/7fa1b0756d7a431ba502f4f6fd305f3f.png",
- "joined": "2021-05-12 19:24:19"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 3,
- "target": 193,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816306",
- "username": "Coppka",
- "fullName": "Copkka Doktor (Coppka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816306/medium/e6b16332c695ea9e29db0e5aa83b9331.png",
- "joined": "2021-06-26 08:05:07"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929161",
- "username": "nonglekkaewkang60",
- "fullName": "Nonglek Keawkang (nonglekkaewkang60)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929161/medium/94141a2c17bad7643d8b54e7d7137224.jpeg",
- "joined": "2021-09-19 09:22:23"
- },
- "languages": [
- {
- "id": "eu",
- "name": "Basque"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851016",
- "username": "0633233490a",
- "fullName": "olena godhzh (0633233490a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851016/medium/3d6589dac72d5fe109d7fda192fa93d8.png",
- "joined": "2021-07-23 22:11:33"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697934",
- "username": "tlqcfr",
- "fullName": "tlqcfr",
- "avatarUrl": "https://www.gravatar.com/avatar/e51c31a7804d94b1bd4aef101830b639?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 04:08:03"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14716942",
- "username": "EmalHamza",
- "fullName": "EmalHamza",
- "avatarUrl": "https://www.gravatar.com/avatar/935cf54759907b371e411100e93e1bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 12:58:15"
- },
- "languages": [
- {
- "id": "fa-AF",
- "name": "Dari"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620554",
- "username": "aliosman1988bg",
- "fullName": "Ali Osman (aliosman1988bg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620554/medium/2815dc5a4e4a8c6a4c7032e12798311d.jpg",
- "joined": "2021-02-11 20:09:03"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849118",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/6ad4fd22a59d84105c2f97a68d661071?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 14:08:30"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13805545",
- "username": "crowbit",
- "fullName": "crowbit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13805545/medium/8b944306602f95c5d9adce2ef8bb68e7.jpg",
- "joined": "2021-09-05 08:08:52"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778950",
- "username": "diplomaticone66",
- "fullName": "diplomaticone66",
- "avatarUrl": "https://www.gravatar.com/avatar/2c8a4711e2887877dfbbba99b5c09a6e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 14:45:56"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057178",
- "username": "takira182542",
- "fullName": "Somsak Takira (takira182542)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057178/medium/919e590a4f53fe42033a55c90cefdd9f.jpeg",
- "joined": "2019-12-23 15:32:48"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14065171",
- "username": "aleksandrpereslavcev5",
- "fullName": "Александр Переславцев (aleksandrpereslavcev5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14065171/medium/624fef659758d550b1ca9de67bb1b349.jpg",
- "joined": "2020-01-05 07:41:32"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679978",
- "username": "Danil174",
- "fullName": "Danil174",
- "avatarUrl": "https://www.gravatar.com/avatar/a260980d1b63deeb4a4c6986209173a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 07:19:25"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759260",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/5b96ffce5b4fd476cec3890b501a5e35?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 09:13:59"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14685444",
- "username": "lixuan",
- "fullName": "lixuan",
- "avatarUrl": "https://www.gravatar.com/avatar/2d02e161c76f25ae122bbedfb08546df?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 02:57:51"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14685344",
- "username": "reachfem24",
- "fullName": "reachfem24",
- "avatarUrl": "https://www.gravatar.com/avatar/f3a85193c5702af124605202ef74ead5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 00:15:55"
- },
- "languages": [
- {
- "id": "yo",
- "name": "Yoruba"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14026594",
- "username": "sandykay26",
- "fullName": "sandykay26",
- "avatarUrl": "https://www.gravatar.com/avatar/584a93747fd00cb12dd8f412bd9ec511?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-05 11:30:22"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761046",
- "username": "Marcello087",
- "fullName": "Marcello087",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761046/medium/e8c304e5afacfaab6c6d8242294739bc.png",
- "joined": "2021-05-17 11:37:44"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581838",
- "username": "xyligan77",
- "fullName": "xyligan 77 (xyligan77)",
- "avatarUrl": "https://www.gravatar.com/avatar/af43d638b6fd8ebefcd491384ef04e43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 18:20:25"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896038",
- "username": "brunoviniciusdepaularodrigues",
- "fullName": "Bruno Rodrigues (brunoviniciusdepaularodrigues)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896038/medium/459cc98d3903c4055eba1c4c680adefa.jpeg",
- "joined": "2021-08-25 19:46:04"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3,
- "target": 80,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "17032",
- "username": "Tomasdd",
- "fullName": "Tomas Darius Davainis (Tomasdd)",
- "avatarUrl": "https://www.gravatar.com/avatar/00fca4999843cb0ed6bf3a01841600f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 15:17:01"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681790",
- "username": "aprisnando",
- "fullName": "aprisnando",
- "avatarUrl": "https://www.gravatar.com/avatar/472239fe8b1ad8b709704a9ecc1e3e90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 10:31:44"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754906",
- "username": "Mohamed.Ghadi",
- "fullName": "Simo Ghadi (Mohamed.Ghadi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754906/medium/3f7ddede5807ef7bd87e1721b9d214c4.jpeg",
- "joined": "2021-05-13 16:42:16"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14034084",
- "username": "vanderleiekobe",
- "fullName": "Vanderlei Lima (vanderleiekobe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034084/medium/47eab71fe955de8809e44de257853bd9.jpeg",
- "joined": "2019-11-10 18:34:28"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581334",
- "username": "mehdi140",
- "fullName": "mehdi140",
- "avatarUrl": "https://www.gravatar.com/avatar/2f1f84aa560f49e21becb5d11922adf1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 12:40:48"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 3,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982037",
- "username": "denyirawan",
- "fullName": "Deny Anggi Irawan (denyirawan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982037/medium/2c440d6ee2460ca805d18915e7fd58b0.png",
- "joined": "2021-10-29 23:12:29"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14060807",
- "username": "cristianalexjoy",
- "fullName": "Cristian Alex-joy (cristianalexjoy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14060807/medium/f563053fbece6f9b5e4d3f8c11989b1e.jpeg",
- "joined": "2019-12-31 08:01:04"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577278",
- "username": "ELR0ND",
- "fullName": "ELR0ND",
- "avatarUrl": "https://www.gravatar.com/avatar/d08e656b486b766ed910e31fbc9a1846?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 14:23:52"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690552",
- "username": "anthonymartinez702",
- "fullName": "Anthony M. (anthonymartinez702)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690552/medium/bbecfc2cef2d9f264faa93ee61a2cbe1.jpeg",
- "joined": "2021-03-30 18:27:06"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14886122",
- "username": "anjaymu09",
- "fullName": "Ammaifali (anjaymu09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886122/medium/ab2bf62d80ac24ffb5170b3e72b46aeb.jpg",
- "joined": "2021-08-18 10:15:07"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679178",
- "username": "CindyLou00",
- "fullName": "CindyLou00",
- "avatarUrl": "https://www.gravatar.com/avatar/030a946612f9148b8fe4db2ea922ce0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 16:47:57"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678408",
- "username": "maafakkaamel",
- "fullName": "Егор Арте́мов (maafakkaamel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678408/medium/76c69d9a908bc704f0ce1245742087c0.jpg",
- "joined": "2021-03-22 06:57:33"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575762",
- "username": "4mfetamin",
- "fullName": "4mfetamin",
- "avatarUrl": "https://www.gravatar.com/avatar/9df8a46a49e1f7123f659ecaf2208430?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 14:32:42"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904476",
- "username": "shady_neli98",
- "fullName": "Nelkka Dobrewa (shady_neli98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904476/medium/9094393854d8e690e3ff1870061cdb5f.jpeg",
- "joined": "2021-09-01 07:17:07"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601794",
- "username": "reinhold.puhr",
- "fullName": "Reinhold Puhr (reinhold.puhr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601794/medium/7acb85a54ff8ea998e5446ddb67b0b2d.jpg",
- "joined": "2021-01-30 14:31:40"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978465",
- "username": "chenlie449",
- "fullName": "陈列 (chenlie449)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978465/medium/1f7175717fc3e3dfb1a419dd80e49ece.png",
- "joined": "2021-10-27 14:42:00"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14570122",
- "username": "omraidav",
- "fullName": "David Omrai (omraidav)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570122/medium/dc6f25765906f624c1e434839c08b03a.jpeg",
- "joined": "2021-01-09 20:53:47"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674448",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/dd974f1c55229d6e4660150a2c4048dc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 12:51:16"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13962275",
- "username": "aed3103",
- "fullName": "Alejandro Escandon (aed3103)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962275/medium/4b2379c9a53c76a5f5a620ca316ed91d.png",
- "joined": "2019-08-25 15:50:56"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746532",
- "username": "Reirka",
- "fullName": "Reirka",
- "avatarUrl": "https://www.gravatar.com/avatar/be7196face7c34d17d9d04352b4c554f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 22:02:18"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697756",
- "username": "xd1565211796",
- "fullName": "言夕 (xd1565211796)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697756/medium/b17ef9f5d5ffc630dd67aae19dab6153.jpeg",
- "joined": "2021-04-05 00:23:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 10,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737690",
- "username": "alireza8445",
- "fullName": "ali reza (alireza8445)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737690/medium/0b41ad06dec9747ab1b978e7432af22d.jpeg",
- "joined": "2021-05-04 08:38:39"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "13500944",
- "username": "krisfremen",
- "fullName": "krisfremen",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13500944/medium/5a2ea6e9d1e7a6138d3eaf8f83a36b84.jpeg",
- "joined": "2021-02-14 20:26:28"
- },
- "languages": [
- {
- "id": "mk",
- "name": "Macedonian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658598",
- "username": "wahyukristyantoro",
- "fullName": "wahyu kristyantoro (wahyukristyantoro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658598/medium/8fcc6e4c4ab169d95c6122ff4b02f48d.jpeg",
- "joined": "2021-03-08 08:48:25"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14434570",
- "username": "lamacat",
- "fullName": "lamacat",
- "avatarUrl": "https://www.gravatar.com/avatar/091a7fa80c8946b11412338bd1f89be4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 13:15:29"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965639",
- "username": "bhavesh.maheshwari1947",
- "fullName": "BHAVESH MAHESHWARI (bhavesh.maheshwari1947)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14965639/medium/56e25a1b7efda65d5fdd12f029d72ee4.jpeg",
- "joined": "2021-10-17 07:27:06"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13502365",
- "username": "dogukan.26c2",
- "fullName": "Kürşad Kanlı (dogukan.26c2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13502365/medium/9fffbebbce3fed225f001a10dd570860.jpg",
- "joined": "2021-11-02 04:13:54"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003615",
- "username": "coffe67",
- "fullName": "Narciso Avalos (coffe67)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003615/medium/6595139d2c5d5e19f74d7859d0f0bea8.jpeg",
- "joined": "2021-11-14 22:23:32"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13328854",
- "username": "petraki",
- "fullName": "Přemysl Čermák (petraki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13328854/medium/4385b86d39f657caa0890af44d0c3bb4.jpg",
- "joined": "2020-12-28 07:26:47"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963025",
- "username": "kalufinnle",
- "fullName": "Kalu Everyone (kalufinnle)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963025/medium/9b0c1f4a59de841b0997447cc1e998f2.png",
- "joined": "2021-10-14 22:19:39"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961909",
- "username": "karibsantos",
- "fullName": "Karina Santos (karibsantos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14961909/medium/876e6e163b4dfb807994c70b0ef396c2.jpg",
- "joined": "2021-10-14 03:16:55"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14811536",
- "username": "vanessajtb",
- "fullName": "vanessa (vanessajtb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811536/medium/ded311b23fe9e792d83e09f68768a794.jpeg",
- "joined": "2021-06-23 10:54:24"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647298",
- "username": "ViPratap72",
- "fullName": "Surender Pratap Singh (ViPratap72)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647298/medium/4ad8368a7ffa55bb7e086a1f7f5a967d.jpeg",
- "joined": "2021-03-01 03:36:03"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14436666",
- "username": "Kozimbek",
- "fullName": "Kozim Kamalov (Kozimbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14436666/medium/adfa4eb257a0fa89de213f4d71e579f9.jpeg",
- "joined": "2020-09-29 12:18:54"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953719",
- "username": "pimenteldesouza91",
- "fullName": "Império da Internet (pimenteldesouza91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953719/medium/ee64ac380b4078b3815791eb03cbf7ae.jpeg",
- "joined": "2021-10-07 10:33:17"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14648700",
- "username": "yeleizh",
- "fullName": "yeleizh",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648700/medium/d34f322a1ee5e89c38ba67611ac1c48e.jpg",
- "joined": "2021-03-01 23:23:31"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14437788",
- "username": "talgatbek",
- "fullName": "Talgatbek Kainarov (talgatbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14437788/medium/613193fea546da673bb8490a504d993d.jpg",
- "joined": "2021-09-26 07:55:47"
- },
- "languages": [
- {
- "id": "kk",
- "name": "Kazakh"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650202",
- "username": "tomiy007",
- "fullName": "Ogün Şenyiğit (tomiy007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650202/medium/b8780422027597662112864f8c966216.jpeg",
- "joined": "2021-03-02 15:25:12"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655736",
- "username": "wangkaixuan1011",
- "fullName": "王凯旋 (wangkaixuan1011)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655736/medium/59d47a2c5fea893101fe8c9ddd793ed6.jpg",
- "joined": "2021-03-06 06:52:02"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14364644",
- "username": "me.airee",
- "fullName": "Snachi (me.airee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364644/medium/beb7fb27693baf8b3d4d4aa4fbeb8a4c.jpeg",
- "joined": "2021-05-16 20:43:33"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13317516",
- "username": "olka",
- "fullName": "olka",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13317516/medium/de56e77543599bd2c434479001852e5b.jpg",
- "joined": "2021-08-04 07:39:52"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805648",
- "username": "xyomega",
- "fullName": "xyomega",
- "avatarUrl": "https://www.gravatar.com/avatar/517aa8b351cbb0cc04149503ee7d9334?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 13:38:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13559470",
- "username": "DavidCai1993",
- "fullName": "David Cai (DavidCai1993)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559470/medium/1e2b0d1a56fd808a6ae2f7ac6bc45075.jpeg",
- "joined": "2021-11-17 01:57:42"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734944",
- "username": "cringkamp020",
- "fullName": "C FR (cringkamp020)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734944/medium/e7472a21cad9c623f91536e9daeb41a2.png",
- "joined": "2021-05-02 03:20:59"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13071224",
- "username": "akkiris",
- "fullName": "Ali Kaan Kiriş (akkiris)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13071224/medium/70bc840133ae0f0c69d172f5108d06f0.jpg",
- "joined": "2021-11-07 19:28:19"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14178915",
- "username": "nyctophilia",
- "fullName": "nyctophilia",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14178915/medium/b2ba2bc5aeeb3a281024f7eb55e3862f.png",
- "joined": "2020-05-13 16:48:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14180001",
- "username": "hikmetnadas4",
- "fullName": "Kimsesiz Adam (hikmetnadas4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14180001/medium/94b4dac52038a25167cbc5bc62992af5.jpeg",
- "joined": "2020-03-30 07:59:35"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660306",
- "username": "vitya.demin50",
- "fullName": "Виктор Дёмин (vitya.demin50)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660306/medium/83dea37d852e39c7d6a4bd7d33e4a689.jpeg",
- "joined": "2021-03-09 11:23:57"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14370922",
- "username": "nonthawat37",
- "fullName": "nonthawat37",
- "avatarUrl": "https://www.gravatar.com/avatar/91108541bfd24eaa1c6fdef1308f8bd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-07 22:12:28"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- },
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14187961",
- "username": "phonep121a",
- "fullName": "Kreangkai Sujabok (phonep121a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14187961/medium/a58e0f69e94caa0e2496f99c28de0e3f.png",
- "joined": "2020-04-03 05:29:23"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811680",
- "username": "pavelmac06",
- "fullName": "Pavel Macicek (pavelmac06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811680/medium/6fff82b72c07e37f66ee0974314f0acb.png",
- "joined": "2021-06-22 16:58:19"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643336",
- "username": "aliali85",
- "fullName": "ALI nini (aliali85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643336/medium/f6ae13593a5587031e0a03633c1d1175.jpg",
- "joined": "2021-02-26 06:32:53"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737370",
- "username": "vitalik.mv.13cross",
- "fullName": "Vitto Gang (vitalik.mv.13cross)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737370/medium/48590bdefeea5905954dcf0793f12676.jpeg",
- "joined": "2021-05-04 03:54:13"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14189901",
- "username": "madloser3",
- "fullName": "Muhammad Zubair M Zubair (madloser3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14189901/medium/331f887c46e3e7153693ce544aa7b39b.jpg",
- "joined": "2020-04-04 08:35:39"
- },
- "languages": [
- {
- "id": "ur-IN",
- "name": "Urdu (India)"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026503",
- "username": "MB337",
- "fullName": "Matteo Bianchi (MB337)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026503/medium/a98b0fc8ef5fa3095adac492aac5bf5f.jpeg",
- "joined": "2021-11-22 12:03:41"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14411642",
- "username": "MissNox",
- "fullName": "MissNox",
- "avatarUrl": "https://www.gravatar.com/avatar/21a0cee81c109157df10761da1b51ae4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 08:43:21"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966973",
- "username": "marco.castignoli",
- "fullName": "Marco Castignoli (marco.castignoli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966973/medium/ac611f249343c9a410f1c492c2026abd.jpeg",
- "joined": "2021-10-18 09:41:58"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645360",
- "username": "Podda",
- "fullName": "Podda",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645360/medium/7fe21c8131ede3095aefd1ae698697d6.jpeg",
- "joined": "2021-02-27 17:37:44"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572090",
- "username": "yosef.morris",
- "fullName": "Yosef Morris (yosef.morris)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572090/medium/70373c34e75730078decb52811193902.jpeg",
- "joined": "2021-01-11 05:28:58"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14046408",
- "username": "senno.schuttel",
- "fullName": "senno.schuttel",
- "avatarUrl": "https://www.gravatar.com/avatar/242d7fbeeb72f39d2f30629ae7fb04bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-02 20:49:47"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14473322",
- "username": "Elhadi_Bouazizi",
- "fullName": "Elhadi_Bouazizi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14473322/medium/597d58b8d19a3394b781b39fbb5c1a3c.jpg",
- "joined": "2021-01-20 11:51:02"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14008029",
- "username": "Izzur",
- "fullName": "Izzur Zuhri (Izzur)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008029/medium/1927b0d7628d42665fa1bc7b4e63b67c.jpeg",
- "joined": "2019-10-09 04:31:33"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14602456",
- "username": "christian205198",
- "fullName": "christian205198",
- "avatarUrl": "https://www.gravatar.com/avatar/f814730bf6337483fdafed6fdbe2ab95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-31 04:17:58"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571728",
- "username": "rivaldosetiawan135",
- "fullName": "R Samudra arc (rivaldosetiawan135)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571728/medium/eba3c27436fd6ea7ccd24667f5c6bead.jpeg",
- "joined": "2021-01-11 00:17:17"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14173445",
- "username": "Alalwi",
- "fullName": "Ali Al Alawi (Alalwi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14173445/medium/b33c069f498903274976c2808d31bdf1.jpg",
- "joined": "2020-03-30 22:29:33"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14043331",
- "username": "Belkacem2015",
- "fullName": "Belkacem (Belkacem2015)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14043331/medium/3a99fc80bf81b592af9a2b96767e3c9f.jpg",
- "joined": "2019-11-27 07:45:07"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14648108",
- "username": "klimaty.minecraft",
- "fullName": "Minecraft Przygoda (klimaty.minecraft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648108/medium/2a670a0c42bbaaf0404eecbed164d6ed.jpeg",
- "joined": "2021-03-01 12:23:04"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360816",
- "username": "mayookh3508",
- "fullName": "Mayookh M T (mayookh3508)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14360816/medium/d455976171e216f92c60e592a2e2ca8c.jpeg",
- "joined": "2020-07-30 05:22:39"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14767666",
- "username": "chengDu20",
- "fullName": "Huan Rainy (chengDu20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767666/medium/47a20ae9302d71170d1613138da1e5f1.png",
- "joined": "2021-05-21 23:52:12"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 2,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031890",
- "username": "Saravud2534",
- "fullName": "SARAWUT NAKKOED (Saravud2534)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14031890/medium/d907438d4cc32dc13aab3685892a4e52.jpeg",
- "joined": "2019-11-23 03:28:23"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14362952",
- "username": "WARFAST",
- "fullName": "translator (WARFAST)",
- "avatarUrl": "https://www.gravatar.com/avatar/9c1c22281a5ab74e15f173814b17e861?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 05:26:28"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14581696",
- "username": "fatihbilgen",
- "fullName": "fatihbilgen",
- "avatarUrl": "https://www.gravatar.com/avatar/a6970320aadce81c5c6eb3009500068f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 18:47:19"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030921",
- "username": "chiachio",
- "fullName": "chiachio",
- "avatarUrl": "https://www.gravatar.com/avatar/8907dd6dc7d7119d6e8a7cab53ead3ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 14:39:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030800",
- "username": "eleodorim",
- "fullName": "eleodorim",
- "avatarUrl": "https://www.gravatar.com/avatar/58dbddececb3e0b328341564769b2bb7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 21:31:02"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582912",
- "username": "burak25",
- "fullName": "Burak Kırdemir (burak25)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582912/medium/71f38d11cb85a8cacb6f82a4f9c9348b.jpeg",
- "joined": "2021-01-18 13:01:13"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759692",
- "username": "ank23",
- "fullName": "ank23",
- "avatarUrl": "https://www.gravatar.com/avatar/bc8ae154070703d7052271a75af85090?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 13:27:53"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14816748",
- "username": "max.m0n",
- "fullName": "Максим Ельян (max.m0n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816748/medium/5ede72ee6c8877a8246d571e675a46fb.jpeg",
- "joined": "2021-06-26 14:35:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815876",
- "username": "LUMOGROUP",
- "fullName": "LUMOGROUP",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815876/medium/8debc09b5ece0d371f6a54dd295372b6.jpeg",
- "joined": "2021-08-17 10:08:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905348",
- "username": "MIntAP",
- "fullName": "MIntAP",
- "avatarUrl": "https://www.gravatar.com/avatar/c3743f4719855a1c27338db60123f863?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 21:14:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562648",
- "username": "Secozzi",
- "fullName": "Folke Ishii (Secozzi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562648/medium/d3df1bcfe4433e62dae6ece380be6503.jpeg",
- "joined": "2021-01-05 18:11:06"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14052846",
- "username": "anohelpi",
- "fullName": "Ákos Garamvölgyi (anohelpi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14052846/medium/700a61979c27accc889abbca342a529d.jpg",
- "joined": "2019-12-15 08:08:32"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14625410",
- "username": "grcouto",
- "fullName": "grcouto",
- "avatarUrl": "https://www.gravatar.com/avatar/76c3b43f677e89f743cc65f676c7db3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 10:03:50"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618190",
- "username": "tomekchada23",
- "fullName": "Wyrzykowski Wiktor (tomekchada23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618190/medium/81b551fadd1046247b7c39fb62834488.jpeg",
- "joined": "2021-02-10 07:53:25"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937513",
- "username": "devudilip",
- "fullName": "devu dilip (devudilip)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937513/medium/11d939bf3bb9ba2df698db8ac77e020e.jpeg",
- "joined": "2021-09-25 11:14:13"
- },
- "languages": [
- {
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853150",
- "username": "deborah.elizabeth.pereira",
- "fullName": "deborah pereira (deborah.elizabeth.pereira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853150/medium/3689e0e41d3b2c7c93aa95dfdebf880b.png",
- "joined": "2021-07-25 22:31:09"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853042",
- "username": "vanamaziev",
- "fullName": "Иван Мазиев (vanamaziev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853042/medium/ceff19a9fd0e8b88bb59464f5f6632c9.jpeg",
- "joined": "2021-07-25 20:08:54"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658870",
- "username": "oleksiy060r",
- "fullName": "oleksiy060r",
- "avatarUrl": "https://www.gravatar.com/avatar/028b7e8eebf57cbc3b3f27848b70b783?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 12:10:03"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666926",
- "username": "ruchitrami",
- "fullName": "Ruchit Rami (ruchitrami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666926/medium/247af4069c989fa0999afad408eba72b.jpeg",
- "joined": "2021-03-13 23:47:02"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14936979",
- "username": "ultranod",
- "fullName": "ultranod",
- "avatarUrl": "https://www.gravatar.com/avatar/9a6eff6771b117d40d9ead9c2329295f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-25 00:52:54"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14852550",
- "username": "Hassaqnation",
- "fullName": "Hassaqnation",
- "avatarUrl": "https://www.gravatar.com/avatar/a00b4aadf8f89bf322d359dd96bcbc2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-25 10:34:51"
- },
- "languages": [
- {
- "id": "kk",
- "name": "Kazakh"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779518",
- "username": "iromain",
- "fullName": "iromain",
- "avatarUrl": "https://www.gravatar.com/avatar/e8b9b351cf57be1bddf548fc104dcb09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 02:48:09"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558246",
- "username": "samgaspa123",
- "fullName": "samgaspa123",
- "avatarUrl": "https://www.gravatar.com/avatar/385b6e54a9d8d0c144243f11d0f63e76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 08:25:58"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842980",
- "username": "agathadeborja",
- "fullName": "Agatha Andaluz De Borja (agathadeborja)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842980/medium/1178b247eb1cd0b5ac5a275d028f0ad3.jpeg",
- "joined": "2021-07-25 02:33:49"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619736",
- "username": "ClementLvx",
- "fullName": "ClementLvx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619736/medium/84e61bc70bd5bb78a8efd91db2fe8a3a.jpg",
- "joined": "2021-02-11 08:50:38"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14665362",
- "username": "_mohamad5_",
- "fullName": "_mohamad5_",
- "avatarUrl": "https://www.gravatar.com/avatar/16114efa57fc6796274c1e6f45bdd74c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:54:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14660622",
- "username": "bh6123261",
- "fullName": "عبدالرحمن حسين (bh6123261)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660622/medium/3cf987dc25f1178ce8756c6684739a27.jpg",
- "joined": "2021-03-09 15:36:22"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556592",
- "username": "rr440407",
- "fullName": "QIUYU ZHANG (rr440407)",
- "avatarUrl": "https://www.gravatar.com/avatar/dd7c43e7a307f73b2b6542de52f10734?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-30 15:16:32"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785628",
- "username": "gucoo",
- "fullName": "gucoo",
- "avatarUrl": "https://www.gravatar.com/avatar/98ff76f33f4003bd8b487e02d1e6e7c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:35:00"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14830514",
- "username": "ny030897",
- "fullName": "ny030897",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830514/medium/29d88484dbe97732ba437fd01889a680.png",
- "joined": "2021-07-07 07:44:31"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918847",
- "username": "kryptokurt",
- "fullName": "Mats Westholm (kryptokurt)",
- "avatarUrl": "https://www.gravatar.com/avatar/9e7413a54c5ded7e2b74b662d19960e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 00:54:43"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632696",
- "username": "bavlnkak",
- "fullName": "Kamil B (bavlnkak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632696/medium/0dc028817f3b2b64c39042c452f06fea.jpeg",
- "joined": "2021-02-20 04:27:13"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562612",
- "username": "Arminmoradi",
- "fullName": "Arminmoradi82 (Arminmoradi)",
- "avatarUrl": "https://www.gravatar.com/avatar/5d573f037f2c3db85b73720a8a86b777?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 13:25:24"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775426",
- "username": "leekarmeng9",
- "fullName": "leekarmeng9",
- "avatarUrl": "https://www.gravatar.com/avatar/710785b07b027423633a9a7b669fc5d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 16:44:27"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14056606",
- "username": "sekoo196351",
- "fullName": "Serkan Aydın (sekoo196351)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14056606/medium/c1669d0e4cebfb1ec83ab85c00b01f83.jpeg",
- "joined": "2019-12-22 10:25:45"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14315676",
- "username": "abdullah55522210",
- "fullName": "عبدالله الرشيدي (abdullah55522210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14315676/medium/9da9976ff48731cafe59b1cea0e6cd71.jpeg",
- "joined": "2020-08-28 18:13:40"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621776",
- "username": "fatmaladwi540",
- "fullName": "Dwi Fatmala (fatmaladwi540)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621776/medium/902dabf9ccab0ee2726f67ca5d7b810f.jpg",
- "joined": "2021-02-13 11:19:02"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776866",
- "username": "Piter666",
- "fullName": "Piter666",
- "avatarUrl": "https://www.gravatar.com/avatar/23e91ffae232d25364aa0dd4c8d8eaff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 16:14:14"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777388",
- "username": "henryprohater",
- "fullName": "Henry_Prohater (henryprohater)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777388/medium/f9050a3878fe999bfab4ba907a8e5cde.png",
- "joined": "2021-05-29 05:18:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14653510",
- "username": "mo01024054097",
- "fullName": "Mohamed Apd Elmoneim (mo01024054097)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653510/medium/87305353821b7321765b03ada442ef91.jpeg",
- "joined": "2021-03-04 16:23:46"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14865144",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/f07a1c6153744ecce6fe71e9b206044b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 12:13:28"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14083105",
- "username": "SoulFly34",
- "fullName": "SoulFly34",
- "avatarUrl": "https://www.gravatar.com/avatar/fe80c8ece7b0dc2c4b18e7d86ec7cd5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-20 10:05:10"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14264524",
- "username": "pwn0",
- "fullName": "techieanant (pwn0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14264524/medium/b4d22cc388cc51e81c6e7dd801c38b78.jpeg",
- "joined": "2020-05-19 19:16:30"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654988",
- "username": "phamtrongtan27091992",
- "fullName": "Phamtrongtan Pham (phamtrongtan27091992)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654988/medium/57ed17587fa8f8f5d0b383cda16bb695.jpeg",
- "joined": "2021-05-13 02:49:19"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800260",
- "username": "onhorou",
- "fullName": "onhorou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800260/medium/5e6c1ca22c8427777ebb9cb232779238.png",
- "joined": "2021-06-15 07:53:32"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632296",
- "username": "ayoubbensouna",
- "fullName": "ayoubbensouna",
- "avatarUrl": "https://www.gravatar.com/avatar/535e22141a546bc3171ddf54f8e92b95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 19:11:25"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778994",
- "username": "george_madikas",
- "fullName": "George Madikas (george_madikas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778994/medium/4cfe80680f967a77cf11d702460efc46.jpeg",
- "joined": "2021-05-30 15:21:06"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14248418",
- "username": "4289nakorn6395",
- "fullName": "Nakorn Pornrattanawong (4289nakorn6395)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14248418/medium/b996a0480fee75e906548f8849851290.jpg",
- "joined": "2020-05-09 08:02:37"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918055",
- "username": "caibangtimvoyeu1",
- "fullName": "Nam Bảo (caibangtimvoyeu1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918055/medium/caa90ddfc06eec603e36f31baf208c3e.jpeg",
- "joined": "2021-09-11 07:35:26"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669084",
- "username": "romgille",
- "fullName": "Romain Gille (romgille)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669084/medium/fd229db6a99e7b8d53d09bc0d4c44145.png",
- "joined": "2021-03-15 14:09:05"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758876",
- "username": "yezgan_16",
- "fullName": "yezgan_16",
- "avatarUrl": "https://www.gravatar.com/avatar/821b8362ce99a75fa0b2196d4ba13706?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 01:47:38"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894716",
- "username": "mgagahreforman",
- "fullName": "M. Gagah Reforman (mgagahreforman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894716/medium/34bffe30d61288a4b9c13ecc7ab34a23.jpeg",
- "joined": "2021-09-01 09:02:20"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13645461",
- "username": "Rixcian",
- "fullName": "Rixcian",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13645461/medium/49e26bb6cb92868a712624036a627dc3.png",
- "joined": "2021-07-23 11:22:08"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687158",
- "username": "st.elmo",
- "fullName": "Chopper Kim (st.elmo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687158/medium/34ab22fe56d737571b05b2f91d304062.jpeg",
- "joined": "2021-03-28 11:28:21"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735762",
- "username": "ivanmaznak",
- "fullName": "Иван Мазняк (ivanmaznak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735762/medium/97a4221450b51adfd5d9ba72171bc900.png",
- "joined": "2021-05-02 21:00:10"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739968",
- "username": "willporto1405",
- "fullName": "William Alves Porto Da Silva (willporto1405)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739968/medium/1db660fc70c1ab3174474892a9fa9297.png",
- "joined": "2021-05-05 22:45:32"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004413",
- "username": "Judzovka",
- "fullName": "Judzovka",
- "avatarUrl": "https://www.gravatar.com/avatar/96db3d146f56e353c11734a72926390d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 12:24:51"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14994889",
- "username": "t123987132",
- "fullName": "Rick Ho (t123987132)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994889/medium/93d1e53923e9e7018fa27234967859e8.png",
- "joined": "2021-11-08 08:38:24"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 2,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12591126",
- "username": "aikyu99",
- "fullName": "MeArjiet (aikyu99)",
- "avatarUrl": "https://www.gravatar.com/avatar/b0232e61a3ecdc0f29ed9ee87af4a6fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 05:47:08"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733758",
- "username": "Hamed441",
- "fullName": "Hamed441",
- "avatarUrl": "https://www.gravatar.com/avatar/e4ea59c9865f3797beacc451b3b32b5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 01:51:48"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696674",
- "username": "msanrie",
- "fullName": "Montserrat Sanchez Rierola (msanrie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696674/medium/929ad678f44f069d6fea52844de795f7.jpg",
- "joined": "2021-04-04 03:56:59"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12629826",
- "username": "ley2xc",
- "fullName": "agung mujiono (ley2xc)",
- "avatarUrl": "https://www.gravatar.com/avatar/60013fdc1b746df9da89f5f6f0624fba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 12:33:35"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14712008",
- "username": "clembappe",
- "fullName": "Clemzer (clembappe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712008/medium/14474686f1dfa0b727f91acf51f46d8e.jpg",
- "joined": "2021-04-14 17:05:41"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747946",
- "username": "torr3s_luis",
- "fullName": "Luis Torres (torr3s_luis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747946/medium/a3628eaedf02e729616ebbadf41cd757.jpeg",
- "joined": "2021-05-09 16:00:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "12344679",
- "username": "Goudarz",
- "fullName": "Goudarz Jafari (Goudarz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12344679/medium/440e37e365fb0450a6999de7b907f214.jpg",
- "joined": "2020-12-13 12:52:23"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13970333",
- "username": "DeepCrypto",
- "fullName": "DeepCrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/15a0efa64471f50de8019ff11749268a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-03 04:37:56"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "13976107",
- "username": "HelaBasa",
- "fullName": "Store (HelaBasa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976107/medium/ab4177e8d90665d4603e548488d15c68.jpg",
- "joined": "2021-08-25 06:53:27"
- },
- "languages": [
- {
- "id": "si-LK",
- "name": "Sinhala"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13994103",
- "username": "Alphaaa",
- "fullName": "Christian Mazzola (Alphaaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994103/medium/8fada44cb640c9f08080ce6ff2955f65.png",
- "joined": "2021-01-28 13:55:30"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13628871",
- "username": "koveek",
- "fullName": "koveek",
- "avatarUrl": "https://www.gravatar.com/avatar/7fff4af5d2e94d78e8e0bbc6d863e3bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 11:55:32"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14742660",
- "username": "minduskyx",
- "fullName": "minduskyx",
- "avatarUrl": "https://www.gravatar.com/avatar/6b5766dca0cc5abb066b7953b7c9acb3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 23:30:30"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 2,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717284",
- "username": "merthoca",
- "fullName": "Mert Hoca Efendi ile Sahura Doğru (merthoca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717284/medium/7f8c88453b5f3a9f5fe732b0beeaf699.jpeg",
- "joined": "2021-04-18 20:18:08"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "12455773",
- "username": "uzeconomist",
- "fullName": "Hamza Foziljonov (uzeconomist)",
- "avatarUrl": "https://www.gravatar.com/avatar/72756a61e0c4489135139c4fd27da269?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 06:56:09"
- },
- "languages": [
- {
- "id": "uz",
- "name": "Uzbek"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14700162",
- "username": "mitop",
- "fullName": "mitop",
- "avatarUrl": "https://www.gravatar.com/avatar/6cf8edd767c76e0bed156f75f57a133c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-06 12:38:09"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13512385",
- "username": "sleepy-maker",
- "fullName": "Koji Kanao (sleepy-maker)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13512385/medium/2063c31bc02bc3ecab628d6369b74048.jpeg",
- "joined": "2021-04-10 01:14:09"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14692360",
- "username": "chenzhenhua",
- "fullName": "chenzhenhua",
- "avatarUrl": "https://www.gravatar.com/avatar/1fba50ac7ab9e24ee7ed954a2f895277?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 22:53:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 5,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14058798",
- "username": "eeasytest",
- "fullName": "testFirst testLast (eeasytest)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058798/medium/3935cfd8fa3c8349dc9e9d2ad0e13f15.jpg",
- "joined": "2019-12-27 08:15:00"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289608",
- "username": "ciko1706",
- "fullName": "ciko1706",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289608/medium/0fa7056377777d1081cf061129ffc332.png",
- "joined": "2020-06-03 20:31:23"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692054",
- "username": "pascua",
- "fullName": "pascua",
- "avatarUrl": "https://www.gravatar.com/avatar/e206c8fd0dd6bc00372d63523f1a9323?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 17:09:40"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14294122",
- "username": "kaungkinnhninpwint",
- "fullName": "Kaungkinn Hninpwint (kaungkinnhninpwint)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14294122/medium/cf09dbb81e1cfad68d23f82b8a746730.jpg",
- "joined": "2020-06-06 23:47:44"
- },
- "languages": [
- {
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14570934",
- "username": "emrekurt713",
- "fullName": "Emre Kurt (emrekurt713)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570934/medium/a0723a0b910f0080d55afbc1c234a8ec.jpg",
- "joined": "2021-01-10 10:58:02"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14835754",
- "username": "Grzegorzcz",
- "fullName": "Grzegorzcz",
- "avatarUrl": "https://www.gravatar.com/avatar/0c2f4f0f96fdf6214acf9928c511cb00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-11 15:48:55"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14722914",
- "username": "vitalikovalchuk",
- "fullName": "Vitalii Ko (vitalikovalchuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722914/medium/6bab43c8cbf3e596e7d209f1ce7eed33.jpeg",
- "joined": "2021-04-22 20:41:01"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545254",
- "username": "Makezu",
- "fullName": "Makezu",
- "avatarUrl": "https://www.gravatar.com/avatar/d2523f584b6f392d895229c22d570f0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 14:39:24"
- },
- "languages": [
- {
- "id": "fi",
- "name": "Finnish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980407",
- "username": "effy.yin",
- "fullName": "Effy Yin (effy.yin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14980407/medium/5d9e6f53ff114ccf4f721d700110ee13.jpeg",
- "joined": "2021-10-28 22:38:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805836",
- "username": "dmitriydamaru",
- "fullName": "Dmitriy Damaru (dmitriydamaru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805836/medium/1fb2a40c0c75451f65b0324c4e66762f.jpeg",
- "joined": "2021-06-18 16:04:32"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774492",
- "username": "osmanliperde46",
- "fullName": "Osmanlı Perde (osmanliperde46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774492/medium/bac7237fa5c3b19cf42e68a90e98e016.jpeg",
- "joined": "2021-05-27 00:56:33"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673820",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/dd974f1c55229d6e4660150a2c4048dc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 20:18:54"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13558846",
- "username": "danielwoo394",
- "fullName": "CrazyBirdie1 (danielwoo394)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13558846/medium/8190d85641d5001ee3ac3766b1dc5896.jpeg",
- "joined": "2020-07-20 06:45:53"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14728816",
- "username": "scaliotifrancesco",
- "fullName": "Francesco Scalioti (scaliotifrancesco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728816/medium/44402c6a7b9e61f79ebcfc9f7afb14c4.jpg",
- "joined": "2021-04-27 13:06:29"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775706",
- "username": "xx--omar--xx",
- "fullName": "عمر المزواري (xx--omar--xx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775706/medium/36bdb89bb709a92eda9c9b0b2521cf6e.jpeg",
- "joined": "2021-05-27 19:31:20"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14320650",
- "username": "muratboy",
- "fullName": "Murat Boy (muratboy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320650/medium/563cf8bdc4cfd02d50c0b0d53706022b.jpeg",
- "joined": "2020-07-06 18:09:14"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14606060",
- "username": "Ali.Dameh",
- "fullName": "ZatoRiiX (Ali.Dameh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606060/medium/74f176b33d73e054ac659b9c42c358bb.jpeg",
- "joined": "2021-02-02 11:33:51"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671048",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/f7dc2459e1395a67088d04f7c8c4a570?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 00:10:10"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 113,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14056130",
- "username": "gokselp",
- "fullName": "gokselp",
- "avatarUrl": "https://www.gravatar.com/avatar/107787c1212fc885c38a26858fe295d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-30 04:52:21"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14945275",
- "username": "orellana.edgardo8901",
- "fullName": "Edgardo Yanez (orellana.edgardo8901)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945275/medium/b1d4c6e48bf2de4b9bbfd1cae7585cd5.jpeg",
- "joined": "2021-09-30 23:05:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995909",
- "username": "borodinavaleria8",
- "fullName": "Валерия Бородина (borodinavaleria8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995909/medium/546efb6d14694d4fc0bb261ec7bb350d.png",
- "joined": "2021-11-11 15:31:06"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051414",
- "username": "ADRIANO688",
- "fullName": "Adrian Toth (ADRIANO688)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14051414/medium/c9c42882f0cd997241b652f91c55db02.jpeg",
- "joined": "2019-12-12 06:29:55"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14328968",
- "username": "Tortolala",
- "fullName": "Angel Tórtola (Tortolala)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14328968/medium/1e363ca67b12939c95d5065425807ad0.jpeg",
- "joined": "2020-07-02 23:58:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653488",
- "username": "mu_21",
- "fullName": "مويد الذهب (mu_21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653488/medium/93a582f1f191453bb72aa3381f9b86dd.jpg",
- "joined": "2021-03-04 15:57:26"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779686",
- "username": "WorsT21",
- "fullName": "WorsT21",
- "avatarUrl": "https://www.gravatar.com/avatar/d4d30285fbef0996a2f6e878115f6a44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 05:13:29"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867836",
- "username": "Pardesh",
- "fullName": "Pardesh",
- "avatarUrl": "https://www.gravatar.com/avatar/ae15bc8e88200e364707879af00f076e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 13:23:30"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14146435",
- "username": "mahesh339",
- "fullName": "Mahesh Rajput (mahesh339)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146435/medium/6c10b5f6b69bf8c155b9f227d3e71f6c.jpeg",
- "joined": "2020-03-06 02:05:44"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741848",
+ "preTranslated": 0,
+ "totalCosts": 89959
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 89959
+ },
+ "translated": {
+ "tmMatch": 3390,
+ "default": 86569,
+ "total": 89959
+ },
+ "targetTranslated": {
+ "tmMatch": 3108,
+ "default": 70848,
+ "total": 73956
+ },
+ "translatedByMt": {
+ "tmMatch": 255,
+ "default": 38977,
+ "total": 39232
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3390,
+ "default": 86569,
+ "total": 89959
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14676482,
+ "username": "Behnamp02",
+ "fullName": "Behnamp02",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a562b100a050b267d59bc8f4cc3a1026?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 13,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 13,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 13,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14646822,
+ "username": "BenjaminDetre",
+ "fullName": "BenjaminDetre",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/92ff582851df3c70085d904e94828b52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 600
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 600
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 598,
+ "total": 600
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 676,
+ "total": 680
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 598,
+ "total": 600
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14587728,
+ "username": "Bennyhierry",
+ "fullName": "Bennyhierry",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b04e35cf9d8c0ff020d2bd7e9b61ae5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 96
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 96
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 94,
+ "total": 96
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 123,
+ "total": 126
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 94,
+ "total": 96
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949085,
+ "username": "BhavinF",
+ "fullName": "BhavinF",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8104f96a5da684deed00abd499610e8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 597
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 597
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 597,
+ "total": 597
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 871,
+ "total": 871
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 597,
+ "total": 597
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14082329,
+ "username": "Binh0103",
+ "fullName": "Binh0103",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/afea9cb2f068a8958cba2e7f997985d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 41,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 41,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633050,
+ "username": "Blackberries",
+ "fullName": "Blackberries",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ec3370ce45629b17c8e3d911d1085dee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 161
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 161
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 160,
+ "total": 161
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 181,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 160,
+ "total": 161
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13960301,
+ "username": "BlindNotDeaf",
+ "fullName": "BlindNotDeaf",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1a728f2b7b505565c96050fabecebb58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 404
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 404
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 399,
+ "total": 404
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 444,
+ "total": 450
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 399,
+ "total": 404
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034399,
+ "username": "Blob.eth",
+ "fullName": "Blob.eth",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4a544345569010a1d328df3bfcbc11ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14986897,
+ "username": "Blockchainnewbie",
+ "fullName": "Blockchainnewbie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/70d268bdaf5a4a94ba316f5a49e9fb55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 23,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 23,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14785626,
+ "username": "Brange_",
+ "fullName": "Brange_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d5f99d63541e8c56e475f86660e48e2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 170
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 170
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 170,
+ "total": 170
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 159,
+ "total": 159
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 170,
+ "total": 170
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14670948,
+ "username": "Brommann",
+ "fullName": "Brommann",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d31c7d1981e2bf6261c3ab96af2fa946?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 270
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 270
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 270,
+ "total": 270
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 484,
+ "total": 484
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 270,
+ "total": 270
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14836710,
+ "username": "BumbyMoser",
+ "fullName": "BumbyMoser",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6be8a07ece86c0c1579ccf4ba0bcb151?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866294,
+ "username": "Burinat",
+ "fullName": "Burinat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/167f1a1305f2bb8d6bcf92833ba65233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 279
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 279
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 277,
+ "total": 279
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 280,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 277,
+ "total": 279
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14702518,
+ "username": "Byrde",
+ "fullName": "Byrde",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4763941b7c80ff299f8bc4bd97a288fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 65
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 54,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 64,
+ "total": 75
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 54,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14011385,
+ "username": "CAG07",
+ "fullName": "CAG07",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e30ead2a487194217aa228315238634a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14743370,
+ "username": "CLEMENT2000",
+ "fullName": "CLEMENT2000",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d046f1b1be28c3149460610025eb7a9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838806,
+ "username": "CONSEQUENL50",
+ "fullName": "CONSEQUENL50",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838806/medium/f1b727400eeeff54d73ab03020db79b3.PNG",
+ "preTranslated": 0,
+ "totalCosts": 614
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 614
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 565,
+ "total": 614
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 476,
+ "total": 521
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 565,
+ "total": 614
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14972621,
+ "username": "CSR1415926535",
+ "fullName": "CSR1415926535",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4f21674423ae94c870d639e1bf09ebf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 280
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 280
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 236,
+ "total": 280
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 261,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 236,
+ "total": 280
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999585,
+ "username": "CaptnSauerkraut",
+ "fullName": "CaptnSauerkraut",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6c22f8073f60dde4c50101bf6d222da9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14800588,
+ "username": "CarolinaFilipe",
+ "fullName": "CarolinaFilipe",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800588/medium/d8be152e1a3b5e6fbe43fadfe904a737.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2141
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 2116,
+ "total": 2141
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 2259,
+ "total": 2284
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 248,
+ "total": 260
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 2116,
+ "total": 2141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13497805,
+ "username": "Catalan_MIUIProofreader",
+ "fullName": "Catalan_MIUIProofreader",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f7de0dc6ba59bf22dd9e57543f6ef4b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13375858,
+ "username": "Cathness",
+ "fullName": "Cathness",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b48af8ec66562fd5e96178857052738f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14266778,
+ "username": "Causal1ty",
+ "fullName": "Causal1ty",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f0353cdb74175f1f3c05d8462b3d87b0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 800
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 800
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 776,
+ "total": 800
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 708,
+ "total": 732
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 776,
+ "total": 800
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14544978,
+ "username": "Cedrich2s",
+ "fullName": "Cedrich2s",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/da32a667975ad9925dd4d51d9952b665?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 232
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 232
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 137,
+ "total": 232
+ },
+ "targetTranslated": {
+ "tmMatch": 103,
+ "default": 152,
+ "total": 255
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 16,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 137,
+ "total": 232
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030613,
+ "username": "ChadleyETH",
+ "fullName": "ChadleyETH",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d524ba7ea4e118deb12193eb4391dd1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 57,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 73,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 32,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 57,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14620444,
+ "username": "ChanHoiLam",
+ "fullName": "ChanHoiLam",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b65458c49743c5ea9875a791a2cc61c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 11,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14254306,
+ "username": "ChiKnCoop_",
+ "fullName": "ChiKnCoop_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f8673cca6292f68d2a0c823c5ec95df2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738726,
+ "username": "Chias0",
+ "fullName": "Chias0",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f3512c352a022105f9094848fcbf8e70?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14613126,
+ "username": "ChrisKonan",
+ "fullName": "ChrisKonan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/91ce1c3e28b23fe43ca6e81529afe338?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 103
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 103
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 92,
+ "total": 103
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 88,
+ "total": 98
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 92,
+ "total": 103
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14679178,
+ "username": "CindyLou00",
+ "fullName": "CindyLou00",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/030a946612f9148b8fe4db2ea922ce0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14268970,
+ "username": "Coinder",
+ "fullName": "Coinder",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14268970/medium/480381094f413bb6119d3852fb2c22a8.png",
+ "preTranslated": 0,
+ "totalCosts": 2852
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2852
+ },
+ "translated": {
+ "tmMatch": 445,
+ "default": 2407,
+ "total": 2852
+ },
+ "targetTranslated": {
+ "tmMatch": 460,
+ "default": 2425,
+ "total": 2885
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 1072,
+ "total": 1090
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 445,
+ "default": 2407,
+ "total": 2852
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968665,
+ "username": "Col0nell94",
+ "fullName": "Col0nell94",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f70765489454b5fb16c0ed2e481f6c21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 644
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 644
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 632,
+ "total": 644
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 656,
+ "total": 666
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 516,
+ "total": 525
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 632,
+ "total": 644
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14355292,
+ "username": "CreaZyp154",
+ "fullName": "CreaZyp154",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e5a5039f8551e5de7bf7146ffb31a928?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14789894,
+ "username": "Cruca",
+ "fullName": "Cruca",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4c661a063d5bb5916c713c57a4e2033e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 151
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 151
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 151,
+ "total": 151
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 151,
+ "total": 151
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14576034,
+ "username": "Cryptocoins333",
+ "fullName": "Cryptocoins333",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dcd887ed90526ab29769d7c9d4e2a902?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036833,
+ "username": "Cubano.brito",
+ "fullName": "Cubano.brito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/585549b7881b01a2874bab77acbe3469?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 105,
+ "total": 105
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953975,
+ "username": "Cyberdog",
+ "fullName": "Cyberdog",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/637197c572b1479acb3e40d910bd3a21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1081
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1081
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 1075,
+ "total": 1081
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 1818,
+ "total": 1827
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 1075,
+ "total": 1081
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14997221,
+ "username": "DD369",
+ "fullName": "DD369",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b1b0eba0f0c27e5adb35bf066143a30f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 117
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 117
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 103,
+ "total": 117
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 102,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 61,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 103,
+ "total": 117
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13960195,
+ "username": "DamianoDamiano",
+ "fullName": "DamianoDamiano",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1ddbde4d55a9208b8b7e7bb82151f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 548
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 548
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 547,
+ "total": 548
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 578,
+ "total": 579
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 547,
+ "total": 548
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14967539,
+ "username": "Dana_Oliinyk",
+ "fullName": "Dana_Oliinyk",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967539/medium/6c853b27ba244892f1f49a4e63ce06bf.jpg",
+ "preTranslated": 0,
+ "totalCosts": 661
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 661
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 651,
+ "total": 661
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 555,
+ "total": 569
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 651,
+ "total": 661
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14659020,
+ "username": "DanielTaqueto",
+ "fullName": "DanielTaqueto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2378cc044fca7bcd0a7199b9cbf5f3e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1317
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1317
+ },
+ "translated": {
+ "tmMatch": 84,
+ "default": 1233,
+ "total": 1317
+ },
+ "targetTranslated": {
+ "tmMatch": 89,
+ "default": 1153,
+ "total": 1242
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 648,
+ "total": 649
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 84,
+ "default": 1233,
+ "total": 1317
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14013137,
+ "username": "Daniele02_777",
+ "fullName": "Daniele02_777",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14013137/medium/2c6e3ce0c561d62061fe261d40d95453.jpg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 15,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 16,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 15,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14679978,
+ "username": "Danil174",
+ "fullName": "Danil174",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a260980d1b63deeb4a4c6986209173a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730600,
+ "username": "Datenshi",
+ "fullName": "Datenshi",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730600/medium/562d4270c70922086fe1ce42f079e984.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1349
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1349
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1336,
+ "total": 1349
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 1148,
+ "total": 1160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1336,
+ "total": 1349
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14977143,
+ "username": "David0",
+ "fullName": "David0",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/079915c43f9e9335cb9507680fb52dec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 428
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 428
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 427,
+ "total": 428
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 463,
+ "total": 464
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 244,
+ "total": 245
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 427,
+ "total": 428
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14621330,
+ "username": "DeDe2424--",
+ "fullName": "DeDe2424--",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/de0e3fcc6008b6536f740e507888ce04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 159
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 159
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 151,
+ "total": 159
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 148,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 151,
+ "total": 159
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14571740,
+ "username": "DeFalT_910",
+ "fullName": "DeFalT_910",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571740/medium/b9399646973ad106a1c00dfbc772b708.jpg",
+ "preTranslated": 0,
+ "totalCosts": 357
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 357
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 353,
+ "total": 357
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 379,
+ "total": 383
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 230,
+ "total": 230
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 353,
+ "total": 357
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958061,
+ "username": "Dearry",
+ "fullName": "Dearry",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c0545f4225c9b4184db8d4a7eef62a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8450
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8450
+ },
+ "translated": {
+ "tmMatch": 144,
+ "default": 8306,
+ "total": 8450
+ },
+ "targetTranslated": {
+ "tmMatch": 216,
+ "default": 13030,
+ "total": 13246
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 474,
+ "total": 483
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 144,
+ "default": 8306,
+ "total": 8450
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13970333,
+ "username": "DeepCrypto",
+ "fullName": "DeepCrypto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/15a0efa64471f50de8019ff11749268a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14696528,
+ "username": "Deibiei",
+ "fullName": "Deibiei",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/75726f5d2b8e1b96d38e15f811c46f35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14803498,
+ "username": "DeograciousAggrey",
+ "fullName": "DeograciousAggrey",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5c60d0cf9580eabc0799b3dc5ea5dec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14636234,
+ "username": "Dialditto",
+ "fullName": "Dialditto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d02ad4e13334b048f5cc43ebddab859f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14481500,
+ "username": "Diana1941",
+ "fullName": "Diana1941",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0bf123a83b3e58235bcbc4f2dae13aab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1219
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1219
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1206,
+ "total": 1219
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 1178,
+ "total": 1192
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 530,
+ "total": 530
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1206,
+ "total": 1219
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14723446,
+ "username": "DoGame5",
+ "fullName": "DoGame5",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723446/medium/7dacda0b245cc793a6e0f617b699b92a.png",
+ "preTranslated": 0,
+ "totalCosts": 698
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 698
+ },
+ "translated": {
+ "tmMatch": 67,
+ "default": 631,
+ "total": 698
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 559,
+ "total": 615
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 67,
+ "default": 631,
+ "total": 698
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14893344,
+ "username": "DonViktor",
+ "fullName": "DonViktor",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c001e03116cbbb2188f36300d15f704f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 199
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 196,
+ "total": 199
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 246,
+ "total": 249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 196,
+ "total": 199
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698898,
+ "username": "Dooyoux",
+ "fullName": "Dooyoux",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/be0c1f011a5fac7f97bb7836f5ef5834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 840
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 840
+ },
+ "translated": {
+ "tmMatch": 96,
+ "default": 744,
+ "total": 840
+ },
+ "targetTranslated": {
+ "tmMatch": 93,
+ "default": 783,
+ "total": 876
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 96,
+ "default": 744,
+ "total": 840
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14561238,
+ "username": "DrafT26",
+ "fullName": "DrafT26",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aa65dde8ca0be7c9c6399403f732a70a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13623483,
+ "username": "DraxGaming",
+ "fullName": "DraxGaming",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13623483/medium/27537657d62787337cf275fbe3a8a2f2.png",
+ "preTranslated": 0,
+ "totalCosts": 102
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 102
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 76,
+ "total": 102
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 78,
+ "total": 106
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 76,
+ "total": 102
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034409,
+ "username": "Dumitru1980",
+ "fullName": "Dumitru1980",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034409/medium/0f6bb2ae64a3a2af67d0dc4b33592893.jpg",
+ "preTranslated": 0,
+ "totalCosts": 948
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 948
+ },
+ "translated": {
+ "tmMatch": 102,
+ "default": 846,
+ "total": 948
+ },
+ "targetTranslated": {
+ "tmMatch": 111,
+ "default": 825,
+ "total": 936
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 102,
+ "default": 846,
+ "total": 948
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14965895,
+ "username": "Dynam1c2",
+ "fullName": "Dynam1c2",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f5ad51a15e4d52f83fa91d0259e70d72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 90,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 91,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 90,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14577278,
+ "username": "ELR0ND",
+ "fullName": "ELR0ND",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d08e656b486b766ed910e31fbc9a1846?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545334,
+ "username": "Ed1",
+ "fullName": "Ed1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3b77bdfdd3c21245ed6b5e23ccf976c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14933025,
+ "username": "EdgyLsx",
+ "fullName": "EdgyLsx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/58e0d3838f341eb1089af10f1da47f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 164
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 164
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 164,
+ "total": 164
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 164,
+ "total": 164
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14473322,
+ "username": "Elhadi_Bouazizi",
+ "fullName": "Elhadi_Bouazizi",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14473322/medium/597d58b8d19a3394b781b39fbb5c1a3c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14706680,
+ "username": "Eliasdf",
+ "fullName": "Eliasdf",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/07d060decf321695437230d032a0ebcf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 110,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 121,
+ "total": 121
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 110,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690796,
+ "username": "Elksomi",
+ "fullName": "Elksomi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/005c292fb0939d213e58c9cb3550516b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 160
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 160
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 156,
+ "total": 160
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 154,
+ "total": 158
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 156,
+ "total": 160
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14169771,
+ "username": "Elparano",
+ "fullName": "Elparano",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14169771/medium/dfa5364b652e14968d3170961f4d3c76.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677792,
+ "username": "Emad980",
+ "fullName": "Emad980",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f4db43698e06d9d7319575cf3e0b510b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14716942,
+ "username": "EmalHamza",
+ "fullName": "EmalHamza",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/935cf54759907b371e411100e93e1bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa-AF",
+ "name": "Dari",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14568988,
+ "username": "Emanuele.Migliazzo",
+ "fullName": "Emanuele.Migliazzo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/19e499fecfc2110fa41d5f9c6cca5b09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 28,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 30,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 28,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14747066,
+ "username": "Emilie696",
+ "fullName": "Emilie696",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9096c1f5b3737e2f12398886f51568e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14840796,
+ "username": "Eniko.G",
+ "fullName": "Eniko.G",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840796/medium/5803be055343fda6a020e05078f97815.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5605
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5605
+ },
+ "translated": {
+ "tmMatch": 39,
+ "default": 5566,
+ "total": 5605
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 4768,
+ "total": 4794
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 39,
+ "default": 5566,
+ "total": 5605
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582306,
+ "username": "Enrique_Mayen",
+ "fullName": "Enrique_Mayen",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/acd100be47bec365b675cadb4a004a3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14796574,
+ "username": "EthBasti",
+ "fullName": "EthBasti",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7a6732a86f7c1ccb5433213069d82c29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1457
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1457
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 1433,
+ "total": 1457
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 1196,
+ "total": 1223
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 1433,
+ "total": 1457
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884558,
+ "username": "Ethereum.org_Discord-Nuble",
+ "fullName": "Ethereum.org_Discord-Nuble",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884558/medium/0094ad75d25cfe8961a0e8318ff5d7f8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 28162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28162
+ },
+ "translated": {
+ "tmMatch": 1190,
+ "default": 26972,
+ "total": 28162
+ },
+ "targetTranslated": {
+ "tmMatch": 977,
+ "default": 22224,
+ "total": 23201
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 39,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1190,
+ "default": 26972,
+ "total": 28162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14971241,
+ "username": "Evanilson98",
+ "fullName": "Evanilson98",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a68a1b6419e2a237b1cb00b21bd179b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1904
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1904
+ },
+ "translated": {
+ "tmMatch": 263,
+ "default": 1641,
+ "total": 1904
+ },
+ "targetTranslated": {
+ "tmMatch": 288,
+ "default": 1706,
+ "total": 1994
+ },
+ "translatedByMt": {
+ "tmMatch": 250,
+ "default": 1608,
+ "total": 1858
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 263,
+ "default": 1641,
+ "total": 1904
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13419366,
+ "username": "EzigboOmenana",
+ "fullName": "EzigboOmenana",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7dcc22982518fd214e4db47ca34ad5dd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682072,
+ "username": "FORGIS98",
+ "fullName": "FORGIS98",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/705db25dd7e14055044b663c8e50aa14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14587094,
+ "username": "Fabs86",
+ "fullName": "Fabs86",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/20e38dd33b57b81f2b986fb99e732bb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10832
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10832
+ },
+ "translated": {
+ "tmMatch": 373,
+ "default": 10459,
+ "total": 10832
+ },
+ "targetTranslated": {
+ "tmMatch": 434,
+ "default": 12337,
+ "total": 12771
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 2954,
+ "total": 2955
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 373,
+ "default": 10459,
+ "total": 10832
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14790174,
+ "username": "FatihOng",
+ "fullName": "FatihOng",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b19940a772c651ab824a365987d98cee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778926,
+ "username": "FedericoV",
+ "fullName": "FedericoV",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e7d4c282f4dc61c560a7b89d15d4f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 26,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 30,
+ "total": 69
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 26,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14635576,
+ "username": "FelipeBrotto",
+ "fullName": "FelipeBrotto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/663a3dedebba1ec04836b83e9d573b79?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 125,
+ "total": 127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14587244,
+ "username": "Firman_Nur",
+ "fullName": "Firman_Nur",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7101c7e5e10c284f76eea77e3f0cf494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653310,
+ "username": "Fjcerco",
+ "fullName": "Fjcerco",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b2f85155999765a60da620560da7fab9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 878
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 878
+ },
+ "translated": {
+ "tmMatch": 108,
+ "default": 770,
+ "total": 878
+ },
+ "targetTranslated": {
+ "tmMatch": 120,
+ "default": 788,
+ "total": 908
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 108,
+ "default": 770,
+ "total": 878
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14863670,
+ "username": "Fjip",
+ "fullName": "Fjip",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8bfdb4c5d5880bc97e561e52d640bfb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 416
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 416
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 406,
+ "total": 416
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 405,
+ "total": 417
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 406,
+ "total": 416
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14576790,
+ "username": "Flipote",
+ "fullName": "Flipote",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0e10502f249ea0cc6992a5bde8c62d59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 82
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 82
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14868830,
+ "username": "Fluida",
+ "fullName": "Fluida",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5cf30c9add2145daaef2294f4a936ee2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968833,
+ "username": "Foxxeek",
+ "fullName": "Foxxeek",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6366bd5a7307a3e0c02c3d551846af13?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 252
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 252
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 252,
+ "total": 252
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 212,
+ "total": 212
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 252,
+ "total": 252
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14650868,
+ "username": "FranLogar",
+ "fullName": "FranLogar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/da7372f1e2958ca78ebe38dc7173451a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14613880,
+ "username": "Franciscoyou",
+ "fullName": "Franciscoyou",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0b9efad80c0e8aac0998edbf2d9ab874?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 22,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 41,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 22,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14885094,
+ "username": "FrancoElicabe",
+ "fullName": "FrancoElicabe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f0f6b7a6624308ec4392f59fc745f03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14349092,
+ "username": "Gabsolad",
+ "fullName": "Gabsolad",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/92381063f28321dc2772fc0c17c19e9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 1,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 5,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 1,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915729,
+ "username": "Gae..l",
+ "fullName": "Gae..l",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cbca2ac72780df856d9bfd8434cf3cfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14188993,
+ "username": "Garesito",
+ "fullName": "Garesito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a61fc552d7b456b2e7d08bb9b7180ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 26,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 29,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 26,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14410638,
+ "username": "Gedalyahu",
+ "fullName": "Gedalyahu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/39dc5b730920239058530e0a6e7654e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 354
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 354
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 321,
+ "total": 354
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 293,
+ "total": 319
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 321,
+ "total": 354
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752990,
+ "username": "Gennadich0109",
+ "fullName": "Gennadich0109",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7f09490c93e0318445ad5726ead8bd8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 86
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 86
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 71,
+ "total": 86
+ },
+ "targetTranslated": {
+ "tmMatch": 647,
+ "default": 455,
+ "total": 1102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 71,
+ "total": 86
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974343,
+ "username": "George4530",
+ "fullName": "George4530",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974343/medium/eccecfc959d5a742451c99f239351234.jpg",
+ "preTranslated": 0,
+ "totalCosts": 980
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 980
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 955,
+ "total": 980
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 985,
+ "total": 1013
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 121,
+ "total": 127
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 955,
+ "total": 980
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14741848,
"username": "Gerard7",
"fullName": "Gerard7",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/435c94ee01066c8a0bdcd26d9b56da00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 18:44:31"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13461670,
+ "username": "GiorgioHerbie",
+ "fullName": "GiorgioHerbie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/842f442aeb23dc0a3f89ad10e1ba7a04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 67643
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67643
+ },
+ "translated": {
+ "tmMatch": 3222,
+ "default": 64421,
+ "total": 67643
+ },
+ "targetTranslated": {
+ "tmMatch": 3310,
+ "default": 62939,
+ "total": 66249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3222,
+ "default": 64421,
+ "total": 67643
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752230,
+ "username": "GreyWagtail",
+ "fullName": "GreyWagtail",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2134bb0381e2f0dd775e81236c470e08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 476
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 476
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 476,
+ "total": 476
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1339,
+ "total": 1339
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 476,
+ "total": 476
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14747610,
+ "username": "GrimCrow",
+ "fullName": "GrimCrow",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/74d5c5f4f2500ea6ae955846b009fcaa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 262
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 262
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 236,
+ "total": 262
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 187,
+ "total": 211
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 166,
+ "total": 166
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 236,
+ "total": 262
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14835754,
+ "username": "Grzegorzcz",
+ "fullName": "Grzegorzcz",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0c2f4f0f96fdf6214acf9928c511cb00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14400640,
+ "username": "Gumana",
+ "fullName": "Gumana",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a6c9e47198ce59e2f70918bf4c47f358?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 154
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 154
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 153,
+ "total": 154
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 157,
+ "total": 158
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 153,
+ "total": 154
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897468,
+ "username": "Gurx",
+ "fullName": "Gurx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/17c04f473116a5288b97d6a7a9e03ed6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 331
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 331
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 328,
+ "total": 331
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 269,
+ "total": 270
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 328,
+ "total": 331
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14607364,
+ "username": "Guzzt",
+ "fullName": "Guzzt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5cd3ee66cdf3d00cb3c1846147b367bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 809
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 809
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 802,
+ "total": 809
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 839,
+ "total": 847
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 802,
+ "total": 809
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896404,
+ "username": "Gymfreak92",
+ "fullName": "Gymfreak92",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d33350c910d9b7b08a25c6e1c82e7ca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 370
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 370
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 369,
+ "total": 370
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 286,
+ "total": 287
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 369,
+ "total": 370
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952791,
+ "username": "HADIDBESSH",
+ "fullName": "HADIDBESSH",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0801cb3d594f3963f46092bb8bbdaba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959227,
+ "username": "Hachemih",
+ "fullName": "Hachemih",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/161a6484fb9c8e2b3cb0f68aa7090c92?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2513
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2513
+ },
+ "translated": {
+ "tmMatch": 116,
+ "default": 2397,
+ "total": 2513
+ },
+ "targetTranslated": {
+ "tmMatch": 116,
+ "default": 2661,
+ "total": 2777
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 116,
+ "default": 2397,
+ "total": 2513
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14622304,
+ "username": "HadesCoin",
+ "fullName": "HadesCoin",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14622304/medium/15b9b8b3e7294e0b6d1ab95a9664bcb5.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733758,
+ "username": "Hamed441",
+ "fullName": "Hamed441",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e4ea59c9865f3797beacc451b3b32b5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14909599,
+ "username": "HanaWatanabe",
+ "fullName": "HanaWatanabe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/634865e912a02ed06d5368f8d2d5e7f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 229
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 229
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 214,
+ "total": 229
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 649,
+ "total": 693
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 214,
+ "total": 229
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14145377,
+ "username": "Harrypotter3379",
+ "fullName": "Harrypotter3379",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/15e1a918a5abd876ed5c9ba6ccc3c0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 4,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14852550,
+ "username": "Hassaqnation",
+ "fullName": "Hassaqnation",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a00b4aadf8f89bf322d359dd96bcbc2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13094015,
+ "username": "Helldelta",
+ "fullName": "Helldelta",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/24aec05b5426673452ad2142981dbbe1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905975,
+ "username": "Hendrik07",
+ "fullName": "Hendrik07",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4564777ac0df36d91cad47153846aef1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688126,
+ "username": "HerbertDu",
+ "fullName": "HerbertDu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cb52b90ca2e9f8cb5cc2b5d6f577f3bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15151
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15151
+ },
+ "translated": {
+ "tmMatch": 107,
+ "default": 15044,
+ "total": 15151
+ },
+ "targetTranslated": {
+ "tmMatch": 117,
+ "default": 22067,
+ "total": 22184
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 107,
+ "default": 15044,
+ "total": 15151
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950645,
+ "username": "Hermes_70",
+ "fullName": "Hermes_70",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ec259de5b99311f7d0a4f38f13b3b6b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 219
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 219
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 205,
+ "total": 219
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 242,
+ "total": 256
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 114,
+ "total": 124
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 205,
+ "total": 219
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13962749,
+ "username": "Hikari.i",
+ "fullName": "Hikari.i",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/440fe23a553b8fff798a357525cb099b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 219
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 219
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 219,
+ "total": 219
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 616,
+ "total": 616
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 219,
+ "total": 219
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709226,
+ "username": "Hishler",
+ "fullName": "Hishler",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1d641208816a310273798a47294a4393?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 61,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 51,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 61,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14569100,
+ "username": "Honestyisall",
+ "fullName": "Honestyisall",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5242aa65afb9ad7e4abc8fb91c665ce9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 107
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 107
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14686790,
+ "username": "Horus267",
+ "fullName": "Horus267",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0bd0c0622bb6a73c0650ed0f8196df99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1253
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1253
+ },
+ "translated": {
+ "tmMatch": 96,
+ "default": 1157,
+ "total": 1253
+ },
+ "targetTranslated": {
+ "tmMatch": 79,
+ "default": 970,
+ "total": 1049
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 96,
+ "default": 1157,
+ "total": 1253
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14185891,
+ "username": "HuKuTo",
+ "fullName": "HuKuTo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8608ffc699fa08df5a3c15fc271ad96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 0,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 0,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 0,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737034,
+ "username": "Hyeo_n",
+ "fullName": "Hyeo_n",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6f7556096b5c4db5979cd960daa73107?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751854,
+ "username": "IBMBigBlue",
+ "fullName": "IBMBigBlue",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5d337bd57e1bfb0bc6b6ac5445482ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025347,
+ "username": "Imothep12",
+ "fullName": "Imothep12",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2874e7a09ede048e240ddb883db8bc6b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 7,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14658876,
+ "username": "Industry_Arabic",
+ "fullName": "Industry_Arabic",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5d53f4e53843e1c474c13632321af591?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13604
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13604
+ },
+ "translated": {
+ "tmMatch": 876,
+ "default": 12728,
+ "total": 13604
+ },
+ "targetTranslated": {
+ "tmMatch": 653,
+ "default": 10659,
+ "total": 11312
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 379,
+ "total": 393
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 876,
+ "default": 12728,
+ "total": 13604
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14731248,
+ "username": "Ivan-Stepanenko",
+ "fullName": "Ivan-Stepanenko",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6f195c3ef662fb75acba8423de1de144?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 66
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 65,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 54,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 65,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14762802,
+ "username": "IvanaEth",
+ "fullName": "IvanaEth",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762802/medium/bf27721f20f228816129b84335301a7f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 541
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 541
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 519,
+ "total": 541
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 317,
+ "total": 339
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 519,
+ "total": 541
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13513343,
+ "username": "IwAn11",
+ "fullName": "IwAn11",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a4816e34602d9fd985da36f8b9144514?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 43,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 43,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 43,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867004,
+ "username": "JRay",
+ "fullName": "JRay",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867004/medium/82c9ff6ab75bffb7784d244698b3becc.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 6,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 13,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 6,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902898,
+ "username": "JacobEvans56",
+ "fullName": "JacobEvans56",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ec4d863a839de81ce1e8cb9c19394bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 155
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 155
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 153,
+ "total": 155
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 126,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 153,
+ "total": 155
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984219,
+ "username": "James100",
+ "fullName": "James100",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984219/medium/170c2a833d512d43190723fab37cb527.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1285
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "my",
+ "name": "Burmese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 586
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 583,
+ "total": 586
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 786,
+ "total": 788
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 583,
+ "total": 586
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 699
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 699,
+ "total": 699
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1794,
+ "total": 1794
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 699,
+ "total": 699
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14567610,
+ "username": "Jaryn",
+ "fullName": "Jaryn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/65157edcd1e226e4108a5038ba4a7bf0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 98
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 98
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 96,
+ "total": 98
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 132,
+ "total": 135
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 96,
+ "total": 98
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13432036,
+ "username": "Jay-Way",
+ "fullName": "Jay-Way",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13432036/medium/d8fc2570988848e2d0bd21ceeab36080.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 15,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14642742,
+ "username": "Jerrulul",
+ "fullName": "Jerrulul",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/31c239a1b4f66fa0ccaad7d3925fa501?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 131
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 131
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 128,
+ "total": 131
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 95,
+ "total": 97
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 128,
+ "total": 131
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14998947,
+ "username": "JohanZwaan",
+ "fullName": "JohanZwaan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/059ccba4dec87bf92777b65c96d4eea5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14810702,
+ "username": "Joisir",
+ "fullName": "Joisir",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810702/medium/26fc6df7964704f4b4281510ca2a1d8f.png",
+ "preTranslated": 0,
+ "totalCosts": 651
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 651
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 649,
+ "total": 651
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 572,
+ "total": 574
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 265,
+ "total": 265
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 649,
+ "total": 651
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771104,
+ "username": "Jonathereum",
+ "fullName": "Jonathereum",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/73a76621e41852e8503594d132ed12c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1048
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1048
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 1024,
+ "total": 1048
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 1076,
+ "total": 1097
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 1024,
+ "total": 1048
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677628,
+ "username": "Josek33",
+ "fullName": "Josek33",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/58b70d473e150d07a5de0618a9dfc4a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14776878,
+ "username": "JoshNX",
+ "fullName": "JoshNX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4137d46ef3ef3f0fcb886d48e80491d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 143
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 143
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 142,
+ "total": 143
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 123,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 142,
+ "total": 143
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838794,
+ "username": "JuanB.Mont",
+ "fullName": "JuanB.Mont",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/96849b7ff7bc62a4f1c9bebbcfebd42e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1212
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1212
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 1161,
+ "total": 1212
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 1052,
+ "total": 1090
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 460,
+ "total": 460
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 1161,
+ "total": 1212
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553260,
+ "username": "JudasLuo",
+ "fullName": "JudasLuo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d57d9372ebe67ca8666febb5dc59ab2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 157
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 157
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 113,
+ "total": 157
+ },
+ "targetTranslated": {
+ "tmMatch": 115,
+ "default": 169,
+ "total": 284
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 28,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 113,
+ "total": 157
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15004413,
+ "username": "Judzovka",
+ "fullName": "Judzovka",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/96db3d146f56e353c11734a72926390d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14059101,
+ "username": "Julayi",
+ "fullName": "Julayi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3bc13f1e0186692b5f7a5dc87450cb17?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 632
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 632
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 578,
+ "total": 632
+ },
+ "targetTranslated": {
+ "tmMatch": 72,
+ "default": 722,
+ "total": 794
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 578,
+ "total": 632
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903057,
+ "username": "Jumin_Jessica",
+ "fullName": "Jumin_Jessica",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903057/medium/049fcb6eb765b002ac5e5ee318fc3960.png",
+ "preTranslated": 0,
+ "totalCosts": 1149
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1149
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 1141,
+ "total": 1149
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 921,
+ "total": 927
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 1141,
+ "total": 1149
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677584,
+ "username": "Jzurithe",
+ "fullName": "Jzurithe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bfb6810d6106aa9696da572ef836ce83?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15031693,
+ "username": "KIP_KIP",
+ "fullName": "KIP_KIP",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/940744a530616fa21717679e4178557d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4171
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4171
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 4150,
+ "total": 4171
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 4118,
+ "total": 4138
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 788,
+ "total": 793
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 4150,
+ "total": 4171
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14684212,
+ "username": "KaddourAlabbas",
+ "fullName": "KaddourAlabbas",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/89ca8a546b5675b4208524874cdeefbd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 924
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 924
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 913,
+ "total": 924
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 913,
+ "total": 924
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 913,
+ "total": 924
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14609078,
+ "username": "Kaersaan",
+ "fullName": "Kaersaan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/af98b93ce5a2f27c56ed437a3c08902e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14731338,
+ "username": "Kanna121",
+ "fullName": "Kanna121",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c3a5760c8e49d21d649b252d1fd14d95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915929,
+ "username": "KarolekPLRU",
+ "fullName": "KarolekPLRU",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/582fd5beae1a041556b1f404fb78aa37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 210
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 208
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 178,
+ "total": 208
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 141,
+ "total": 171
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 88,
+ "total": 103
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 178,
+ "total": 208
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866158,
+ "username": "Kazel",
+ "fullName": "Kazel",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866158/medium/95b9c5e14784dc12d1399307e66d4eb2.gif",
+ "preTranslated": 0,
+ "totalCosts": 1040
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1040
+ },
+ "translated": {
+ "tmMatch": 245,
+ "default": 795,
+ "total": 1040
+ },
+ "targetTranslated": {
+ "tmMatch": 224,
+ "default": 751,
+ "total": 975
+ },
+ "translatedByMt": {
+ "tmMatch": 95,
+ "default": 505,
+ "total": 600
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 245,
+ "default": 795,
+ "total": 1040
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13756885,
+ "username": "Kenjii",
+ "fullName": "Kenjii",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2676e1ee36216229cfc692b9ce1e859c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 292
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 292
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 288,
+ "total": 292
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 290,
+ "total": 294
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 288,
+ "total": 292
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999655,
+ "username": "Kevster",
+ "fullName": "Kevster",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9d6dba77a98f5e2d3115cbf8f877f3c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 135,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 140,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 80,
+ "total": 92
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 135,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14714982,
+ "username": "Kfar",
+ "fullName": "Kfar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f826f7f5f38f24349fdd473c333e2faf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 281
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 281
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 281,
+ "total": 281
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 280,
+ "total": 280
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 281,
+ "total": 281
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14557298,
+ "username": "KhalidM",
+ "fullName": "KhalidM",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6cc88181eb07d095c6edde8246ad9d76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14972843,
+ "username": "Khraken",
+ "fullName": "Khraken",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5ef38b24c37f6064315ee252c8a93959?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14871250,
+ "username": "Kiepasaaaaa",
+ "fullName": "Kiepasaaaaa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/abd1d53abc1ac7a2913000a934adeff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928453",
- "username": "devinderkumar321123",
- "fullName": "Well Done (devinderkumar321123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928453/medium/3ff4bb393f438e00e776eb20608acbc8.jpeg",
- "joined": "2021-09-18 16:20:07"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959387,
+ "username": "KilloWhite",
+ "fullName": "KilloWhite",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e8f2418e216e5a1f81edfdbe073d83de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 83,
+ "total": 83
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830086,
+ "username": "Kirschm",
+ "fullName": "Kirschm",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb37d97855a77d257dfaf8b6daf645d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582588,
+ "username": "Kkian",
+ "fullName": "Kkian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/45d56e8f8347f2a3270d069f7edda272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687376,
+ "username": "KlmnZ",
+ "fullName": "KlmnZ",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e91a8df155651d6b2439ba7bbdf7a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2810
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2810
+ },
+ "translated": {
+ "tmMatch": 109,
+ "default": 2701,
+ "total": 2810
+ },
+ "targetTranslated": {
+ "tmMatch": 118,
+ "default": 2835,
+ "total": 2953
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 169,
+ "total": 169
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 109,
+ "default": 2701,
+ "total": 2810
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735878,
+ "username": "KnowsCount",
+ "fullName": "KnowsCount",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e9bad5d32ab7ceabb15d5c92689925b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 255
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 255
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 250,
+ "total": 255
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 406,
+ "total": 416
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 250,
+ "total": 255
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14743326,
+ "username": "Kryptotopf",
+ "fullName": "Kryptotopf",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8f71782a0db5b66a7731e0a1f7c8d874?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 346
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 346
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 334,
+ "total": 346
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 294,
+ "total": 306
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 334,
+ "total": 346
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14647882,
+ "username": "Kugeki",
+ "fullName": "Kugeki",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ac517f392a990052115949ce480a7e58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 117
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 117
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 81,
+ "total": 81
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631076,
+ "username": "Kuthep",
+ "fullName": "Kuthep",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6bb2f5fe2b472535dabfe1454f4a591e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702036",
- "username": "torrodal",
- "fullName": "Alex Torres (torrodal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702036/medium/9d473b100fcd30b4b2c327d5a172a154.png",
- "joined": "2021-04-07 12:28:33"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 177
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 166,
+ "total": 177
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 142,
+ "total": 153
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 166,
+ "total": 177
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14629216,
+ "username": "KyraInLove",
+ "fullName": "KyraInLove",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e7694c070365ac8ef2ef7574145a1629?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 194,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 200,
+ "total": 203
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 194,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14804874,
+ "username": "LHD",
+ "fullName": "LHD",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e24fcfddb6f5847a01d8bcd8d40b8693?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867008,
+ "username": "LJian",
+ "fullName": "LJian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/495d44b77952b5132b203781a3911fe0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13971447,
+ "username": "LQSReviewFr",
+ "fullName": "LQSReviewFr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/39a45008bd00a53a540ea8d8cdd6a28d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10142
+ },
+ "translated": {
+ "tmMatch": 356,
+ "default": 9786,
+ "total": 10142
+ },
+ "targetTranslated": {
+ "tmMatch": 433,
+ "default": 11340,
+ "total": 11773
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 51,
+ "total": 64
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 19989
+ },
+ "translationCosts": {
+ "tmMatch": 356,
+ "default": 9786,
+ "total": 10142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14034260,
+ "username": "LQS_AR_linguist",
+ "fullName": "LQS_AR_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4299e95f2805914901d31d70d3e716d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11749
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11749
+ },
+ "translated": {
+ "tmMatch": 3393,
+ "default": 8356,
+ "total": 11749
+ },
+ "targetTranslated": {
+ "tmMatch": 3277,
+ "default": 7960,
+ "total": 11237
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 467,
+ "total": 475
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16670
+ },
+ "translationCosts": {
+ "tmMatch": 3393,
+ "default": 8356,
+ "total": 11749
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14832782,
+ "username": "LQS_BG_Linguist",
+ "fullName": "LQS_BG_Linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6cab534abf8fcb64a00cbaa14521b384?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6729
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6729
+ },
+ "translated": {
+ "tmMatch": 238,
+ "default": 6491,
+ "total": 6729
+ },
+ "targetTranslated": {
+ "tmMatch": 263,
+ "default": 6680,
+ "total": 6943
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16830
+ },
+ "translationCosts": {
+ "tmMatch": 238,
+ "default": 6491,
+ "total": 6729
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13973069,
+ "username": "LQS_CHS_linguist",
+ "fullName": "LQS_CHS_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4848f87680943cbc4389240c602aeb2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 55718
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 55718
+ },
+ "translated": {
+ "tmMatch": 3802,
+ "default": 51916,
+ "total": 55718
+ },
+ "targetTranslated": {
+ "tmMatch": 5904,
+ "default": 74738,
+ "total": 80642
+ },
+ "translatedByMt": {
+ "tmMatch": 21,
+ "default": 231,
+ "total": 252
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 116435
+ },
+ "translationCosts": {
+ "tmMatch": 3802,
+ "default": 51916,
+ "total": 55718
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14041940,
+ "username": "LQS_CS_linguist",
+ "fullName": "LQS_CS_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ee4f2fc9762c71e291da718a14a814ac?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4263
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4263
+ },
+ "translated": {
+ "tmMatch": 458,
+ "default": 3805,
+ "total": 4263
+ },
+ "targetTranslated": {
+ "tmMatch": 475,
+ "default": 3750,
+ "total": 4225
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 11277
+ },
+ "translationCosts": {
+ "tmMatch": 458,
+ "default": 3805,
+ "total": 4263
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14557116,
+ "username": "LQS_CZ_David",
+ "fullName": "LQS_CZ_David",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d1b270bb1ae7d524c68e0b990b150008?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 562
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 562
+ },
+ "translated": {
+ "tmMatch": 41,
+ "default": 521,
+ "total": 562
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 535,
+ "total": 582
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 38,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 583
+ },
+ "translationCosts": {
+ "tmMatch": 41,
+ "default": 521,
+ "total": 562
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14056918,
+ "username": "LQS_DE_SR",
+ "fullName": "LQS_DE_SR",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/69f27da60e0b3b3772cbbd55a97ef260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11785
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11785
+ },
+ "translated": {
+ "tmMatch": 800,
+ "default": 10985,
+ "total": 11785
+ },
+ "targetTranslated": {
+ "tmMatch": 774,
+ "default": 10652,
+ "total": 11426
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 543,
+ "total": 552
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 27483
+ },
+ "translationCosts": {
+ "tmMatch": 800,
+ "default": 10985,
+ "total": 11785
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13993041,
+ "username": "LQS_EL_linguist",
+ "fullName": "LQS_EL_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7923c0318fb7718899f5efcf235fa147?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 909
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 909
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 869,
+ "total": 909
+ },
+ "targetTranslated": {
+ "tmMatch": 40,
+ "default": 984,
+ "total": 1024
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 3758
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 869,
+ "total": 909
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14466218,
+ "username": "LQS_ESEM_linguist",
+ "fullName": "LQS_ESEM_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d5f26cf99fa7c6116b75f499f8de93ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 58381
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58381
+ },
+ "translated": {
+ "tmMatch": 6732,
+ "default": 51649,
+ "total": 58381
+ },
+ "targetTranslated": {
+ "tmMatch": 6810,
+ "default": 54743,
+ "total": 61553
+ },
+ "translatedByMt": {
+ "tmMatch": 59,
+ "default": 1121,
+ "total": 1180
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 90222
+ },
+ "translationCosts": {
+ "tmMatch": 6732,
+ "default": 51649,
+ "total": 58381
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689490,
+ "username": "LQS_ESEM_proofreader",
+ "fullName": "LQS_ESEM_proofreader",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dc5e8f633364be63c5708828228875d5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13268
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13268
+ },
+ "translated": {
+ "tmMatch": 550,
+ "default": 12718,
+ "total": 13268
+ },
+ "targetTranslated": {
+ "tmMatch": 650,
+ "default": 14069,
+ "total": 14719
+ },
+ "translatedByMt": {
+ "tmMatch": 32,
+ "default": 0,
+ "total": 32
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16216
+ },
+ "translationCosts": {
+ "tmMatch": 550,
+ "default": 12718,
+ "total": 13268
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13993811,
+ "username": "LQS_ES_linguist",
+ "fullName": "LQS_ES_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/81881e0b0c35c44e87398edeee73cd4b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3310
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3310
+ },
+ "translated": {
+ "tmMatch": 142,
+ "default": 3168,
+ "total": 3310
+ },
+ "targetTranslated": {
+ "tmMatch": 148,
+ "default": 3611,
+ "total": 3759
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 56,
+ "total": 58
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4604
+ },
+ "translationCosts": {
+ "tmMatch": 142,
+ "default": 3168,
+ "total": 3310
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14026881,
+ "username": "LQS_FA_linguist",
+ "fullName": "LQS_FA_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0ed7e7989f1998e36a68bc257bec64f7?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4420
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4420
+ },
+ "translated": {
+ "tmMatch": 215,
+ "default": 4205,
+ "total": 4420
+ },
+ "targetTranslated": {
+ "tmMatch": 267,
+ "default": 4746,
+ "total": 5013
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4392
+ },
+ "translationCosts": {
+ "tmMatch": 215,
+ "default": 4205,
+ "total": 4420
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14369122,
+ "username": "LQS_FI_linguist",
+ "fullName": "LQS_FI_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f41ca314dbb884a59c257099110b0129?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6280
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6280
+ },
+ "translated": {
+ "tmMatch": 1765,
+ "default": 4515,
+ "total": 6280
+ },
+ "targetTranslated": {
+ "tmMatch": 1484,
+ "default": 3523,
+ "total": 5007
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 60,
+ "total": 61
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 9632
+ },
+ "translationCosts": {
+ "tmMatch": 1765,
+ "default": 4515,
+ "total": 6280
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14153057,
+ "username": "LQS_FR_linguist",
+ "fullName": "LQS_FR_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0cf48fed2dada8814d963ea205313494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 63078
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63078
+ },
+ "translated": {
+ "tmMatch": 8574,
+ "default": 54504,
+ "total": 63078
+ },
+ "targetTranslated": {
+ "tmMatch": 8944,
+ "default": 55044,
+ "total": 63988
+ },
+ "translatedByMt": {
+ "tmMatch": 89,
+ "default": 262,
+ "total": 351
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 79750
+ },
+ "translationCosts": {
+ "tmMatch": 8574,
+ "default": 54504,
+ "total": 63078
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14663076,
+ "username": "LQS_HR_linguist",
+ "fullName": "LQS_HR_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b0d21b6ac5ef5d0ffde74179308cd3a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9628
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9628
+ },
+ "translated": {
+ "tmMatch": 448,
+ "default": 9180,
+ "total": 9628
+ },
+ "targetTranslated": {
+ "tmMatch": 434,
+ "default": 8399,
+ "total": 8833
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16817
+ },
+ "translationCosts": {
+ "tmMatch": 448,
+ "default": 9180,
+ "total": 9628
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14411552,
+ "username": "LQS_HU_Linguist",
+ "fullName": "LQS_HU_Linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/debd0759ebd4f0a2323b63d06d3fbd33?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17395
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 3
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731338",
- "username": "Kanna121",
- "fullName": "Kanna121",
- "avatarUrl": "https://www.gravatar.com/avatar/c3a5760c8e49d21d649b252d1fd14d95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 09:05:06"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17395
+ },
+ "translated": {
+ "tmMatch": 3215,
+ "default": 14180,
+ "total": 17395
+ },
+ "targetTranslated": {
+ "tmMatch": 2856,
+ "default": 11994,
+ "total": 14850
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 96083
+ },
+ "translationCosts": {
+ "tmMatch": 3215,
+ "default": 14180,
+ "total": 17395
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14624926,
+ "username": "LQS_Hindi_linguist",
+ "fullName": "LQS_Hindi_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/283bf7a87124cfc5bc5d2021783f463d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14465
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14465
+ },
+ "translated": {
+ "tmMatch": 712,
+ "default": 13753,
+ "total": 14465
+ },
+ "targetTranslated": {
+ "tmMatch": 1289,
+ "default": 24113,
+ "total": 25402
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16886
+ },
+ "translationCosts": {
+ "tmMatch": 712,
+ "default": 13753,
+ "total": 14465
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14050935,
+ "username": "LQS_ID_linguist",
+ "fullName": "LQS_ID_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9e25efa0472c314604bdbebac0a9f8af?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2879
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2879
+ },
+ "translated": {
+ "tmMatch": 956,
+ "default": 1923,
+ "total": 2879
+ },
+ "targetTranslated": {
+ "tmMatch": 1014,
+ "default": 1916,
+ "total": 2930
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13733
+ },
+ "translationCosts": {
+ "tmMatch": 956,
+ "default": 1923,
+ "total": 2879
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14520190,
+ "username": "LQS_IGBO2_linguist",
+ "fullName": "LQS_IGBO2_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd22e80ae765c0e2b8fbd6ab75b00fc3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 693
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 693
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 679,
+ "total": 693
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 868,
+ "total": 895
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 745
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 679,
+ "total": 693
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14029082,
+ "username": "LQS_IGBO_linguist",
+ "fullName": "LQS_IGBO_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/88301d908987bdfcb8110c8d69cff169?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2061
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2061
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 2007,
+ "total": 2061
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 2323,
+ "total": 2392
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2294
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 2007,
+ "total": 2061
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14138507,
+ "username": "LQS_IT_linguist",
+ "fullName": "LQS_IT_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f606b0f68b8dc2cbd68aa4f285fe2f3d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5614
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5614
+ },
+ "translated": {
+ "tmMatch": 1877,
+ "default": 3737,
+ "total": 5614
+ },
+ "targetTranslated": {
+ "tmMatch": 2001,
+ "default": 4148,
+ "total": 6149
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 7561
+ },
+ "translationCosts": {
+ "tmMatch": 1877,
+ "default": 3737,
+ "total": 5614
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13974365,
+ "username": "LQS_Italian",
+ "fullName": "LQS_Italian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67c435dc825cb94ac38e8522d4c57c31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 88340
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 88340
+ },
+ "translated": {
+ "tmMatch": 4514,
+ "default": 83826,
+ "total": 88340
+ },
+ "targetTranslated": {
+ "tmMatch": 4073,
+ "default": 80580,
+ "total": 84653
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 241,
+ "total": 252
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 108154
+ },
+ "translationCosts": {
+ "tmMatch": 4514,
+ "default": 83826,
+ "total": 88340
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14326452,
+ "username": "LQS_LT_linguist",
+ "fullName": "LQS_LT_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/76452e8fac12178e2af8ff8a35797771?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5598
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5598
+ },
+ "translated": {
+ "tmMatch": 2400,
+ "default": 3198,
+ "total": 5598
+ },
+ "targetTranslated": {
+ "tmMatch": 2240,
+ "default": 2906,
+ "total": 5146
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13626
+ },
+ "translationCosts": {
+ "tmMatch": 2400,
+ "default": 3198,
+ "total": 5598
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14294594,
+ "username": "LQS_MLIN_linguist",
+ "fullName": "LQS_MLIN_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7eb92f37b99e62fc4a247eb58e8359bd?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19167
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19167
+ },
+ "translated": {
+ "tmMatch": 4012,
+ "default": 15155,
+ "total": 19167
+ },
+ "targetTranslated": {
+ "tmMatch": 6322,
+ "default": 25090,
+ "total": 31412
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 1,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 32868
+ },
+ "translationCosts": {
+ "tmMatch": 4012,
+ "default": 15155,
+ "total": 19167
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14024065,
+ "username": "LQS_NL_linguist",
+ "fullName": "LQS_NL_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5636b253d084ca5b3f4e25b9f18ffcdd?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3566
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3566
+ },
+ "translated": {
+ "tmMatch": 204,
+ "default": 3362,
+ "total": 3566
+ },
+ "targetTranslated": {
+ "tmMatch": 219,
+ "default": 3387,
+ "total": 3606
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4604
+ },
+ "translationCosts": {
+ "tmMatch": 204,
+ "default": 3362,
+ "total": 3566
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14274478,
+ "username": "LQS_NO_linguist",
+ "fullName": "LQS_NO_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/77921a1d767de0fcdf033d0e5f3640ea?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10569
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10569
+ },
+ "translated": {
+ "tmMatch": 5106,
+ "default": 5463,
+ "total": 10569
+ },
+ "targetTranslated": {
+ "tmMatch": 5081,
+ "default": 5129,
+ "total": 10210
+ },
+ "translatedByMt": {
+ "tmMatch": 20,
+ "default": 482,
+ "total": 502
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13347
+ },
+ "translationCosts": {
+ "tmMatch": 5106,
+ "default": 5463,
+ "total": 10569
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14024277,
+ "username": "LQS_PL_linguist",
+ "fullName": "LQS_PL_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/05d785da2f97f8f46cae785b698161d8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1030
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1030
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 974,
+ "total": 1030
+ },
+ "targetTranslated": {
+ "tmMatch": 58,
+ "default": 959,
+ "total": 1017
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 186,
+ "total": 189
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4514
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 974,
+ "total": 1030
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14146621,
+ "username": "LQS_PL_linguist1",
+ "fullName": "LQS_PL_linguist1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6337f9f650b5632e54dcb6ddfe091422?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52368
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52368
+ },
+ "translated": {
+ "tmMatch": 1677,
+ "default": 50691,
+ "total": 52368
+ },
+ "targetTranslated": {
+ "tmMatch": 1638,
+ "default": 41195,
+ "total": 42833
+ },
+ "translatedByMt": {
+ "tmMatch": 53,
+ "default": 887,
+ "total": 940
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 113066
+ },
+ "translationCosts": {
+ "tmMatch": 1677,
+ "default": 50691,
+ "total": 52368
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030478,
+ "username": "LQS_PTBR_linguist",
+ "fullName": "LQS_PTBR_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/02c91c3d77c3bed75edc672e2df15004?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16832
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16832
+ },
+ "translated": {
+ "tmMatch": 3388,
+ "default": 13444,
+ "total": 16832
+ },
+ "targetTranslated": {
+ "tmMatch": 3741,
+ "default": 14405,
+ "total": 18146
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 398,
+ "total": 408
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 31453
+ },
+ "translationCosts": {
+ "tmMatch": 3388,
+ "default": 13444,
+ "total": 16832
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14135743,
+ "username": "LQS_PTPT_linguist",
+ "fullName": "LQS_PTPT_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/18f2e0efe3821c96603232e53d4fae82?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8539
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8539
+ },
+ "translated": {
+ "tmMatch": 3801,
+ "default": 4738,
+ "total": 8539
+ },
+ "targetTranslated": {
+ "tmMatch": 4097,
+ "default": 5086,
+ "total": 9183
+ },
+ "translatedByMt": {
+ "tmMatch": 87,
+ "default": 195,
+ "total": 282
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 7264
+ },
+ "translationCosts": {
+ "tmMatch": 3801,
+ "default": 4738,
+ "total": 8539
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14141643,
+ "username": "LQS_RO_linguist",
+ "fullName": "LQS_RO_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/206e28dd1d437b3d3016495805493763?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26093
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26093
+ },
+ "translated": {
+ "tmMatch": 3760,
+ "default": 22333,
+ "total": 26093
+ },
+ "targetTranslated": {
+ "tmMatch": 3687,
+ "default": 22194,
+ "total": 25881
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 52,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 117684
+ },
+ "translationCosts": {
+ "tmMatch": 3760,
+ "default": 22333,
+ "total": 26093
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13993717,
+ "username": "LQS_RU_linguist",
+ "fullName": "LQS_RU_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e2e6b964a673a040b806c3dff5267f4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14348
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14348
+ },
+ "translated": {
+ "tmMatch": 550,
+ "default": 13798,
+ "total": 14348
+ },
+ "targetTranslated": {
+ "tmMatch": 533,
+ "default": 12708,
+ "total": 13241
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 212,
+ "total": 222
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20747
+ },
+ "translationCosts": {
+ "tmMatch": 550,
+ "default": 13798,
+ "total": 14348
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13993311,
+ "username": "LQS_SK_linguist",
+ "fullName": "LQS_SK_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/db387e60ee7f7fb7ab959a256137f551?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1485
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1485
+ },
+ "translated": {
+ "tmMatch": 101,
+ "default": 1384,
+ "total": 1485
+ },
+ "targetTranslated": {
+ "tmMatch": 100,
+ "default": 1351,
+ "total": 1451
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 3857
+ },
+ "translationCosts": {
+ "tmMatch": 101,
+ "default": 1384,
+ "total": 1485
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030666,
+ "username": "LQS_SL_linguist",
+ "fullName": "LQS_SL_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d8bbdd1ddae3369c37aee919a054d00d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11648
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11648
+ },
+ "translated": {
+ "tmMatch": 327,
+ "default": 11321,
+ "total": 11648
+ },
+ "targetTranslated": {
+ "tmMatch": 327,
+ "default": 10927,
+ "total": 11254
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20710
+ },
+ "translationCosts": {
+ "tmMatch": 327,
+ "default": 11321,
+ "total": 11648
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14044792,
+ "username": "LQS_SV_linguist",
+ "fullName": "LQS_SV_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ba028f2d3f1cc09f57c63b38141671d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11849
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11849
+ },
+ "translated": {
+ "tmMatch": 2528,
+ "default": 9321,
+ "total": 11849
+ },
+ "targetTranslated": {
+ "tmMatch": 2526,
+ "default": 8962,
+ "total": 11488
+ },
+ "translatedByMt": {
+ "tmMatch": 246,
+ "default": 1428,
+ "total": 1674
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13815
+ },
+ "translationCosts": {
+ "tmMatch": 2528,
+ "default": 9321,
+ "total": 11849
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14114827,
+ "username": "LQS_Slovak_linguist",
+ "fullName": "LQS_Slovak_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5d855c97079066806b64b903c4ae0bd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8443
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8443
+ },
+ "translated": {
+ "tmMatch": 4746,
+ "default": 3697,
+ "total": 8443
+ },
+ "targetTranslated": {
+ "tmMatch": 4779,
+ "default": 3743,
+ "total": 8522
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 12015
+ },
+ "translationCosts": {
+ "tmMatch": 4746,
+ "default": 3697,
+ "total": 8443
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14136969,
+ "username": "LQS_TR_linguist",
+ "fullName": "LQS_TR_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/836d07f2a54868c7738a512b955e306e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21547
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21547
+ },
+ "translated": {
+ "tmMatch": 6946,
+ "default": 14601,
+ "total": 21547
+ },
+ "targetTranslated": {
+ "tmMatch": 6483,
+ "default": 12728,
+ "total": 19211
+ },
+ "translatedByMt": {
+ "tmMatch": 29,
+ "default": 9,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 30683
+ },
+ "translationCosts": {
+ "tmMatch": 6946,
+ "default": 14601,
+ "total": 21547
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14143907,
+ "username": "LQS_ZHTW_linguist",
+ "fullName": "LQS_ZHTW_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bfccd98f25bea1b676f45938fc8a92ad?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9403
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9403
+ },
+ "translated": {
+ "tmMatch": 4337,
+ "default": 5066,
+ "total": 9403
+ },
+ "targetTranslated": {
+ "tmMatch": 6979,
+ "default": 7619,
+ "total": 14598
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 14473
+ },
+ "translationCosts": {
+ "tmMatch": 4337,
+ "default": 5066,
+ "total": 9403
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13964863,
+ "username": "LQSreview",
+ "fullName": "LQSreview",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1fc7231d66b0da5d93cb15581154d35c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2999
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2999
+ },
+ "translated": {
+ "tmMatch": 53,
+ "default": 2946,
+ "total": 2999
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 2883,
+ "total": 2940
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 3761
+ },
+ "translationCosts": {
+ "tmMatch": 53,
+ "default": 2946,
+ "total": 2999
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14932469,
+ "username": "LadyLurvecia",
+ "fullName": "LadyLurvecia",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932469/medium/15d23e44ef625fd6ceab89b52fdda53b.JPG",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14745718,
+ "username": "LatestVGC",
+ "fullName": "LatestVGC",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d2122eb470a4a72f1d34fceb303344fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 165
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 165
+ },
+ "translated": {
+ "tmMatch": 165,
+ "default": 0,
+ "total": 165
+ },
+ "targetTranslated": {
+ "tmMatch": 167,
+ "default": 0,
+ "total": 167
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 165,
+ "default": 0,
+ "total": 165
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13964197,
+ "username": "Ldibartolo",
+ "fullName": "Ldibartolo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2122a92514b788b40e427154fec7e3d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740652",
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14823752,
+ "username": "Leo500023",
+ "fullName": "Leo500023",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/367819555226fe04e92cd96b4e10c772?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13613906,
+ "username": "Leopinto",
+ "fullName": "Leopinto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1eb6a8d18a610c5a592046fe77b5dd28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14219550,
+ "username": "Liang_liang",
+ "fullName": "Liang_liang",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14219550/medium/a095641e3396148666fb374bd2084728.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3896
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3896
+ },
+ "translated": {
+ "tmMatch": 1157,
+ "default": 2739,
+ "total": 3896
+ },
+ "targetTranslated": {
+ "tmMatch": 1972,
+ "default": 4139,
+ "total": 6111
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1157,
+ "default": 2739,
+ "total": 3896
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14967619,
+ "username": "Liliia02",
+ "fullName": "Liliia02",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d92b7d370bc905ed131527729aaf8dfc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2484
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2484
+ },
+ "translated": {
+ "tmMatch": 209,
+ "default": 2275,
+ "total": 2484
+ },
+ "targetTranslated": {
+ "tmMatch": 166,
+ "default": 1968,
+ "total": 2134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 209,
+ "default": 2275,
+ "total": 2484
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891070,
+ "username": "LinaUlles",
+ "fullName": "LinaUlles",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6da01d04cd125a243608323649042656?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 710
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 710
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 704,
+ "total": 710
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 825,
+ "total": 832
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 704,
+ "total": 710
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830096,
+ "username": "LizYang",
+ "fullName": "LizYang",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830096/medium/1d43d1a252a80e0dbe6f6e6d15f1b46c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867324,
+ "username": "Lltranslating",
+ "fullName": "Lltranslating",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d911615bac9a3b8687a2eb9af8988539?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 248
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 248,
+ "total": 248
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 283,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 248,
+ "total": 248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033811,
+ "username": "Lubiab19",
+ "fullName": "Lubiab19",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85f5f55b79e8f44bf36ebd75a3883092?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-IN",
+ "name": "Urdu (India)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14740652,
"username": "Luckyboys",
"fullName": "Luckyboys",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/1f5da764203f7771d56caca50c2f5b5c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 09:42:15"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546464,
+ "username": "LucyCroft",
+ "fullName": "LucyCroft",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4f53453c3674623f046a36d946c614c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 175
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 172
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 171,
+ "total": 172
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 176,
+ "total": 177
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 171,
+ "total": 172
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12682536,
+ "username": "Lulucmy",
+ "fullName": "Lulucmy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3994e4ec5a07df9f43acb68f5c0e179f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1919
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1919
+ },
+ "translated": {
+ "tmMatch": 64,
+ "default": 1855,
+ "total": 1919
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 2080,
+ "total": 2149
+ },
+ "translatedByMt": {
+ "tmMatch": 19,
+ "default": 739,
+ "total": 758
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 64,
+ "default": 1855,
+ "total": 1919
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572026,
+ "username": "Lurdespons",
+ "fullName": "Lurdespons",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/070122b85e82c3b6bcc63ab11eb0c46b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 36,
+ "default": 365,
+ "total": 401
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 444,
+ "total": 492
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 583
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14796126,
+ "username": "Lyubo69",
+ "fullName": "Lyubo69",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/031a3ffbe3f054bc23ce7dc79d030b03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 322
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 322
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 320,
+ "total": 322
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 316,
+ "total": 318
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 320,
+ "total": 322
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14672670,
+ "username": "MARG8",
+ "fullName": "MARG8",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f426789a5148e8597a7ec87981bd73b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 842
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 842
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 836,
+ "total": 842
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 773,
+ "total": 779
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 422,
+ "total": 425
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 836,
+ "total": 842
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905348,
+ "username": "MIntAP",
+ "fullName": "MIntAP",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c3743f4719855a1c27338db60123f863?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14731932,
+ "username": "MQL83",
+ "fullName": "MQL83",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/348c513aed120afc29cc2d347b1a4bff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 129
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 87,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 90,
+ "total": 138
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 87,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14967935,
+ "username": "Ma1402",
+ "fullName": "Ma1402",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/311ed7b3758f60f466de00372d67d556?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 13,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14954589,
+ "username": "Maexstallion",
+ "fullName": "Maexstallion",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/65c0ee1626a3633d40b2f1fbc5698d96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 84
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 84
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 93,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14960053,
+ "username": "Mahesar",
+ "fullName": "Mahesar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1fbe4b214f0e543eaa0df60332c31636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14758430,
+ "username": "Maitha01",
+ "fullName": "Maitha01",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/740fbf77f98b5235c9b65b1c5f607bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 413
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 413
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 402,
+ "total": 413
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 389,
+ "total": 402
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 402,
+ "total": 413
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545254,
+ "username": "Makezu",
+ "fullName": "Makezu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d2523f584b6f392d895229c22d570f0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005335,
+ "username": "Mamorim",
+ "fullName": "Mamorim",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/f82ada829f5ae687a76827cd7b41f4ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 480,
+ "default": 3014,
+ "total": 3494
+ },
+ "targetTranslated": {
+ "tmMatch": 545,
+ "default": 3254,
+ "total": 3799
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2617
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14954429,
+ "username": "Manflack",
+ "fullName": "Manflack",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/48baa6bfae573b123ad7090df79ea114?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 368
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 368
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 345,
+ "total": 368
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 365,
+ "total": 390
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 345,
+ "total": 368
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14621914,
+ "username": "MarcelMauss",
+ "fullName": "MarcelMauss",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/623f65ebfb800b7f7d8345dd384995ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 89
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 89
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 88,
+ "total": 89
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 89,
+ "total": 90
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 88,
+ "total": 89
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14743704,
+ "username": "MarceloPires",
+ "fullName": "MarceloPires",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9cd294b0c554a93f5324d9f09fd9fb59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 29,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 19,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 29,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14942589,
+ "username": "Marcus_Aureliee",
+ "fullName": "Marcus_Aureliee",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942589/medium/b4c7f32eef26b3a02fb112cd161792fd.jpg",
+ "preTranslated": 0,
+ "totalCosts": 13709
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13709
+ },
+ "translated": {
+ "tmMatch": 232,
+ "default": 13477,
+ "total": 13709
+ },
+ "targetTranslated": {
+ "tmMatch": 461,
+ "default": 22556,
+ "total": 23017
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 232,
+ "default": 13477,
+ "total": 13709
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14739754,
+ "username": "Marialba",
+ "fullName": "Marialba",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4204cf102f81ee527db45dfbad016897?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 309
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 309
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 308,
+ "total": 309
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 335,
+ "total": 336
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 251,
+ "total": 251
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 308,
+ "total": 309
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915329,
+ "username": "Mariam163",
+ "fullName": "Mariam163",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14915329/medium/504f7acd4e8cb7ee70fbe35240bed705.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7575
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7575
+ },
+ "translated": {
+ "tmMatch": 321,
+ "default": 7254,
+ "total": 7575
+ },
+ "targetTranslated": {
+ "tmMatch": 340,
+ "default": 8074,
+ "total": 8414
+ },
+ "translatedByMt": {
+ "tmMatch": 65,
+ "default": 3,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 321,
+ "default": 7254,
+ "total": 7575
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815664,
+ "username": "Marigold0106",
+ "fullName": "Marigold0106",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/75b35629161d0cd3e8255e81efacf231?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14619384,
+ "username": "MarinaX",
+ "fullName": "MarinaX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/df9441f73e93cb1009eb61b1d4b8b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 157
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 157
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 147,
+ "total": 157
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 130,
+ "total": 140
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 147,
+ "total": 157
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969655,
+ "username": "Marta.Boianivska",
+ "fullName": "Marta.Boianivska",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/be2c6c760516e858293fc2e9907e924b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1133
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 1105,
+ "total": 1133
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 920,
+ "total": 939
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 1105,
+ "total": 1133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14935087,
+ "username": "Martinpons",
+ "fullName": "Martinpons",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/469c9345494c800a82354e926ab96d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 193
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 193
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 192,
+ "total": 193
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 166,
+ "total": 167
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 192,
+ "total": 193
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14903162,
+ "username": "MatheusItagiba",
+ "fullName": "MatheusItagiba",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/acdce498ab323bc42157ee44c4176a3f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1046
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1046
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 1036,
+ "total": 1046
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 950,
+ "total": 962
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 462,
+ "total": 465
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 1036,
+ "total": 1046
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14693434,
+ "username": "Mauguano",
+ "fullName": "Mauguano",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e67f1e07c7db5ba5bb290e405b7b76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3740
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 324
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 324,
+ "total": 324
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 275,
+ "total": 275
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 324,
+ "total": 324
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932469",
- "username": "LadyLurvecia",
- "fullName": "LadyLurvecia",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932469/medium/15d23e44ef625fd6ceab89b52fdda53b.JPG",
- "joined": "2021-09-21 17:48:57"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3416
+ },
+ "translated": {
+ "tmMatch": 133,
+ "default": 3283,
+ "total": 3416
+ },
+ "targetTranslated": {
+ "tmMatch": 136,
+ "default": 3408,
+ "total": 3544
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 1855,
+ "total": 1861
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 133,
+ "default": 3283,
+ "total": 3416
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14576810,
+ "username": "MaximeBtn",
+ "fullName": "MaximeBtn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/26dd6c4e6b4a9a5ac84abc1689df57ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 520
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 520
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 515,
+ "total": 520
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 576,
+ "total": 581
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 515,
+ "total": 520
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14933273,
+ "username": "MelisaSonmez",
+ "fullName": "MelisaSonmez",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/57753792ad4c1879603e1c48ee889e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 94
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 94
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14899828,
+ "username": "MickeyMelendez7",
+ "fullName": "MickeyMelendez7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ce60ac7fdfb503c810a5ec177105f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996863,
+ "username": "Mighuma",
+ "fullName": "Mighuma",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2ea5f2f5aaf790e05a752c111f1dc306?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 230
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 230
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 226,
+ "total": 230
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 247,
+ "total": 253
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 103,
+ "total": 107
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 226,
+ "total": 230
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958649,
+ "username": "Minnielim",
+ "fullName": "Minnielim",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9c0126dcb0f37fedfb7ca78686802ac4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 137
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 3,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 4,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 3,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846810",
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 112,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 191,
+ "total": 227
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 112,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14411642,
+ "username": "MissNox",
+ "fullName": "MissNox",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/21a0cee81c109157df10761da1b51ae4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725874,
+ "username": "Mizeri",
+ "fullName": "Mizeri",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725874/medium/438f8e88827805ef3cb42b27290f4954.png",
+ "preTranslated": 0,
+ "totalCosts": 156
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 156
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 156,
+ "total": 156
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 220,
+ "total": 220
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 156,
+ "total": 156
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14600888,
+ "username": "Mohammad_Shehadeh",
+ "fullName": "Mohammad_Shehadeh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9c5bd79de2bb2ee244ba62c9faa55c07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 337
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 337
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 337,
+ "total": 337
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 310,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 167,
+ "total": 167
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 337,
+ "total": 337
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846810,
"username": "Mohammedfaq4",
"fullName": "Mohammedfaq4",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/e49b8112e5456a3293dd7f518bab73ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-20 12:01:32"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14165251",
- "username": "paagol",
- "fullName": "dipankar das (paagol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14165251/medium/0a90a90a126a5c80cc162947ef7e2fc8.jpg",
- "joined": "2020-03-20 12:06:44"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 1,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785636",
- "username": "hakasekenken",
- "fullName": "hakasekenken",
- "avatarUrl": "https://www.gravatar.com/avatar/649dd538c5dcd0b067043e01edfffa61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:40:32"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663928",
- "username": "luc4s.eb",
- "fullName": "Lucas Ebana (luc4s.eb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663928/medium/991c5de7330b7ccbd5581f7bab37f347.jpg",
- "joined": "2021-03-11 18:20:07"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14163185",
- "username": "armedis1981",
- "fullName": "ArmKristall (armedis1981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14163185/medium/d8b46146293816408b627ebaf0784171.jpeg",
- "joined": "2020-03-19 01:48:16"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14157025",
- "username": "baro0k",
- "fullName": "baro0k",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14157025/medium/1994360c948b9729c3545a31a0062b44.jpg",
- "joined": "2020-03-25 20:43:54"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919827",
- "username": "nbshaoye123",
- "fullName": "nbshaoye123",
- "avatarUrl": "https://www.gravatar.com/avatar/47364ac3d421a00d86b80f51355e4a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 22:20:23"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621976",
- "username": "luiz.amaral.1704",
- "fullName": "Luiz Henrique Amaral Costa (luiz.amaral.1704)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621976/medium/c9328665b73963f5c7efe57f9872c2ba.jpeg",
- "joined": "2021-02-12 18:08:08"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14146191",
- "username": "elias12",
- "fullName": "Elias Buchwald (elias12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146191/medium/76dbc4894257123acf27ea9ad87b1ed3.jpg",
- "joined": "2020-03-05 20:07:19"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838650",
- "username": "sibannaccian",
- "fullName": "Mauricio Serrano Rodriguez (sibannaccian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838650/medium/656027686a316709b3424730ef35fd49.jpeg",
- "joined": "2021-07-13 22:47:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746906",
- "username": "Mob1le",
- "fullName": "Alexander Bessalov (Mob1le)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746906/medium/23a87f0267d11038db9dabc232660da6.jpeg",
- "joined": "2021-05-09 04:53:55"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14969675",
- "username": "andreyleys",
- "fullName": "Андрей Л (andreyleys)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969675/medium/905c79a1b6d262c4f27fe5dee3745986.png",
- "joined": "2021-10-21 16:34:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615784",
- "username": "semangat88",
- "fullName": "Xi An (semangat88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615784/medium/c1fd77eb4ec45e5482a8883e744ae392.jpg",
- "joined": "2021-02-08 21:18:50"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13869145",
- "username": "cnpltdncsln",
- "fullName": "Canpolat Dinçaslan (cnpltdncsln)",
- "avatarUrl": "https://www.gravatar.com/avatar/5b6f1971e37ccb9eebf449270971ca7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-17 17:53:08"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917615",
- "username": "G3Bp2ONcJAJ03zq",
- "fullName": "G3Bp2ONcJAJ03zq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917615/medium/c2f490d143480e70240b34aa48ec6f76.jpeg",
- "joined": "2021-09-10 22:24:35"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14118485",
- "username": "quan25102001",
- "fullName": "Quân Nguyễn (quan25102001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14118485/medium/4dd3f368dd18eecee5fb92000e8e333e.jpg",
- "joined": "2020-02-14 08:26:14"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 1,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623638",
- "username": "iuraraikov",
- "fullName": "юра райков (iuraraikov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623638/medium/1e5d0c8deee4e28779402ffc1308a55c.jpg",
- "joined": "2021-02-14 03:49:09"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971925",
- "username": "adibputra422",
- "fullName": "Adit Putra (adibputra422)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971925/medium/9da443feaa3291fa3ce0f0ee1180bf54.png",
- "joined": "2021-10-22 00:54:19"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14416498,
+ "username": "MorettiViktoria",
+ "fullName": "MorettiViktoria",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0bfe032234f740134afbf961ff2d6fd7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 82
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 82
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14720182,
+ "username": "Mosaibah",
+ "fullName": "Mosaibah",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720182/medium/abb7b48d789902353a50db327f236806.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14686158,
+ "username": "MrRFN",
+ "fullName": "MrRFN",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/227488675c690f210303a2fd9206a610?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 2,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 4,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 2,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14587250,
+ "username": "MuKaTa-2020",
+ "fullName": "MuKaTa-2020",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1ea29c6192d8149ebb25ab99e73b01ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 94
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ky",
+ "name": "Kyrgyz",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 94
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 92,
+ "total": 94
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 108,
+ "total": 110
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 92,
+ "total": 94
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14916763,
+ "username": "MuhammadharoonShaukat",
+ "fullName": "MuhammadharoonShaukat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4c2d21221e2483bea9d18c71516793e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546828,
+ "username": "Mxitep",
+ "fullName": "Mxitep",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f901b2e87e345e332ff2c116f51fb1ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 21,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14849836,
+ "username": "N0vae",
+ "fullName": "N0vae",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/565e2d9a420fd4da204585b8bc0def3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 230
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 230
+ },
+ "translated": {
+ "tmMatch": 157,
+ "default": 73,
+ "total": 230
+ },
+ "targetTranslated": {
+ "tmMatch": 219,
+ "default": 118,
+ "total": 337
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 157,
+ "default": 73,
+ "total": 230
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14569472,
+ "username": "NH4HCO3",
+ "fullName": "NH4HCO3",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569472/medium/fe8c93ec393c72040d3d294ff046f04d.gif",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 54,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 105,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 54,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14411940,
+ "username": "Nadzir",
+ "fullName": "Nadzir",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0dd0b2398b7e611878a0735e74639aee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 1,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 1,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 1,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873098,
+ "username": "Nahandiee",
+ "fullName": "Nahandiee",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1362220b514ef8bdd60de2e7ea6cb6f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 187
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 187
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 182,
+ "total": 187
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 232,
+ "total": 246
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 182,
+ "total": 187
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966927,
+ "username": "NastyaK",
+ "fullName": "NastyaK",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d4e2090ed3ffc1a373973b07ee18752c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2903
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2903
+ },
+ "translated": {
+ "tmMatch": 620,
+ "default": 2283,
+ "total": 2903
+ },
+ "targetTranslated": {
+ "tmMatch": 507,
+ "default": 1927,
+ "total": 2434
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 620,
+ "default": 2283,
+ "total": 2903
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752336,
+ "username": "Necis",
+ "fullName": "Necis",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1d409bc52730dd8c3aa5fc9312b8e467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 67,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 74,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 67,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14755920,
+ "username": "Neleroth",
+ "fullName": "Neleroth",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/83bc5363a3fc673cafb79b8f3af1f0c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14935073,
+ "username": "NerioDaniel",
+ "fullName": "NerioDaniel",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/10f959538c7cfee538b84efd2406ea9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 249
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 249
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 217,
+ "total": 249
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 262,
+ "total": 299
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 217,
+ "total": 249
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633084,
+ "username": "Neti",
+ "fullName": "Neti",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dcb22645f203ac0030389fe5e1c70d07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 188
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 188,
+ "total": 188
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 188,
+ "total": 188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633512,
+ "username": "Nicler",
+ "fullName": "Nicler",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/70395fb4b1c77e4297ae9d5ff1191fab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14628426,
+ "username": "Nif0",
+ "fullName": "Nif0",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/87947ee2deff057405bb3690b537ba24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1218
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1218
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 1170,
+ "total": 1218
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 839,
+ "total": 888
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 1170,
+ "total": 1218
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905112,
+ "username": "Nightkiller98",
+ "fullName": "Nightkiller98",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c3a4e9b8fa350017f1129547cc95a683?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 291
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 291
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 288,
+ "total": 291
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 340,
+ "total": 344
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 288,
+ "total": 291
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14636794,
+ "username": "Nignas64",
+ "fullName": "Nignas64",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d6cd15396d9abb89a4b493efb56ce160?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14274852,
+ "username": "NikeEend",
+ "fullName": "NikeEend",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4dba24457f3aaeada0ee431b881064cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 16,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 17,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 16,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14781010,
+ "username": "NinaWrong",
+ "fullName": "NinaWrong",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781010/medium/8c3e0660cd91ea8501e6d571d298fc62.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 113,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 145,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 113,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14933019,
+ "username": "Nodral",
+ "fullName": "Nodral",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c49a614198d66adaecf930dea95b8419?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992833,
+ "username": "Nommie",
+ "fullName": "Nommie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6eadf26d494174c45ea18d5af36b6f66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 8,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 7,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 8,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14217580,
+ "username": "Noop1",
+ "fullName": "Noop1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e1015204a425cd73a2c44a4830907414?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 308
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 308
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 305,
+ "total": 308
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 279,
+ "total": 282
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 182,
+ "total": 182
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 305,
+ "total": 308
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959495,
+ "username": "ONeZetty",
+ "fullName": "ONeZetty",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3c9ec2f98f967e8cf1dccfdf30eef6d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 238
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 238
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 229,
+ "total": 238
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 253,
+ "total": 262
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 229,
+ "total": 238
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14040008,
+ "username": "Ochtadin",
+ "fullName": "Ochtadin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/daeb380dcf4c98b583b9eb61a259e58c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999027,
+ "username": "Oetomo",
+ "fullName": "Oetomo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d4f8b6842ce7edb993915c0d6ccf2752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968755,
+ "username": "Oksana_Dunevych",
+ "fullName": "Oksana_Dunevych",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e5a8792ff0e233ead9ba070f5ebe67b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1557
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1557
+ },
+ "translated": {
+ "tmMatch": 159,
+ "default": 1398,
+ "total": 1557
+ },
+ "targetTranslated": {
+ "tmMatch": 136,
+ "default": 1155,
+ "total": 1291
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 159,
+ "default": 1398,
+ "total": 1557
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949595,
+ "username": "Olesya711",
+ "fullName": "Olesya711",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9d1ee480b2b9b88ef95902096e52ab02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5524
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5524
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 5478,
+ "total": 5524
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 4753,
+ "total": 4801
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 38,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 5478,
+ "total": 5524
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14101317,
+ "username": "Omer_Sagar",
+ "fullName": "Omer_Sagar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/481485f26fa364f23abeafbc720528bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14803952,
+ "username": "Oscar_small",
+ "fullName": "Oscar_small",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803952/medium/98aa4e60adbdf6174d78c96da90f0c11.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 166
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 166
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 166,
+ "total": 166
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 198,
+ "total": 198
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 166,
+ "total": 166
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14796460,
+ "username": "PA.SA.",
+ "fullName": "PA.SA.",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/19d3a27d39c9b423f90d07241055ba95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727958,
+ "username": "PBK0227",
+ "fullName": "PBK0227",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd46421af00469930767a0cf35d4a53c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 237
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 237
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 235,
+ "total": 237
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 677,
+ "total": 687
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 235,
+ "total": 237
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002443,
+ "username": "Pamelaocampo444",
+ "fullName": "Pamelaocampo444",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd6cbc98230ea745d12905b0e8048af1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 66,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 66,
+ "total": 71
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 66,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631752,
+ "username": "Paragunde358",
+ "fullName": "Paragunde358",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/378e346fe499554a3b23c724ad757a53?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867836,
+ "username": "Pardesh",
+ "fullName": "Pardesh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ae15bc8e88200e364707879af00f076e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784750,
+ "username": "PaulOurs",
+ "fullName": "PaulOurs",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cd699edb9198b1b5c53f8dec55e5528c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 794
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 794
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 794,
+ "total": 794
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 822,
+ "total": 822
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 794,
+ "total": 794
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844866,
+ "username": "PavelM56",
+ "fullName": "PavelM56",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6398b3e46a3e7054b7ca09c59d1ede2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 580
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 580
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 567,
+ "total": 580
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 481,
+ "total": 493
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 219,
+ "total": 221
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 567,
+ "total": 580
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14661214,
+ "username": "PetraTkalcec",
+ "fullName": "PetraTkalcec",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6c2d298c8225c96c53672f4eeb6988e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2228
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2228
+ },
+ "translated": {
+ "tmMatch": 92,
+ "default": 2136,
+ "total": 2228
+ },
+ "targetTranslated": {
+ "tmMatch": 85,
+ "default": 1787,
+ "total": 1872
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 92,
+ "default": 2136,
+ "total": 2228
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13466755,
+ "username": "PfurtschellerP",
+ "fullName": "PfurtschellerP",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/715821ec3b74a4ac559d57312abf8212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 884
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 884
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 832,
+ "total": 884
+ },
+ "targetTranslated": {
+ "tmMatch": 55,
+ "default": 757,
+ "total": 812
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 134,
+ "total": 142
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 832,
+ "total": 884
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669202,
+ "username": "Phintis",
+ "fullName": "Phintis",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669202/medium/d020b1d7dfdc5782f15cbce0f6c0752b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8262
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8262
+ },
+ "translated": {
+ "tmMatch": 477,
+ "default": 7785,
+ "total": 8262
+ },
+ "targetTranslated": {
+ "tmMatch": 374,
+ "default": 7118,
+ "total": 7492
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 466,
+ "total": 470
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 477,
+ "default": 7785,
+ "total": 8262
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14642544,
+ "username": "Phoenix82",
+ "fullName": "Phoenix82",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642544/medium/326ad622b0e7bf6487db9130898744ad.jpg",
+ "preTranslated": 0,
+ "totalCosts": 993
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 993
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 989,
+ "total": 993
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 1126,
+ "total": 1131
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 989,
+ "total": 993
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14776866,
+ "username": "Piter666",
+ "fullName": "Piter666",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/23e91ffae232d25364aa0dd4c8d8eaff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778974,
+ "username": "Plaotin",
+ "fullName": "Plaotin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/eab03bb8abbb3f1774760eea9ff5be07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 141
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 135,
+ "total": 141
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 95,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 135,
+ "total": 141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14811672,
+ "username": "Pois",
+ "fullName": "Pois",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cb689198fe8c6b621ba3c281df1c8041?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13306330,
+ "username": "Predatorix",
+ "fullName": "Predatorix",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13306330/medium/3f9fa5756d0e506fae6e0c6ada57cfba.png",
+ "preTranslated": 0,
+ "totalCosts": 1250
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1250
+ },
+ "translated": {
+ "tmMatch": 61,
+ "default": 1189,
+ "total": 1250
+ },
+ "targetTranslated": {
+ "tmMatch": 40,
+ "default": 1072,
+ "total": 1112
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 61,
+ "default": 1189,
+ "total": 1250
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14964581,
+ "username": "Pric",
+ "fullName": "Pric",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/232a650d52d05013cc328f79485eddf0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 222
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 222
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 211,
+ "total": 222
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 189,
+ "total": 199
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 211,
+ "total": 222
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14740018,
+ "username": "Punsk",
+ "fullName": "Punsk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/843642a4fa794da2be9a0e93bc6200ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 63,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 73,
+ "total": 79
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 63,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13994593,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/941dd28ef44d36d794a96dfd431881a2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 76
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 76
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14271416,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a3a64c672988a891ab04a0df4d546c51?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 215
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 215
+ },
+ "translated": {
+ "tmMatch": 116,
+ "default": 99,
+ "total": 215
+ },
+ "targetTranslated": {
+ "tmMatch": 121,
+ "default": 112,
+ "total": 233
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 116,
+ "default": 99,
+ "total": 215
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14728440,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9588577b4a09b7b9a4df8000b32b1846?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 18,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 43,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 18,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673820,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd974f1c55229d6e4660150a2c4048dc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974527,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d14a807a4b76542a1fcdbb2e43205be1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14634606,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2a25ef4e6179f642d2ff748a1616cd5f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13992969,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/61a2b29986bf373c1cb326e69d55346f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 297,
+ "total": 309
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 336,
+ "total": 350
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1113
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14849118,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ad4fd22a59d84105c2f97a68d661071?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698688,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b30370be580bd1fabe043525f3b43e28?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 381
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 381
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 376,
+ "total": 381
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 379,
+ "total": 386
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 145,
+ "total": 145
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 376,
+ "total": 381
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14674448,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd974f1c55229d6e4660150a2c4048dc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14726400,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a3c8b6df152674573f363cd65e8acd8d?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1423
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1423
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 1368,
+ "total": 1423
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 1299,
+ "total": 1355
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 135,
+ "total": 136
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 1368,
+ "total": 1423
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14671048,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f7dc2459e1395a67088d04f7c8c4a570?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 113,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759260,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5b96ffce5b4fd476cec3890b501a5e35?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13887845,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5f683c07ef9498a01aa0775006bef84c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 205
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 205
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 201,
+ "total": 205
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 220,
+ "total": 224
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 201,
+ "total": 205
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775416,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6497883f93acdfc4506f4fffe6d43a0a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623014,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/fb9c9edaa86f5408396f7cce028a9c54?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 135
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 135
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 133,
+ "total": 135
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 165,
+ "total": 168
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 133,
+ "total": 135
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14903462,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2452433cbabc01d17f146a15621a0c2d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 825
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 825
+ },
+ "translated": {
+ "tmMatch": 154,
+ "default": 671,
+ "total": 825
+ },
+ "targetTranslated": {
+ "tmMatch": 160,
+ "default": 653,
+ "total": 813
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 154,
+ "default": 671,
+ "total": 825
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759682,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b93e7425aa8f14a9be4e163b0dc1d651?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14147457,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/afc252ac9f8b036a713b3c203e89006a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14180423,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/890cf2f6a665ef5a84f30963fe5f32b0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 122
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 122
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 27,
+ "total": 122
+ },
+ "targetTranslated": {
+ "tmMatch": 197,
+ "default": 69,
+ "total": 266
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 27,
+ "total": 122
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581570,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71c03118449e25c8b1ce50800433d1b5?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14574530,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/12572d2d29eaf4edd7bca9265c7fb7bd?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865144,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f07a1c6153744ecce6fe71e9b206044b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14695278,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7d7eb99d78eddfb00041d1d0433d6e9f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 14,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 14,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13878813,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dbab6b6e01c9a1ec979b27c96ef1c095?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 602
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 602
+ },
+ "translated": {
+ "tmMatch": 572,
+ "default": 30,
+ "total": 602
+ },
+ "targetTranslated": {
+ "tmMatch": 515,
+ "default": 30,
+ "total": 545
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 572,
+ "default": 30,
+ "total": 602
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688768,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/817737bd40989d640a509e628a1d4378?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14565546,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0da032de8df29c4f658c808cf4502c68?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14086827,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c53f0cf95ed195278cfe72a15f88f591?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1646
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1646
+ },
+ "translated": {
+ "tmMatch": 112,
+ "default": 1534,
+ "total": 1646
+ },
+ "targetTranslated": {
+ "tmMatch": 132,
+ "default": 1682,
+ "total": 1814
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 553,
+ "total": 560
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 112,
+ "default": 1534,
+ "total": 1646
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14332116,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c8613501ad108fc813172cd1e428ab3b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 31,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 70,
+ "default": 27,
+ "total": 97
+ },
+ "translatedByMt": {
+ "tmMatch": 44,
+ "default": 0,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 69,
+ "default": 31,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14799822,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/42b84f2eb981d8587680d8ba76208c22?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 205
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 205
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 201,
+ "total": 205
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 254,
+ "total": 262
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 201,
+ "total": 205
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14756100,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3f6a99a487a2c1609b0634f04135bf78?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14543516,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/448e671eb249237954aa7c8245f716a4?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 143,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 94,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 143,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855956,
+ "username": "RRKamil",
+ "fullName": "RRKamil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/787a4f479b22ca62f51ecbe4be547b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992815,
+ "username": "Radiovolna86",
+ "fullName": "Radiovolna86",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d87b568efadaff6a07b43bb2b191bf80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 126,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 108,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 126,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14031780,
+ "username": "Rajeshkushvahav",
+ "fullName": "Rajeshkushvahav",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d9146116712d70e438935a5c630916d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14321408,
+ "username": "Rambhawan",
+ "fullName": "Rambhawan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/694085c9fd3ad62bb5d234e5f2f45765?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845564,
+ "username": "Ramiro_ETH",
+ "fullName": "Ramiro_ETH",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d026f6edc66a9646bb43ce532e5b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 61
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 61
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 58,
+ "total": 61
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 66,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 58,
+ "total": 61
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14375990,
+ "username": "Rathcha",
+ "fullName": "Rathcha",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c55086b349b09615e6fede99d572f19a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 192
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 192
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 184,
+ "total": 192
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 57,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 184,
+ "total": 192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14270554,
+ "username": "Ravidin",
+ "fullName": "Ravidin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5deca8838108d6994c6c1ca3a0f9a1d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 152
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ky",
+ "name": "Kyrgyz",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 152
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 137,
+ "total": 152
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 141,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 137,
+ "total": 152
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14755966,
+ "username": "RealGoye",
+ "fullName": "RealGoye",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9fa4dcc2b7a1d5d2cfa557bab4d94cbf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1028
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1028
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1016,
+ "total": 1028
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 1011,
+ "total": 1024
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 445,
+ "total": 446
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1016,
+ "total": 1028
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14033992,
+ "username": "RedStillPlays",
+ "fullName": "RedStillPlays",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b162408428680fb3d6be1b7382414e47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14746532,
+ "username": "Reirka",
+ "fullName": "Reirka",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/be7196face7c34d17d9d04352b4c554f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14676296,
+ "username": "RenataBrito",
+ "fullName": "RenataBrito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/99f71d4fc12a99295d1c31b1961f998d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 252
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 252
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 230,
+ "total": 252
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 214,
+ "total": 237
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 230,
+ "total": 252
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952091,
+ "username": "Revenant69",
+ "fullName": "Revenant69",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/de707d601950e39bdbb890b93877660d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14848120,
+ "username": "RickardW",
+ "fullName": "RickardW",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9c29e1f13b3ddc4562ed451b24d241e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12816876,
+ "username": "RicochetLT",
+ "fullName": "RicochetLT",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12816876/medium/519ca5836fe261c023e5058f0a68e98d.png",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14975451,
+ "username": "RixCraft",
+ "fullName": "RixCraft",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/89498fb8d22de8867ab4d03eaa07a7ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 51,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 54,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 51,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905094,
+ "username": "Robbie12Lawler",
+ "fullName": "Robbie12Lawler",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9047220ba1bae1ef155706e5c606e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 371
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 371
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 370,
+ "total": 371
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 287,
+ "total": 288
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 370,
+ "total": 371
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558616,
+ "username": "Rodol62",
+ "fullName": "Rodol62",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0bc03697084d2272d769431cca41efec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 337
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 337
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 337,
+ "total": 337
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 396,
+ "total": 396
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 188,
+ "total": 188
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 337,
+ "total": 337
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784198,
+ "username": "Rojojue",
+ "fullName": "Rojojue",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4c2a031d6833806ff9578eacd213b471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1652
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1652
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1640,
+ "total": 1652
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 1447,
+ "total": 1459
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1640,
+ "total": 1652
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987479,
+ "username": "Rosina70",
+ "fullName": "Rosina70",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/03661309d28016f48fde01e40b661d38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 127
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 106,
+ "total": 127
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 109,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 106,
+ "total": 127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14312764,
+ "username": "Rovio",
+ "fullName": "Rovio",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6b4049a6622dc11793f89c419d76dcc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 188
+ },
+ "translated": {
+ "tmMatch": 53,
+ "default": 135,
+ "total": 188
+ },
+ "targetTranslated": {
+ "tmMatch": 61,
+ "default": 159,
+ "total": 220
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 93,
+ "total": 98
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 53,
+ "default": 135,
+ "total": 188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14450042,
+ "username": "Roxana_Calderon",
+ "fullName": "Roxana_Calderon",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14450042/medium/e15c003f09ec85859808ac43512501c6.png",
+ "preTranslated": 0,
+ "totalCosts": 3306
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3306
+ },
+ "translated": {
+ "tmMatch": 598,
+ "default": 2708,
+ "total": 3306
+ },
+ "targetTranslated": {
+ "tmMatch": 659,
+ "default": 3021,
+ "total": 3680
+ },
+ "translatedByMt": {
+ "tmMatch": 36,
+ "default": 627,
+ "total": 663
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 598,
+ "default": 2708,
+ "total": 3306
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14802836,
+ "username": "Ryeore",
+ "fullName": "Ryeore",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/fd23450634472a71b25a23da1ed4b329?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2396
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2396
+ },
+ "translated": {
+ "tmMatch": 287,
+ "default": 2109,
+ "total": 2396
+ },
+ "targetTranslated": {
+ "tmMatch": 253,
+ "default": 1666,
+ "total": 1919
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 307,
+ "total": 318
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 287,
+ "default": 2109,
+ "total": 2396
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14591374,
+ "username": "SGROI",
+ "fullName": "SGROI",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3c10b664c7037867d104a19c1e5c4c07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14551086,
+ "username": "SMreussite",
+ "fullName": "SMreussite",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/04fbb262ac93a36e418011d4894c7990?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750382,
+ "username": "SabuesoDigital",
+ "fullName": "SabuesoDigital",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/465ce7a4b3a7761383bb70cbf5e24382?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689660,
+ "username": "SalvadorC",
+ "fullName": "SalvadorC",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8e96e3eccbbc48619793286ed5f08c2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1440
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1440
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 1419,
+ "total": 1440
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 1537,
+ "total": 1554
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 1419,
+ "total": 1440
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14719400,
+ "username": "SammyJkns",
+ "fullName": "SammyJkns",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0fb696919afd133eb20ef7beffe4c1f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14265548,
+ "username": "Sanilawan46",
+ "fullName": "Sanilawan46",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e5c20b357cf83e0c147a9c574d87b2de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ha",
+ "name": "Hausa",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14638212,
+ "username": "Santi300798",
+ "fullName": "Santi300798",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f0d11e8352b0c12caab9da371447e21d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989943,
+ "username": "Saph",
+ "fullName": "Saph",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85790b7e21d231372b65133fa7124467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 801
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 801
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 787,
+ "total": 801
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 846,
+ "total": 860
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 787,
+ "total": 801
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14930117,
+ "username": "SemioDan",
+ "fullName": "SemioDan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/791fe9d92cc842432eb36e7312ab1245?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 287
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 287
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 287,
+ "total": 287
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 195,
+ "total": 195
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 287,
+ "total": 287
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690126,
+ "username": "ShervinR",
+ "fullName": "ShervinR",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4a923c900d930754d7d0c60893f6e06a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14787090,
+ "username": "Sim0n",
+ "fullName": "Sim0n",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5c818046bf8ff41c9022c66788021066?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14565190,
+ "username": "Sky_NiniKo",
+ "fullName": "Sky_NiniKo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/481074cbd6e69b55df35ad0431c75082?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 7,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 7,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14790916,
+ "username": "Smaily",
+ "fullName": "Smaily",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85245f1a50ea372727e77bfc29d7fa98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949549,
+ "username": "SoniaKobryn_",
+ "fullName": "SoniaKobryn_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d9e7edeec8255fe522c51d7b4778ce47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1984
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1984
+ },
+ "translated": {
+ "tmMatch": 139,
+ "default": 1845,
+ "total": 1984
+ },
+ "targetTranslated": {
+ "tmMatch": 128,
+ "default": 1609,
+ "total": 1737
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 270,
+ "total": 280
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 139,
+ "default": 1845,
+ "total": 1984
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14083105,
+ "username": "SoulFly34",
+ "fullName": "SoulFly34",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/fe80c8ece7b0dc2c4b18e7d86ec7cd5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14773928,
+ "username": "Sozkil",
+ "fullName": "Sozkil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/113f21ec90fe9266365c154fe40c4178?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14680410,
+ "username": "Stanley15",
+ "fullName": "Stanley15",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4c903bece031c7a39fffd7b5b5abbb8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 383
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 383
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 377,
+ "total": 383
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 277,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 377,
+ "total": 383
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999017,
+ "username": "Stasha",
+ "fullName": "Stasha",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999017/medium/6ada1c7859066549d278be64d778b2fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14870048,
+ "username": "Sunnyhk",
+ "fullName": "Sunnyhk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/102f6302741e7b4349b06d0fb1bc33c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 13,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 28,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 13,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14223022,
+ "username": "Svennies",
+ "fullName": "Svennies",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1aecdf188e4bbe1a09337f4dcf4caec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 0,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 0,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14376958,
+ "username": "TPTSeoul",
+ "fullName": "TPTSeoul",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5175bf557469cf5be83bb53f7ad1ae37?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8827
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8827
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 8811,
+ "total": 8827
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 8676,
+ "total": 8687
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 10606
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 8811,
+ "total": 8827
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14637662,
+ "username": "T_Play",
+ "fullName": "T_Play",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f9d44ec38069769e515ad249045fd7a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 135
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 135
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 133,
+ "total": 135
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 133,
+ "total": 135
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14817838,
+ "username": "Tadashi1024",
+ "fullName": "Tadashi1024",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817838/medium/e8bbda9fb55464b5d13482f3f1bef0d4.jpg",
+ "preTranslated": 0,
+ "totalCosts": 743
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 743
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 739,
+ "total": 743
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 1242,
+ "total": 1251
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 739,
+ "total": 743
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025455,
+ "username": "Taha_Yasu",
+ "fullName": "Taha_Yasu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7703f7a0f8868bfd33e1666be3f6f50f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 67,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 55,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 67,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14053145,
+ "username": "Taio",
+ "fullName": "Taio",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/467486cfe33b78b748f82b45012e9b00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 244
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 244
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 244,
+ "total": 244
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 282,
+ "total": 282
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 244,
+ "total": 244
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14692200,
+ "username": "TakashiOka",
+ "fullName": "TakashiOka",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b9860c3cc5cb27dcf18d9a6489e197c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13961973,
+ "username": "TakeshiNagahisa",
+ "fullName": "TakeshiNagahisa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a3b5fae50c3818fe96d8442fe07cfc14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 48,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667740,
+ "username": "Tanuxen",
+ "fullName": "Tanuxen",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d5aa9a3b85f1bf490626bf8b43db6583?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 117
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 117
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 105,
+ "total": 105
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14450262,
+ "username": "Tatianne2000",
+ "fullName": "Tatianne2000",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8b6a35fac29cf1de99ebf651649ee149?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 209
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 209
+ },
+ "translated": {
+ "tmMatch": 189,
+ "default": 20,
+ "total": 209
+ },
+ "targetTranslated": {
+ "tmMatch": 208,
+ "default": 24,
+ "total": 232
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 189,
+ "default": 20,
+ "total": 209
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733510,
+ "username": "Tessoroma",
+ "fullName": "Tessoroma",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3bb8ef05e13c17a8318ef6ab154fa1b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 41,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 38,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 41,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14183877,
+ "username": "ThanosJi",
+ "fullName": "ThanosJi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a39c1050df0d567090a82fe41674a1cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 82,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 128,
+ "total": 144
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 82,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778302,
+ "username": "TheBrazilianDude",
+ "fullName": "TheBrazilianDude",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85fb868fc9ac7e59a500436000261b19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 109
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 109
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 91,
+ "total": 109
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 76,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 91,
+ "total": 91
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 91,
+ "total": 109
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14695768,
+ "username": "Thebetterbutter",
+ "fullName": "Thebetterbutter",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/196cf03d279a94aca450b76e908657d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 16,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 21,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 16,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14567754,
+ "username": "TiXO",
+ "fullName": "TiXO",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/72a88e60f64a918f25afd886483584f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14781034,
+ "username": "Tomfoxy0852",
+ "fullName": "Tomfoxy0852",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/51f8a651a0b3b57c601d5cf147e3ae29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953547,
+ "username": "Tostaito",
+ "fullName": "Tostaito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dfc450105a871dc30b6dd17a3ec27848?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 919
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 919
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 908,
+ "total": 919
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 1008,
+ "total": 1025
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 908,
+ "total": 919
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14807818,
+ "username": "Trettionde",
+ "fullName": "Trettionde",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85bd16a83cde2748b53ccf3036c6a81e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956243,
+ "username": "Troyracer",
+ "fullName": "Troyracer",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f4543ec9465b3f1d1077e8cceb65a933?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1478
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1478
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 1430,
+ "total": 1478
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 1615,
+ "total": 1671
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 599,
+ "total": 599
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 1430,
+ "total": 1478
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025653,
+ "username": "TsubTsub",
+ "fullName": "TsubTsub",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e4ae10f8e06992d98372770f0b7bf81c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 373
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 373
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 368,
+ "total": 373
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 914,
+ "total": 933
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 174,
+ "total": 176
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 368,
+ "total": 373
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036511,
+ "username": "Turf_MAsk",
+ "fullName": "Turf_MAsk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b7555023debdbe0034f29cb45eb7ab9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14810374,
+ "username": "Typinrov",
+ "fullName": "Typinrov",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a6abee81a045c3b64a550f0ca4b3f344?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 93
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 93
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 88,
+ "total": 93
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 309,
+ "total": 314
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 88,
+ "total": 93
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950903,
+ "username": "Udete",
+ "fullName": "Udete",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a435f03885ccd6070df11ae043c3e6c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 780
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 780
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 772,
+ "total": 780
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 818,
+ "total": 826
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 772,
+ "total": 780
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958823,
+ "username": "Ugneo",
+ "fullName": "Ugneo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9c2073afe05dfa6e50845302373be26b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2764
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2764
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 2718,
+ "total": 2764
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 2669,
+ "total": 2720
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 2718,
+ "total": 2764
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14746172,
+ "username": "VAHL1108",
+ "fullName": "VAHL1108",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c1c12827706c6a3d4837731c507fed43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 14,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 14,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14519338,
+ "username": "VKogakis",
+ "fullName": "VKogakis",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/ed231874be0072432e1d398c0f96267f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 215,
+ "default": 4653,
+ "total": 4868
+ },
+ "targetTranslated": {
+ "tmMatch": 240,
+ "default": 5134,
+ "total": 5374
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 350,
+ "total": 353
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 17066
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681570,
+ "username": "Val21",
+ "fullName": "Val21",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a751b71711e0d1fb7c0ff58e27f21750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38899
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38899
+ },
+ "translated": {
+ "tmMatch": 1903,
+ "default": 36996,
+ "total": 38899
+ },
+ "targetTranslated": {
+ "tmMatch": 2034,
+ "default": 36219,
+ "total": 38253
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1903,
+ "default": 36996,
+ "total": 38899
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14965517,
+ "username": "Valentyna_Boberska",
+ "fullName": "Valentyna_Boberska",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd60ddbd850a18319b1f729948633370?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3285
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3285
+ },
+ "translated": {
+ "tmMatch": 153,
+ "default": 3132,
+ "total": 3285
+ },
+ "targetTranslated": {
+ "tmMatch": 129,
+ "default": 2661,
+ "total": 2790
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 24,
+ "total": 32
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 153,
+ "default": 3132,
+ "total": 3285
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14971357,
+ "username": "Vasyl_Yurkuts",
+ "fullName": "Vasyl_Yurkuts",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ae21ee99a161c56ff86e449cd0931e7e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2610
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2610
+ },
+ "translated": {
+ "tmMatch": 99,
+ "default": 2511,
+ "total": 2610
+ },
+ "targetTranslated": {
+ "tmMatch": 91,
+ "default": 2163,
+ "total": 2254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 99,
+ "default": 2511,
+ "total": 2610
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968207,
+ "username": "Vdovychyn_Oksana",
+ "fullName": "Vdovychyn_Oksana",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f751daa8f9217192b5333e29064e43f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 656
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 656
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 646,
+ "total": 656
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 549,
+ "total": 559
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 53,
+ "total": 61
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 646,
+ "total": 656
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13388045,
+ "username": "VengaReview_ES",
+ "fullName": "VengaReview_ES",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f7187abb7b5476b5fbbd85723ebd53a9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897648,
+ "username": "Verar093",
+ "fullName": "Verar093",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c2ad271993412f703c043a0ef663e67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949283,
+ "username": "Vikaa.kr",
+ "fullName": "Vikaa.kr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/743211e5328e2ba4d5c9fa7b7a2361eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 973
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 973
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 962,
+ "total": 973
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 827,
+ "total": 839
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 962,
+ "total": 973
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14228166,
+ "username": "Viktoriia_Zelinska",
+ "fullName": "Viktoriia_Zelinska",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/662756ae14fd7fd08f0c97de30ba64b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9194
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748044",
- "username": "toa_",
- "fullName": "Mattia Rigo (toa_)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748044/medium/81571a43e54195bf3dc482cc4d83f9fd.jpeg",
- "joined": "2021-05-09 17:04:48"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9192
+ },
+ "translated": {
+ "tmMatch": 2334,
+ "default": 6858,
+ "total": 9192
+ },
+ "targetTranslated": {
+ "tmMatch": 2284,
+ "default": 6584,
+ "total": 8868
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2334,
+ "default": 6858,
+ "total": 9192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14428258,
+ "username": "Vilberg",
+ "fullName": "Vilberg",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d9f7001df65571d9688e1eeeebde7dd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 2,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 2,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 1,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 2,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623758,
+ "username": "Vinaxe",
+ "fullName": "Vinaxe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b499429ae0ffe9d4932ffb2ab0945bf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2030
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2030
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 1996,
+ "total": 2030
+ },
+ "targetTranslated": {
+ "tmMatch": 31,
+ "default": 2113,
+ "total": 2144
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 260,
+ "total": 265
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 1996,
+ "total": 2030
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14642366,
+ "username": "Vladimir_Kharlamenko",
+ "fullName": "Vladimir_Kharlamenko",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9792ee2aebc9e5722d6597b24e6a02d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 144
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 144
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 142,
+ "total": 144
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 121,
+ "total": 123
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 142,
+ "total": 144
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665326,
+ "username": "Voidentente",
+ "fullName": "Voidentente",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/33a14fe0fd1b2d7f1da11e533db88d0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 107,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 99,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 107,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14693154,
+ "username": "Vojtakrecek5",
+ "fullName": "Vojtakrecek5",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2b47e8e37efc146a24b4a904182199dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 634,
+ "total": 634
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732424,
+ "username": "WUBAOYU",
+ "fullName": "WUBAOYU",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/46770842d09b2550627b9248c530fdf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 829
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 829
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 803,
+ "total": 829
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 1222,
+ "total": 1266
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 426,
+ "total": 427
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 803,
+ "total": 829
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14714186,
+ "username": "WizerPlay",
+ "fullName": "WizerPlay",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7aec6156a0a5905d2d262a5338eb49ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779686,
+ "username": "WorsT21",
+ "fullName": "WorsT21",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d4d30285fbef0996a2f6e878115f6a44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14792522,
+ "username": "WotCa",
+ "fullName": "WotCa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2805d3c0760cee8d6560761e9d71671d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 165
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 165
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 158,
+ "total": 165
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 448,
+ "total": 484
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 158,
+ "total": 165
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13817659,
+ "username": "Xam089951",
+ "fullName": "Xam089951",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/51a567d03e673417de7b5d347bf65156?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 122,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 122,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968325,
+ "username": "Yana07Koval",
+ "fullName": "Yana07Koval",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968325/medium/8c553a29e24897c09104eb989c3932da.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2457
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2457
+ },
+ "translated": {
+ "tmMatch": 198,
+ "default": 2259,
+ "total": 2457
+ },
+ "targetTranslated": {
+ "tmMatch": 177,
+ "default": 1705,
+ "total": 1882
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 198,
+ "default": 2259,
+ "total": 2457
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14655082,
+ "username": "Yazan110adas",
+ "fullName": "Yazan110adas",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/181369d841c43c188072085712d5bcf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14551612,
+ "username": "Yehei",
+ "fullName": "Yehei",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6967f7ca67e84ada88819b839dd3f416?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 70
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 70
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 68,
+ "total": 70
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 72,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 68,
+ "total": 70
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14707492,
+ "username": "Yousuf_104",
+ "fullName": "Yousuf_104",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/52d618e862dd6e76c70ef87fe4cc3628?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 127
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968423,
+ "username": "YuliiaBufan",
+ "fullName": "YuliiaBufan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2764d7cdb4d94d3facb628364d1c2be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2286
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2286
+ },
+ "translated": {
+ "tmMatch": 130,
+ "default": 2156,
+ "total": 2286
+ },
+ "targetTranslated": {
+ "tmMatch": 121,
+ "default": 1880,
+ "total": 2001
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 130,
+ "default": 2156,
+ "total": 2286
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949753,
+ "username": "YuliiaPletenetska",
+ "fullName": "YuliiaPletenetska",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949753/medium/8d95e7ca632d0227eefa906308e8b734.jpg",
+ "preTranslated": 0,
+ "totalCosts": 525
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 525
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 525,
+ "total": 525
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 430,
+ "total": 430
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 525,
+ "total": 525
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14039900,
+ "username": "YuriiKillerBee",
+ "fullName": "YuriiKillerBee",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3690e6911d55e40540040baf2632926e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974319,
+ "username": "Yuriimalaniuk",
+ "fullName": "Yuriimalaniuk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c19120a9901223403e524abdbe836db1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1104
+ },
+ "translated": {
+ "tmMatch": 83,
+ "default": 1021,
+ "total": 1104
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 857,
+ "total": 923
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 13,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 83,
+ "default": 1021,
+ "total": 1104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14692718,
+ "username": "Z3rtr0x",
+ "fullName": "Z3rtr0x",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/655a8dcb3bc251405bad4c8b8a5b299c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 20,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 19,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 20,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14983237,
+ "username": "Zaqms",
+ "fullName": "Zaqms",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7948ededf44b206485cb4e1337f3036e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737978,
+ "username": "ZeroSlayer",
+ "fullName": "ZeroSlayer",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/380c49ddbb967b5cc345f3f544059f5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 459
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 459
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 454,
+ "total": 459
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 431,
+ "total": 438
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 454,
+ "total": 459
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14686748,
+ "username": "Zerr0z",
+ "fullName": "Zerr0z",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/29d7001f6ce7c3f647f7f5e552b5a435?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14610346,
+ "username": "Ziomal",
+ "fullName": "Ziomal",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9ca5941ecdd04cc72dfc2cb4040b0866?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1118
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1118
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 1101,
+ "total": 1118
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 1004,
+ "total": 1020
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 1101,
+ "total": 1118
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14773262,
+ "username": "Zoey-jack",
+ "fullName": "Zoey-jack",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d1e2f881012de8ce272fd7e3ef7879f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 123,
+ "total": 123
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996737,
+ "username": "_FROGGIE__",
+ "fullName": "_FROGGIE__",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c57a9394def752f461ff5f3b9d8dfad4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665362,
+ "username": "_mohamad5_",
+ "fullName": "_mohamad5_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/16114efa57fc6796274c1e6f45bdd74c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14746808,
+ "username": "a.kaya001",
+ "fullName": "a.kaya001",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746808/medium/911f7b2c423006d154e3e739638c62b2.JPG",
+ "preTranslated": 0,
+ "totalCosts": 164
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 164
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 163,
+ "total": 164
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 110,
+ "total": 112
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 163,
+ "total": 164
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14596176,
+ "username": "a22864",
+ "fullName": "a22864",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/81f6a5db40cd8a13e64f05be2c9ac701?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14663084,
+ "username": "aakashag",
+ "fullName": "aakashag",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1918cee3fb5ee945da642b1413893976?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957855,
+ "username": "abdurrehmanrehan",
+ "fullName": "abdurrehmanrehan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bbd9322d78e5bda40b122e5c75bcfba9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 338
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 338
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 335,
+ "total": 338
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 415,
+ "total": 418
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 335,
+ "total": 338
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14290942,
+ "username": "abhinavmir",
+ "fullName": "abhinavmir",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/064ce2e5276115a7f4435299d5367801?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844128,
+ "username": "abumalikamr",
+ "fullName": "abumalikamr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/341ead55964ea4cd1cd75ebfd3c3f4f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14088799,
+ "username": "adgasdghdh",
+ "fullName": "adgasdghdh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c89739739291baeb4d8c08b016a70196?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814106,
+ "username": "agatavital13",
+ "fullName": "agatavital13",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aa2bcddbcf212717c3391de55a6ac4e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 543
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 543
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 508,
+ "total": 543
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 491,
+ "total": 528
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 508,
+ "total": 543
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035241,
+ "username": "agtzc10",
+ "fullName": "agtzc10",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8bd75e95370c77aa422083670992d2dd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 187
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 187
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 213,
+ "total": 213
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14211504,
+ "username": "ainura",
+ "fullName": "ainura",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/84cd7cd7740fa60255d7848426e59860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 124,
+ "default": 0,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 107,
+ "default": 0,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 46,
+ "default": 0,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 124,
+ "default": 0,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13426340,
+ "username": "aitorla",
+ "fullName": "aitorla",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/92407cd6fab51fd7b6d083d9f853515c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 579
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eu",
+ "name": "Basque",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 579
+ },
+ "translated": {
+ "tmMatch": 143,
+ "default": 436,
+ "total": 579
+ },
+ "targetTranslated": {
+ "tmMatch": 130,
+ "default": 315,
+ "total": 445
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 143,
+ "default": 436,
+ "total": 579
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673942,
+ "username": "ajacobsen",
+ "fullName": "ajacobsen",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673942/medium/636c094dfc0580dd8d09d0f30cca33c8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1935
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1935
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 1910,
+ "total": 1935
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 1791,
+ "total": 1819
+ },
+ "translatedByMt": {
+ "tmMatch": 22,
+ "default": 113,
+ "total": 135
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 1910,
+ "total": 1935
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775092,
+ "username": "alexsenchin",
+ "fullName": "alexsenchin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9aab7074203a4c051ab2a23acf134c6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 153
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 153
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 142,
+ "total": 153
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 140,
+ "total": 152
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 142,
+ "total": 153
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643276,
+ "username": "ali52da",
+ "fullName": "ali52da",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cb0f92e6b9accb79407c58b320cad6fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 102
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 102
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 95,
+ "total": 102
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 170,
+ "total": 186
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 95,
+ "total": 95
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 95,
+ "total": 102
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14527438,
+ "username": "alina.savchak",
+ "fullName": "alina.savchak",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/8858b017ffe17838ee9e03150f7e8d2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 76,
+ "default": 822,
+ "total": 898
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 751,
+ "total": 829
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 984
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14801934,
+ "username": "allanalves",
+ "fullName": "allanalves",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/99bd2d54249b669e37a6b09a740b8d65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 363
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 363
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 342,
+ "total": 363
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 325,
+ "total": 348
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 342,
+ "total": 363
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14816088,
+ "username": "allbuy",
+ "fullName": "allbuy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2f66e10eb6ac8e4b6b83ccbf1864a9a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 147,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820318,
+ "username": "alongdlut",
+ "fullName": "alongdlut",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f42274c44090929249197ed6f3d8a999?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 661
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 661
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 641,
+ "total": 661
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 902,
+ "total": 924
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 641,
+ "total": 661
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959951,
+ "username": "amchercashin",
+ "fullName": "amchercashin",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959951/medium/c19cf61cdac1006def518f01829a8980.png",
+ "preTranslated": 0,
+ "totalCosts": 2562
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2562
+ },
+ "translated": {
+ "tmMatch": 112,
+ "default": 2450,
+ "total": 2562
+ },
+ "targetTranslated": {
+ "tmMatch": 113,
+ "default": 2329,
+ "total": 2442
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 112,
+ "default": 2450,
+ "total": 2562
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14173635,
+ "username": "amin57000",
+ "fullName": "amin57000",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/397e845df1a52ce8b6305b1a7d40dd02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786888,
+ "username": "amiramin695",
+ "fullName": "amiramin695",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9be9b78cf2a8e9a83567fbb6ba5b1526?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 173
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 173
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 168,
+ "total": 173
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 212,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 168,
+ "total": 173
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14051411,
+ "username": "amitkumar991",
+ "fullName": "amitkumar991",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7b8b83234a33cc99121c31623479c38e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 38,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 64,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 38,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14008739,
+ "username": "amusfq",
+ "fullName": "amusfq",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/43507a8d5cd23a2ed4a21a44b4416a1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14776668,
+ "username": "ana.rodrigues",
+ "fullName": "ana.rodrigues",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67de41c05bb9a3bbf6ac836098557d26?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 415
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 415
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 414,
+ "total": 415
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 386,
+ "total": 387
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 414,
+ "total": 415
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884570,
+ "username": "anastasias",
+ "fullName": "anastasias",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1a4b46d27be66e4c6b4db4b4bbedbd59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14607372,
+ "username": "anastazja.k1",
+ "fullName": "anastazja.k1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a4a5576a5058fe4eac1a0807d3306072?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 167
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 167
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 161,
+ "total": 167
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 159,
+ "total": 165
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 161,
+ "total": 167
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779562,
+ "username": "andrejmirovic",
+ "fullName": "andrejmirovic",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/43a8f2a3cb58903a933b335fe6a98e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845634,
+ "username": "andrejmnunes",
+ "fullName": "andrejmnunes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/81251e5f80461de5f05f16e9651c2212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13988731,
+ "username": "andresbonilla",
+ "fullName": "andresbonilla",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f462cd104ed966dbc4cd324b9f00e002?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 428
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 428
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 413,
+ "total": 428
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 513,
+ "total": 528
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 106,
+ "total": 108
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 413,
+ "total": 428
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14757940,
+ "username": "androx",
+ "fullName": "androx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ec1937d5a33dc737e4500e7735ce74f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 38,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 41,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 38,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687522,
+ "username": "anhelinamykytiuk",
+ "fullName": "anhelinamykytiuk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/33fa33b317efb0122aef411711c5c0d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 682
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 682
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 675,
+ "total": 682
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 513,
+ "total": 520
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 675,
+ "total": 682
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14745094,
+ "username": "anhskrttt",
+ "fullName": "anhskrttt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6f614a04fb7e73fc98ceca6e3bb97f72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 65
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14347080,
+ "username": "anis7365",
+ "fullName": "anis7365",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b7cbad0b5cbea96bdc97c42edcdc00db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14051596,
+ "username": "anise_W",
+ "fullName": "anise_W",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/52d7136b87106a558c2bff9acdadcd95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759692,
+ "username": "ank23",
+ "fullName": "ank23",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bc8ae154070703d7052271a75af85090?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14044196,
+ "username": "ankushpartapsingh",
+ "fullName": "ankushpartapsingh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5035829814ea0fa92b8b8e237b2e0d86?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 13,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 14,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 13,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14367748,
+ "username": "annekhate23",
+ "fullName": "annekhate23",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/117ccadad9d81b86083707da49b60964?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12350818,
+ "username": "anod1",
+ "fullName": "anod1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/736fb92e34dd85675a9e1b3c35369197?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 375
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 375
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 373,
+ "total": 375
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 366,
+ "total": 368
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 373,
+ "total": 375
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12857382,
+ "username": "antimonus",
+ "fullName": "antimonus",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0190b7865417356ee99a32f278bd94be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 25,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 17,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 25,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14559546,
+ "username": "antoine84",
+ "fullName": "antoine84",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3ae639e6b3883afd1bc1f158478a0cdd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 154
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 154
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 136,
+ "total": 154
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 138,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 136,
+ "total": 154
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681790,
+ "username": "aprisnando",
+ "fullName": "aprisnando",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/472239fe8b1ad8b709704a9ecc1e3e90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14618122,
+ "username": "araripi",
+ "fullName": "araripi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aa97df0f1bc994240b5faeb555d4203e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14713310,
+ "username": "aravion",
+ "fullName": "aravion",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/34c265ee06f81b5c7b922dfc9c0e3280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 19,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 75,
+ "total": 81
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 19,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14825340,
+ "username": "arctic51",
+ "fullName": "arctic51",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/097b4b755c59dbbf55017ad0647c05f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14101339,
+ "username": "arketipicos",
+ "fullName": "arketipicos",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/740598426e9e0ee16881d2eb0fc7f569?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14829686,
+ "username": "arnchpt",
+ "fullName": "arnchpt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c2c6b4ff07878ac50e02fc7ca2019c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 173
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 173
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 177,
+ "total": 177
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690762,
+ "username": "arscrypto",
+ "fullName": "arscrypto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e90b9176543cb7c35510b9acdab6747d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 60,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 66,
+ "total": 81
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 7,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 60,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995227,
+ "username": "asche",
+ "fullName": "asche",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aecd054f094f92603e24b6bffbf7e0c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 261
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 261
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 233,
+ "total": 261
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 210,
+ "total": 239
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 233,
+ "total": 261
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14181387,
+ "username": "ashleyjr6",
+ "fullName": "ashleyjr6",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3027b9efb9b598a48bfff530313a1c5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14624814,
+ "username": "awongvasu",
+ "fullName": "awongvasu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5b84e8459184e64e8501f11e370a6b52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 170
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 170
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 170,
+ "total": 170
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 170,
+ "total": 170
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632296,
+ "username": "ayoubbensouna",
+ "fullName": "ayoubbensouna",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/535e22141a546bc3171ddf54f8e92b95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14017357,
+ "username": "baidarus_pnl",
+ "fullName": "baidarus_pnl",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14017357/medium/c679af4cb0b848838a61db70278c4275.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 137
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 137
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 133,
+ "total": 137
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 68,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 133,
+ "total": 137
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855548,
+ "username": "bayt",
+ "fullName": "bayt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3053a78ca2d0c5091d982c9806e9e2a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 38,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 38,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14849436,
+ "username": "bbc_h",
+ "fullName": "bbc_h",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/954adf8285d5a96d7e58518290e89f8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 195
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 195
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 192,
+ "total": 195
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 160,
+ "total": 163
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 192,
+ "total": 195
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14634704,
+ "username": "bespredel00",
+ "fullName": "bespredel00",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/392560dd397a7b1b81c9cd50ab32736d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 105,
+ "default": 0,
+ "total": 105
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959651,
+ "username": "bettinabf",
+ "fullName": "bettinabf",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bdb17aa599969672335422360cbeb86b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1235
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1235
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1223,
+ "total": 1235
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 1389,
+ "total": 1401
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1223,
+ "total": 1235
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14342808,
+ "username": "bharathpgp",
+ "fullName": "bharathpgp",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/30226809aab99cbe344ae1c0e460eb0d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 4,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 6,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 4,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14221550,
+ "username": "bhramars",
+ "fullName": "bhramars",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4019a0e30ec069a1aedd818c665c0b84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 90,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 131,
+ "total": 146
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 90,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14062736,
+ "username": "bichvan2408",
+ "fullName": "bichvan2408",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/187c06e896a88f5c2f4873d472b79cd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 153
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780488",
- "username": "daniil.khyzhniak",
- "fullName": "Daniil Khyzhniak (daniil.khyzhniak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780488/medium/3cfbd9dab620e021904c163e614199e3.png",
- "joined": "2021-05-31 15:43:46"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 131
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 120,
+ "total": 131
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 124,
+ "total": 143
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 120,
+ "total": 131
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14823390,
+ "username": "bitgalea",
+ "fullName": "bitgalea",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1125e27372dbf2c2f39bd22d7bff7752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 19,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14774614,
+ "username": "biwenming",
+ "fullName": "biwenming",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ec1c9952af60a46c178ab66ac0873d50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7378
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7378
+ },
+ "translated": {
+ "tmMatch": 278,
+ "default": 7100,
+ "total": 7378
+ },
+ "targetTranslated": {
+ "tmMatch": 407,
+ "default": 9923,
+ "total": 10330
+ },
+ "translatedByMt": {
+ "tmMatch": 34,
+ "default": 819,
+ "total": 853
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 278,
+ "default": 7100,
+ "total": 7378
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14903096,
+ "username": "blue_mrvn",
+ "fullName": "blue_mrvn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/690f1eaca7256dfdc02abdd51ec4f4b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712994,
+ "username": "bordakito",
+ "fullName": "bordakito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d45cd8bd66936fba5670921c72bc970c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13987909,
+ "username": "bro_afif",
+ "fullName": "bro_afif",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d407cd2bb8be375c17060905b501d279?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 66,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 70,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 66,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14887772,
+ "username": "bruderbuck.eth",
+ "fullName": "bruderbuck.eth",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887772/medium/38c9634b12b554feef20f4e9f88bf8c1.png",
+ "preTranslated": 0,
+ "totalCosts": 2362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2362
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 2356,
+ "total": 2362
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 2336,
+ "total": 2342
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 2356,
+ "total": 2362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820852,
+ "username": "btclient",
+ "fullName": "btclient",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820852/medium/6d3e4e81b1dd0aa840959da8c8bcf63f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14607686,
+ "username": "bubabu123",
+ "fullName": "bubabu123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1a22f730de18156a3b5f7e70312062a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14151675,
+ "username": "buithang3058",
+ "fullName": "buithang3058",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14151675/medium/ef9461c409a9d978f890cc99916c39b9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 19,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 24,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 19,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958547,
+ "username": "busnaida",
+ "fullName": "busnaida",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958547/medium/7dcf670595d97f856502789faf5cf351.jpg",
+ "preTranslated": 0,
+ "totalCosts": 339
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 339
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 321,
+ "total": 339
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 281,
+ "total": 298
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 321,
+ "total": 339
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14707448,
+ "username": "byoriolserra",
+ "fullName": "byoriolserra",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b69cf204eb793bc36d6755f9ee7938b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 212
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 212
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 212,
+ "total": 212
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 229,
+ "total": 229
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 212,
+ "total": 212
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14707288,
+ "username": "canerdundar",
+ "fullName": "canerdundar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0a322693a378cac44da61d515f4e001d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709304,
+ "username": "car63",
+ "fullName": "car63",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/55f3c079c98cd77a06d13de9dcec8167?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 89
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 89
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 89,
+ "total": 89
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 89,
+ "total": 89
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914189,
+ "username": "carloscuadro",
+ "fullName": "carloscuadro",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/575a0c9511af3edbc30e63e27eb4c9e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 227
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 227
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 227,
+ "total": 227
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 224,
+ "total": 224
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 227,
+ "total": 227
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14788998,
+ "username": "ccosds",
+ "fullName": "ccosds",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/06ab597f272f96e88582faca01cb1cb5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 43
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 31,
+ "total": 43
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 36,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 31,
+ "total": 43
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14760746,
+ "username": "centaurian",
+ "fullName": "centaurian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1f48400ab68be9e2848fb312c9dc6230?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 113,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 146,
+ "total": 152
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 113,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14874804,
+ "username": "cg123",
+ "fullName": "cg123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ac933b9d10dd7f9559fdc39e35603357?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 6,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 174,
+ "total": 204
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 6,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14610312,
+ "username": "chala11",
+ "fullName": "chala11",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/56f316068e07fac52a7c9af021aae1e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730220,
+ "username": "chanmix51",
+ "fullName": "chanmix51",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b80a4b5f0be0575599f7b18b80ced91c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 158
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 158
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 158,
+ "total": 158
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 165,
+ "total": 165
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 158,
+ "total": 158
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14193244,
+ "username": "chapuisatstephane",
+ "fullName": "chapuisatstephane",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/81a9079e8bffed8894415f18df1a7eb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14692360,
+ "username": "chenzhenhua",
+ "fullName": "chenzhenhua",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1fba50ac7ab9e24ee7ed954a2f895277?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030921,
+ "username": "chiachio",
+ "fullName": "chiachio",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8907dd6dc7d7119d6e8a7cab53ead3ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14602456,
+ "username": "christian205198",
+ "fullName": "christian205198",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f814730bf6337483fdafed6fdbe2ab95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881144,
+ "username": "clarinEX",
+ "fullName": "clarinEX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e65239ac0398cfd2f9b202e6901b37b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 133
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 126,
+ "total": 126
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14909801,
+ "username": "client2019",
+ "fullName": "client2019",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/048b048fbf8560ca3d71782944d0ce9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 15,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 15,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958563,
+ "username": "climu",
+ "fullName": "climu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ffde06457147f043f212b5575759ad5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 113
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 113
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 103,
+ "total": 113
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 117,
+ "total": 128
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 72,
+ "total": 76
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 103,
+ "total": 113
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13605239,
+ "username": "cobject",
+ "fullName": "cobject",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13605239/medium/625d6683b8f2d702392d3ac8b15c5494.png",
+ "preTranslated": 0,
+ "totalCosts": 810
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 810
+ },
+ "translated": {
+ "tmMatch": 61,
+ "default": 749,
+ "total": 810
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 591,
+ "total": 638
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 61,
+ "default": 749,
+ "total": 810
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14617430,
+ "username": "codeater",
+ "fullName": "codeater",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/034c6d5904c46d12abb3c8608db485ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14975403,
+ "username": "codeboi",
+ "fullName": "codeboi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2f928ec5e099bab263d701846a8927d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 99,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 165,
+ "total": 169
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 99,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881646,
+ "username": "constan2305",
+ "fullName": "constan2305",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cf566e9043b091f6632d9260c70fb352?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14555382,
+ "username": "crackadoo",
+ "fullName": "crackadoo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/37faa0b78123599315b9edfe59ac4a50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 176
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 176
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 171,
+ "total": 176
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 170,
+ "total": 175
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 86,
+ "total": 87
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 171,
+ "total": 176
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14606704,
+ "username": "crisfresho",
+ "fullName": "crisfresho",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5b16948c1779239c85367de2c08c803c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13805545,
+ "username": "crowbit",
+ "fullName": "crowbit",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13805545/medium/8b944306602f95c5d9adce2ef8bb68e7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905078,
+ "username": "cryptoboi21",
+ "fullName": "cryptoboi21",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9f0cbdf8fc9e85ca33cb1952af123cfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 449
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 449
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 447,
+ "total": 449
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 363,
+ "total": 364
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 447,
+ "total": 449
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14356104,
+ "username": "cryptoseeker",
+ "fullName": "cryptoseeker",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6b6158035dae7efa632101945b8c3eb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10987
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14667482",
- "username": "vimarket.it",
- "fullName": "Jovan Stankovic (vimarket.it)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667482/medium/b380badf662165920a1873b5f0dfd913.jpg",
- "joined": "2021-03-14 11:28:27"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14089373",
- "username": "ap27061989",
- "fullName": "Amitai Perso (ap27061989)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14089373/medium/4efab9509732be6e5e3ffd709025f6de.jpeg",
- "joined": "2020-01-25 16:49:23"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10985
+ },
+ "translated": {
+ "tmMatch": 3262,
+ "default": 7723,
+ "total": 10985
+ },
+ "targetTranslated": {
+ "tmMatch": 4587,
+ "default": 10406,
+ "total": 14993
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3262,
+ "default": 7723,
+ "total": 10985
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13965577,
+ "username": "crystalwu",
+ "fullName": "crystalwu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/619b03efcd670823daed12ec87a7cef7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 598
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 598
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 597,
+ "total": 598
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 931,
+ "total": 941
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 597,
+ "total": 598
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13923113,
+ "username": "css",
+ "fullName": "css",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13923113/medium/78cc90f7fd2e2aa6ee282405ceb9fd1d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 125
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 125
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 99,
+ "total": 125
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 96,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 7,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 99,
+ "total": 125
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14901548,
+ "username": "ctz0411",
+ "fullName": "ctz0411",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cf42c2743649e5d62fb172dcde84594e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 0,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14614386,
+ "username": "cyberlize",
+ "fullName": "cyberlize",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/da13bd29e41187ca25f4cf1e1e2194e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 458
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 458
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 435,
+ "total": 458
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 832,
+ "total": 891
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 435,
+ "total": 458
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14077417,
+ "username": "cyreum",
+ "fullName": "cyreum",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8edb42a60b6a4511b662dba5c8d7af1a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1429
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1429
+ },
+ "translated": {
+ "tmMatch": 571,
+ "default": 858,
+ "total": 1429
+ },
+ "targetTranslated": {
+ "tmMatch": 511,
+ "default": 802,
+ "total": 1313
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 571,
+ "default": 858,
+ "total": 1429
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13986647,
+ "username": "da447m",
+ "fullName": "da447m",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/fa46389d10e6ec78a6b874a90fdfdc62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 973
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 973
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 925,
+ "total": 973
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 1017,
+ "total": 1060
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 165,
+ "total": 165
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 925,
+ "total": 973
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14963303,
+ "username": "daadamati",
+ "fullName": "daadamati",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963303/medium/45c58b93a72ee93cd47f1e9a70639e81.jpg",
+ "preTranslated": 0,
+ "totalCosts": 105
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 105
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 100,
+ "total": 105
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 196,
+ "total": 207
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 100,
+ "total": 105
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779220,
+ "username": "damienk",
+ "fullName": "damienk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/00a8722582bce7f61d6e74e2fd1c2471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929095,
+ "username": "dangchi",
+ "fullName": "dangchi",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929095/medium/a42410898b37c709ef4d76967a9b97a9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3863
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3863
+ },
+ "translated": {
+ "tmMatch": 226,
+ "default": 3637,
+ "total": 3863
+ },
+ "targetTranslated": {
+ "tmMatch": 400,
+ "default": 4834,
+ "total": 5234
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 226,
+ "default": 3637,
+ "total": 3863
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750468,
+ "username": "daniel26712671",
+ "fullName": "daniel26712671",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/34da6c200642c609d9c95b3160539864?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020371,
+ "username": "danielsotog",
+ "fullName": "danielsotog",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0822f1dc9f3dec8545f759f0b092229c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 439
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 439
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 428,
+ "total": 439
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 496,
+ "total": 507
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 428,
+ "total": 439
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989955,
+ "username": "darya.vrk",
+ "fullName": "darya.vrk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6a6feaaab6afc3a2e49327308d76a3a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 215
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 215
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 183,
+ "total": 215
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 155,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 183,
+ "total": 215
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14795502,
+ "username": "dasomoli",
+ "fullName": "dasomoli",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a0d1d5726af9b80e94348af794c321e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8061
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8061
+ },
+ "translated": {
+ "tmMatch": 254,
+ "default": 7807,
+ "total": 8061
+ },
+ "targetTranslated": {
+ "tmMatch": 167,
+ "default": 5379,
+ "total": 5546
+ },
+ "translatedByMt": {
+ "tmMatch": 17,
+ "default": 0,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 254,
+ "default": 7807,
+ "total": 8061
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021479,
+ "username": "dcecil",
+ "fullName": "dcecil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/20e2ccb1fb13cd9dbf3fc8d218747a99?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14724864,
+ "username": "deepweed",
+ "fullName": "deepweed",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/237a5f302ee077d06f14071dbf8e4775?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14640892,
+ "username": "demonstrator",
+ "fullName": "demonstrator",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/855e3a72d73adbeb6702ba7f9177614a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 72,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 122,
+ "total": 127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 72,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15032539,
+ "username": "devsapariya94",
+ "fullName": "devsapariya94",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9f678368bc574de9cf675e8011f18e6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 360
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 360
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 360,
+ "total": 360
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 624,
+ "total": 624
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 360,
+ "total": 360
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891920,
+ "username": "diegomoretti",
+ "fullName": "diegomoretti",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aa14a762e612a6074e0aa17d46c738ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 220
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 220
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 191,
+ "total": 220
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 195,
+ "total": 222
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 191,
+ "total": 220
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14981431,
+ "username": "dilebucalossi",
+ "fullName": "dilebucalossi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71cc24a8d6b8ab5842fafe0b4d94a1de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 48,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 46,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 48,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778950,
+ "username": "diplomaticone66",
+ "fullName": "diplomaticone66",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c8a4711e2887877dfbbba99b5c09a6e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996091,
+ "username": "divas7",
+ "fullName": "divas7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c5bea20c781d457353d5dfe7a901c341?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 817
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 817
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 811,
+ "total": 817
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 932,
+ "total": 938
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 86,
+ "total": 86
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 811,
+ "total": 817
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12892013,
+ "username": "donlaiq",
+ "fullName": "donlaiq",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12892013/medium/3ab82b955b65e5eac6d5c108533c38a7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708840,
+ "username": "dsantin95",
+ "fullName": "dsantin95",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f54449d40f99af23a219cfdf97eb7113?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14132935,
+ "username": "ducdat0507",
+ "fullName": "ducdat0507",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14132935/medium/8403819f5209d80ef424840aa9e0dc4c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 359
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 359
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 332,
+ "total": 359
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 453,
+ "total": 486
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 332,
+ "total": 359
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953707,
+ "username": "dvd_okt84",
+ "fullName": "dvd_okt84",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/578fe5735e253da43fbdae93ee91b146?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 317
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 317
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 313,
+ "total": 317
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 279,
+ "total": 284
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 313,
+ "total": 317
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14498608,
+ "username": "eadmann",
+ "fullName": "eadmann",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/fc0dcad3181041f188e5fabb824b55da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 8,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 8,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 8,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14804278,
+ "username": "edier022",
+ "fullName": "edier022",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d827e020ed536385d790dd0c1eaff03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13577083,
+ "username": "editor-Ajian",
+ "fullName": "editor-Ajian",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13577083/medium/48cf1f040e4eba541c0d759d1a94f417.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030800,
+ "username": "eleodorim",
+ "fullName": "eleodorim",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/58dbddececb3e0b328341564769b2bb7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958557,
+ "username": "eme42",
+ "fullName": "eme42",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e099c3cca79a8e0fa3375fa18bd7e0bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 327,
+ "total": 327
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959887,
+ "username": "emukhin",
+ "fullName": "emukhin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b7de7b5aa443ebf593eb268a5df82ed2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1097
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1097
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 1077,
+ "total": 1097
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 1012,
+ "total": 1032
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 1077,
+ "total": 1097
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14197086,
+ "username": "ericvt",
+ "fullName": "ericvt",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197086/medium/f9f0b4ccf0c1a374ba2f208be1f7e061.JPG",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14916719,
+ "username": "erndevelop",
+ "fullName": "erndevelop",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/616a39f2f590e4d611da9061b6b152bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 24,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030445,
+ "username": "eth31",
+ "fullName": "eth31",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/309c2f8ce89e7c67718e3ba5ef91bef8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13962433,
+ "username": "ethereum.cn",
+ "fullName": "ethereum.cn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962433/medium/6a8b7d48c93a310b833e5f26db2aab4f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4901
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4901
+ },
+ "translated": {
+ "tmMatch": 272,
+ "default": 4629,
+ "total": 4901
+ },
+ "targetTranslated": {
+ "tmMatch": 676,
+ "default": 6987,
+ "total": 7663
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 272,
+ "default": 4629,
+ "total": 4901
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842502,
+ "username": "excelaa",
+ "fullName": "excelaa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/831f1e467000356793c95289198ac7bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14647528,
+ "username": "f101431",
+ "fullName": "f101431",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f84c6b598b9012bf922f6ccac4b8c03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4648
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4648
+ },
+ "translated": {
+ "tmMatch": 78,
+ "default": 4570,
+ "total": 4648
+ },
+ "targetTranslated": {
+ "tmMatch": 72,
+ "default": 4437,
+ "total": 4509
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 338,
+ "total": 341
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 78,
+ "default": 4570,
+ "total": 4648
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581696,
+ "username": "fatihbilgen",
+ "fullName": "fatihbilgen",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a6970320aadce81c5c6eb3009500068f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14359710,
+ "username": "faww",
+ "fullName": "faww",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a6efe428b003f14e2a9a4397a736a08d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14374108,
+ "username": "faye831",
+ "fullName": "faye831",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5467a440303748a93ae001d092539545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669734,
+ "username": "fcab",
+ "fullName": "fcab",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c42ab8c861169042cb2d5c07074f541?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 677
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 677
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 662,
+ "total": 677
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 680,
+ "total": 687
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 156,
+ "total": 156
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 662,
+ "total": 677
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14807258,
+ "username": "fccxw",
+ "fullName": "fccxw",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5f111ebb9921906dfb0d53101ed27b94?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958987,
+ "username": "fernanmartine",
+ "fullName": "fernanmartine",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/beaac6d6232afa53f07aafb28777367f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 263
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 263
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 254,
+ "total": 263
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 273,
+ "total": 285
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 254,
+ "total": 263
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546584,
+ "username": "fesslerem",
+ "fullName": "fesslerem",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546584/medium/daeb2ca91f3cbe8c17cf78e73c56694a.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 144,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 116,
+ "total": 121
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 144,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712154,
+ "username": "fivenicerice",
+ "fullName": "fivenicerice",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712154/medium/3730e404a7ef0a2e5f76426f84376d53.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2260
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2248
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 2215,
+ "total": 2248
+ },
+ "targetTranslated": {
+ "tmMatch": 196,
+ "default": 3728,
+ "total": 3924
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 502,
+ "total": 502
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 2215,
+ "total": 2248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914493",
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 10,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 176,
+ "total": 204
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 10,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14981781,
+ "username": "frameset",
+ "fullName": "frameset",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5f768fb05238d3a9ff75c4d56ce52061?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ku",
+ "name": "Kurdish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14980727,
+ "username": "francismaduro",
+ "fullName": "francismaduro",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6317d5bd489d8ca570ea2954ea7475db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 13,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 14,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 13,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14636118,
+ "username": "frontedu",
+ "fullName": "frontedu",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636118/medium/d3d3ec3fab34702c4b19674b06e1ddff.png",
+ "preTranslated": 0,
+ "totalCosts": 2779
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2779
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 2710,
+ "total": 2779
+ },
+ "targetTranslated": {
+ "tmMatch": 80,
+ "default": 2844,
+ "total": 2924
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 605,
+ "total": 617
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 69,
+ "default": 2710,
+ "total": 2779
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752676,
+ "username": "ftalijic",
+ "fullName": "ftalijic",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/722c27843f7139864e3137863ad66413?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1116
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1104,
+ "total": 1116
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 882,
+ "total": 895
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1104,
+ "total": 1116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14136377,
+ "username": "ftureleo",
+ "fullName": "ftureleo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/201d0aaf8c279e2413d3e05c2081e65b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 547
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 547
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 547,
+ "total": 547
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 635,
+ "total": 635
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 547,
+ "total": 547
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14594750,
+ "username": "g1usy_joey",
+ "fullName": "g1usy_joey",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f2c301b06860d7978eb52033b947c76a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1510
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1510
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 1472,
+ "total": 1510
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 1456,
+ "total": 1495
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 259,
+ "total": 261
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 1472,
+ "total": 1510
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14382632,
+ "username": "gabe_san_",
+ "fullName": "gabe_san_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ba104028940a36ea18502399fe70aef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 829
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 829
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 760,
+ "total": 829
+ },
+ "targetTranslated": {
+ "tmMatch": 71,
+ "default": 695,
+ "total": 766
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 279,
+ "total": 285
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 69,
+ "default": 760,
+ "total": 829
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14749926,
+ "username": "gabekings",
+ "fullName": "gabekings",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9923db47c8c5e9ebc0c0d11edc071abf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 102,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 104,
+ "total": 119
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 102,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13964881,
+ "username": "gabriellas",
+ "fullName": "gabriellas",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7988a6bb3994c6e8623bc37c6ebf7681?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959933,
+ "username": "gabririgo",
+ "fullName": "gabririgo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/01c68c406b8aa7925f73841aef24fe9d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1685
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1685
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 1655,
+ "total": 1685
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 1755,
+ "total": 1788
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 1655,
+ "total": 1685
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14598938,
+ "username": "galal12345",
+ "fullName": "galal12345",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb205cb8e35658c41eae439ab4f542b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14028617,
+ "username": "gamazonka",
+ "fullName": "gamazonka",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/41f8df6d28ce530d9cc0ac11408acdda?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 89,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 77,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 89,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784406,
+ "username": "garbirel",
+ "fullName": "garbirel",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e72968b533b18b4a8a00dfe052493636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 123
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 123
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 118,
+ "total": 123
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 171,
+ "total": 178
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 118,
+ "total": 123
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14988691,
+ "username": "gargavar",
+ "fullName": "gargavar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d2451670ce34a7f8ed1646923c0a6be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 423
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 423
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 417,
+ "total": 423
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 401,
+ "total": 409
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 417,
+ "total": 423
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865834,
+ "username": "georgi_kovachev",
+ "fullName": "georgi_kovachev",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865834/medium/5a384f6c7a697cb88524be5332fc8655.jpg",
+ "preTranslated": 0,
+ "totalCosts": 347
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 347
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 347,
+ "total": 347
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 372,
+ "total": 372
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 347,
+ "total": 347
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14034162,
+ "username": "getasso",
+ "fullName": "getasso",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/abff64230b71b30d7b186cceaea20441?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 255
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 255
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 225,
+ "total": 255
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 275,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 225,
+ "total": 255
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14979771,
+ "username": "gieffe",
+ "fullName": "gieffe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1b69ac19cc5f713958bb337307e776bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 323
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 323
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 302,
+ "total": 323
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 328,
+ "total": 350
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 302,
+ "total": 323
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14955317,
+ "username": "gillesduif",
+ "fullName": "gillesduif",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7355f5da07b450011f896bfb00989001?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 56,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 61,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 10,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 56,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14666384,
+ "username": "gimyu",
+ "fullName": "gimyu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b9ad81d93b8b8e18dc71e375674714c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 89
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 89
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 89,
+ "total": 89
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 89,
+ "total": 89
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14664124,
+ "username": "glpyldrm",
+ "fullName": "glpyldrm",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ab52d3346e48b9478699da6837fa29cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 136
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 136
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 116,
+ "total": 136
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 90,
+ "total": 108
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 116,
+ "total": 136
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14338040,
+ "username": "godra9",
+ "fullName": "godra9",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/286d3389fd701e3dd31cae7ffa3d1870?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 67,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 68,
+ "total": 69
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 67,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14056130,
+ "username": "gokselp",
+ "fullName": "gokselp",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/107787c1212fc885c38a26858fe295d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949095,
+ "username": "goodhat",
+ "fullName": "goodhat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cec995a4caf856ac5949ed264fc57029?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 46,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 105,
+ "total": 106
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 46,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14625410,
+ "username": "grcouto",
+ "fullName": "grcouto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/76c3b43f677e89f743cc65f676c7db3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14559620,
+ "username": "gregpich",
+ "fullName": "gregpich",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8dd9cf66464582d6640266702283d181?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 896
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 896
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 883,
+ "total": 896
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 964,
+ "total": 980
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 883,
+ "total": 896
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035371,
+ "username": "grompeys",
+ "fullName": "grompeys",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f4f2d5d11b3dacbc96dd2fcc105a2389?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 147
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 147
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 186,
+ "total": 189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14785628,
+ "username": "gucoo",
+ "fullName": "gucoo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/98ff76f33f4003bd8b487e02d1e6e7c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13517199,
+ "username": "gustavnovotny",
+ "fullName": "gustavnovotny",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b6e4bd86c6b2e9c4863855bde9250545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 733
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 733
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 718,
+ "total": 733
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 645,
+ "total": 660
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 718,
+ "total": 733
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929487,
+ "username": "gutianyichn",
+ "fullName": "gutianyichn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6aa15b2b5248c923eac9ccf554c8547a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 83,
+ "total": 83
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14785636,
+ "username": "hakasekenken",
+ "fullName": "hakasekenken",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/649dd538c5dcd0b067043e01edfffa61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14922369,
+ "username": "halley.oliveira",
+ "fullName": "halley.oliveira",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/50becb2743c21fc6a72320fa8961e0d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873224,
+ "username": "haren724",
+ "fullName": "haren724",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/05e8aae1708a6c3b39dbf300192da0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 5,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 11,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 5,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14000483,
+ "username": "harkce",
+ "fullName": "harkce",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000483/medium/fc9a15b787ef07f2ff61c89fdad21dd5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14192884,
+ "username": "hasank0c",
+ "fullName": "hasank0c",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8304522e526a7122da0314573dcbd1a1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14600152,
+ "username": "hbarcelos",
+ "fullName": "hbarcelos",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ea10822d92db8b695ffa6d67727d672b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 804
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 804
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 793,
+ "total": 804
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 879,
+ "total": 893
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 177,
+ "total": 180
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 793,
+ "total": 804
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14049937,
+ "username": "hcf12",
+ "fullName": "hcf12",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d48c2c9a90d337d55293388a210ac404?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 587
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 587
+ },
+ "translated": {
+ "tmMatch": 108,
+ "default": 479,
+ "total": 587
+ },
+ "targetTranslated": {
+ "tmMatch": 102,
+ "default": 413,
+ "total": 515
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 108,
+ "default": 479,
+ "total": 587
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14762702,
+ "username": "heathcliff",
+ "fullName": "heathcliff",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5af0e75a21458996716e217cd4e9e123?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 160,
+ "total": 160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14257038,
+ "username": "heggeis",
+ "fullName": "heggeis",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/330b77dbcc1517a1ab444c60cbb440eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 192
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 192
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 159,
+ "total": 192
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 150,
+ "total": 180
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 159,
+ "total": 192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14754350,
+ "username": "hektopaxvil",
+ "fullName": "hektopaxvil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/489e647a808df935e0fe2f80a631240a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14569670,
+ "username": "highquark",
+ "fullName": "highquark",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/97f57994e172f22ea45f4545b6946ea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 149
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 149
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 142,
+ "total": 149
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 140,
+ "total": 151
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 142,
+ "total": 149
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14570620,
+ "username": "holger_li",
+ "fullName": "holger_li",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f1afc244875a9ff6b180fca00e89e01c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 131
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 131
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 91,
+ "total": 131
+ },
+ "targetTranslated": {
+ "tmMatch": 102,
+ "default": 173,
+ "total": 275
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 6,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 91,
+ "total": 131
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14365000,
+ "username": "hossein221",
+ "fullName": "hossein221",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5f80ac870f00c6725715b770cdf1cbee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 216
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 216
+ },
+ "translated": {
+ "tmMatch": 195,
+ "default": 21,
+ "total": 216
+ },
+ "targetTranslated": {
+ "tmMatch": 236,
+ "default": 19,
+ "total": 255
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 195,
+ "default": 21,
+ "total": 216
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815950,
+ "username": "hungkhongten7777",
+ "fullName": "hungkhongten7777",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d79a59a099285520a062ed09b26b849d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950571,
+ "username": "hurricaneneo",
+ "fullName": "hurricaneneo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f3de160707c989504abd9a67c89f5a83?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13785527,
+ "username": "iTwalkers",
+ "fullName": "iTwalkers",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13785527/medium/91145be2a09a7801ebf8bcce44e121a1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14651040,
+ "username": "ifjiaru",
+ "fullName": "ifjiaru",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0a7cbdb9eef1e3014bf5abe6f5d79f0b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 331
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 331
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 326,
+ "total": 331
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 595,
+ "total": 606
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 326,
+ "total": 331
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966089,
+ "username": "ignb",
+ "fullName": "ignb",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e20f697e42a3a97a570cf9837a242b9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 394
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 394
+ },
+ "translated": {
+ "tmMatch": 50,
+ "default": 344,
+ "total": 394
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 303,
+ "total": 353
+ },
+ "translatedByMt": {
+ "tmMatch": 40,
+ "default": 0,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 50,
+ "default": 344,
+ "total": 394
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14917397,
+ "username": "ijann_",
+ "fullName": "ijann_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/af23c70f2e300427aad5461a15b2dc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896728,
+ "username": "ilijarudes84",
+ "fullName": "ilijarudes84",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c78bc289dad4d5c5e1cd3315e7a6f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 597
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 597
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 596,
+ "total": 597
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 627,
+ "total": 628
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 596,
+ "total": 597
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709216,
+ "username": "iliyaashrafi",
+ "fullName": "iliyaashrafi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71c700fd076a14976925411a9716706f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14684396,
+ "username": "imanpo",
+ "fullName": "imanpo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8c88f8719c37d257cfa7ae72edd69a27?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 43
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 34,
+ "total": 43
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 46,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 34,
+ "total": 43
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991283,
+ "username": "imexcalibur",
+ "fullName": "imexcalibur",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/04256138ca3ce9021a2323705e83f77e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1011
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1011
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 971,
+ "total": 1011
+ },
+ "targetTranslated": {
+ "tmMatch": 60,
+ "default": 1597,
+ "total": 1657
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 971,
+ "total": 1011
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13475981,
+ "username": "imfasa",
+ "fullName": "imfasa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5d8ff0d4ff92058c76fdd3aa74adbad2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 650
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 650
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 646,
+ "total": 650
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 638,
+ "total": 642
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 112,
+ "total": 112
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 646,
+ "total": 650
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897212,
+ "username": "iosadcha",
+ "fullName": "iosadcha",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/21196c23e9d447ef70bb9f014aa28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895372,
+ "username": "iosayin",
+ "fullName": "iosayin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0106b5930267370e77a54b23cd022fec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 493
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 493
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 476,
+ "total": 493
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 361,
+ "total": 369
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 476,
+ "total": 493
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546956,
+ "username": "ipungpurwono",
+ "fullName": "ipungpurwono",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ff7e1263652b38c8dd2e36ae6cb5f3ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 70
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 70
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 69,
+ "total": 70
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 63,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 69,
+ "total": 70
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779518,
+ "username": "iromain",
+ "fullName": "iromain",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e8b9b351cf57be1bddf548fc104dcb09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861960,
+ "username": "isaul",
+ "fullName": "isaul",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/44895e9c99a8fde7d2fd25632415e024?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028313,
+ "username": "jafuda",
+ "fullName": "jafuda",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bb3ad2846c9c73de07ab3c8e009a8d1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914493,
"username": "jagaroki",
"fullName": "jagaroki",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/46522ddc46f26f6fbdefcea4773a6f8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 16:22:16"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866558",
- "username": "sjijioff74",
- "fullName": "Sammy KH (sjijioff74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866558/medium/c2ca15a21e982f87474214a24e0fd487.jpeg",
- "joined": "2021-08-04 14:10:52"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995121",
- "username": "abhi.kanodia803",
- "fullName": "abhishek Kanodia (abhi.kanodia803)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995121/medium/d05ae7488e7a8e4a2b4e2be59c889f0e.jpeg",
- "joined": "2021-11-08 11:30:15"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13857721",
- "username": "durgutkoray",
- "fullName": "KORAY DURGUT (durgutkoray)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13857721/medium/4d6521ed37dba353c0cd46985e370a50.jpg",
- "joined": "2019-11-27 02:47:16"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650868",
- "username": "FranLogar",
- "fullName": "FranLogar",
- "avatarUrl": "https://www.gravatar.com/avatar/da7372f1e2958ca78ebe38dc7173451a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 02:28:22"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959167,
+ "username": "jamiesheng",
+ "fullName": "jamiesheng",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1fdca71f9bba62eca9a6ab38ed87ac19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 121
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 121
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 121,
+ "total": 121
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 203,
+ "total": 203
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 121,
+ "total": 121
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779018,
+ "username": "jaskoeth",
+ "fullName": "jaskoeth",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8985ed0bd166da1b98c9c957829d0c24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9798
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9798
+ },
+ "translated": {
+ "tmMatch": 187,
+ "default": 9611,
+ "total": 9798
+ },
+ "targetTranslated": {
+ "tmMatch": 168,
+ "default": 8013,
+ "total": 8181
+ },
+ "translatedByMt": {
+ "tmMatch": 43,
+ "default": 3,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 187,
+ "default": 9611,
+ "total": 9798
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14360544,
+ "username": "jasz3217",
+ "fullName": "jasz3217",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9b3d429ac54ba9dc9240bf77d0166b2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 28,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14646842,
+ "username": "jcanlas13",
+ "fullName": "jcanlas13",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5e386b0731d2423803b522a1d92e2984?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 4,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 5,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 4,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020181,
+ "username": "jcruzrivera",
+ "fullName": "jcruzrivera",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71150e449e40c218bc198b8d26dba0b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 56,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 65,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 56,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14625120,
+ "username": "jdbrh16",
+ "fullName": "jdbrh16",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3a91cf276217076de4f40a29a408a951?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982023,
+ "username": "jdgomes",
+ "fullName": "jdgomes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4d69fb95b1d8d208d48c2269e9594b3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 84
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 84
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 88,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 52,
+ "total": 55
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13904511,
+ "username": "jeedani",
+ "fullName": "jeedani",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13904511/medium/6862a85849c0483552067158ca0f3b07.jpg",
+ "preTranslated": 0,
+ "totalCosts": 629
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 629
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 626,
+ "total": 629
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 347,
+ "total": 350
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 626,
+ "total": 629
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14648798,
+ "username": "jekyllNiutont",
+ "fullName": "jekyllNiutont",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/871d8fba84cab7661ee061b7f635e41c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 205
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 205
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 205,
+ "total": 205
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 168,
+ "total": 168
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 205,
+ "total": 205
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14657804,
+ "username": "jhonnyvianello",
+ "fullName": "jhonnyvianello",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 10282
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10282
+ },
+ "translated": {
+ "tmMatch": 226,
+ "default": 10056,
+ "total": 10282
+ },
+ "targetTranslated": {
+ "tmMatch": 250,
+ "default": 10087,
+ "total": 10337
+ },
+ "translatedByMt": {
+ "tmMatch": 21,
+ "default": 3976,
+ "total": 3997
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 226,
+ "default": 10056,
+ "total": 10282
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14614266,
+ "username": "jkjimmy",
+ "fullName": "jkjimmy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d2f2409aa5d4b252f4fc9623615ba61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 175
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 175
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 175,
+ "total": 175
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 175,
+ "total": 175
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750970,
+ "username": "joab83",
+ "fullName": "joab83",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/778e1919b3d77682207717166c6c946e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 299
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 299
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 299,
+ "total": 299
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 279,
+ "total": 279
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 131,
+ "total": 131
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 299,
+ "total": 299
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14091843,
+ "username": "joanadugarte",
+ "fullName": "joanadugarte",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/500f73a1f808d69c8ea704c3ddf49adb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959413,
+ "username": "jonnycrypto",
+ "fullName": "jonnycrypto",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e5920de8c353bca8434dd58a9e272436?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 549
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 549
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 534,
+ "total": 549
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 544,
+ "total": 559
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 534,
+ "total": 549
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748598,
+ "username": "jordyureta1",
+ "fullName": "jordyureta1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c7e41716669e407cbeb0d99dedbe74f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 93
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 93
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 91,
+ "total": 93
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 100,
+ "total": 102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 91,
+ "total": 93
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14588194,
+ "username": "jotunn",
+ "fullName": "jotunn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/98f7f37f845f0910dcae9bfd7173dcb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13343841,
+ "username": "jrthsr700tmax",
+ "fullName": "jrthsr700tmax",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/271f36fa0507edc4ae9d7108a43bf1fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 214
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 214
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 205,
+ "total": 214
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 335,
+ "total": 353
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 205,
+ "total": 214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14705886,
+ "username": "jsssyc",
+ "fullName": "jsssyc",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/80a4686cdfc3ce699c4ce9031432b3e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 887
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 887
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 865,
+ "total": 887
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 1303,
+ "total": 1338
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 865,
+ "total": 887
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14297416,
+ "username": "juampigilsola",
+ "fullName": "juampigilsola",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c604008c58573b0a5b7c53bd375a7854?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 737
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 737
+ },
+ "translated": {
+ "tmMatch": 127,
+ "default": 610,
+ "total": 737
+ },
+ "targetTranslated": {
+ "tmMatch": 134,
+ "default": 662,
+ "total": 796
+ },
+ "translatedByMt": {
+ "tmMatch": 38,
+ "default": 177,
+ "total": 215
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 127,
+ "default": 610,
+ "total": 737
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14961487,
+ "username": "juancruz.ar",
+ "fullName": "juancruz.ar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/61863283feb1092d4658810e0354abb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14050969,
+ "username": "juanfahler",
+ "fullName": "juanfahler",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7d55f23b74c20ace1d5f6dabcae4047b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 514
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 514
+ },
+ "translated": {
+ "tmMatch": 137,
+ "default": 377,
+ "total": 514
+ },
+ "targetTranslated": {
+ "tmMatch": 151,
+ "default": 424,
+ "total": 575
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 92,
+ "total": 93
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 137,
+ "default": 377,
+ "total": 514
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14993957,
+ "username": "julijuli_69",
+ "fullName": "julijuli_69",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3a56d24884e4c516c849c108db44fd35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 68,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 64,
+ "total": 82
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 68,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14662564,
+ "username": "jyfmidi",
+ "fullName": "jyfmidi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6f1fb1baa61d75ae216be7217d59d4ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14788394,
+ "username": "k-sad",
+ "fullName": "k-sad",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788394/medium/d36035c2e171b8c0a75df7a938eceadb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 719
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 719
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 692,
+ "total": 719
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 531,
+ "total": 555
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 79,
+ "total": 81
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 692,
+ "total": 719
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14943545,
+ "username": "k.otika",
+ "fullName": "k.otika",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/166d75bbff1b6b61474e4e64644a5e81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 173
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 173
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 149,
+ "total": 173
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 167,
+ "total": 194
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 149,
+ "total": 173
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14576042,
+ "username": "k0999",
+ "fullName": "k0999",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/86302fe2653844d47c617ef003415762?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 287
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 287
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 285,
+ "total": 287
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 308,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 285,
+ "total": 287
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14707524,
+ "username": "kali77",
+ "fullName": "kali77",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4f6ac0259323a40da42e4d0da87100f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 7,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 7,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 7,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631242,
+ "username": "kasahiti",
+ "fullName": "kasahiti",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1108aa42304b44e1df76259f4f130ffd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2896
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2896
+ },
+ "translated": {
+ "tmMatch": 146,
+ "default": 2750,
+ "total": 2896
+ },
+ "targetTranslated": {
+ "tmMatch": 170,
+ "default": 2668,
+ "total": 2838
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 800,
+ "total": 818
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 146,
+ "default": 2750,
+ "total": 2896
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14251480,
+ "username": "kate_oren",
+ "fullName": "kate_oren",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c49f2fa25bb1e26d4a542f8c9c72436?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1252
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1252
+ },
+ "translated": {
+ "tmMatch": 382,
+ "default": 870,
+ "total": 1252
+ },
+ "targetTranslated": {
+ "tmMatch": 359,
+ "default": 818,
+ "total": 1177
+ },
+ "translatedByMt": {
+ "tmMatch": 23,
+ "default": 229,
+ "total": 252
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 382,
+ "default": 870,
+ "total": 1252
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12930933,
+ "username": "kerocate",
+ "fullName": "kerocate",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12930933/medium/98233a4ea01a32d666991eedd9c30a9a.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949231,
+ "username": "khrystynaboitsun",
+ "fullName": "khrystynaboitsun",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3b995766e290dc6b35a2a18caa166394?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1457
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1457
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 1432,
+ "total": 1457
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 1185,
+ "total": 1211
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 131,
+ "total": 135
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 1432,
+ "total": 1457
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678034,
+ "username": "khtmn",
+ "fullName": "khtmn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1440dc97ff736bbf78164794df7fb053?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3227
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3227
+ },
+ "translated": {
+ "tmMatch": 72,
+ "default": 3155,
+ "total": 3227
+ },
+ "targetTranslated": {
+ "tmMatch": 140,
+ "default": 7988,
+ "total": 8128
+ },
+ "translatedByMt": {
+ "tmMatch": 16,
+ "default": 1990,
+ "total": 2006
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 72,
+ "default": 3155,
+ "total": 3227
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677168,
+ "username": "kilid69",
+ "fullName": "kilid69",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/136e1f7c2540321fd8dedf158adfd8e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 79,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 90,
+ "total": 108
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 79,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545266,
+ "username": "kilion",
+ "fullName": "kilion",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/43a7307f28765065183496715847b48a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 23,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13939747,
+ "username": "klaudek-pakula",
+ "fullName": "klaudek-pakula",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13939747/medium/b08dc14cf85baffa048518d87afa3c14.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 20,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 22,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 20,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14703180,
+ "username": "kmasuda",
+ "fullName": "kmasuda",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a43d50338c716437078657061c8d7280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14944337,
+ "username": "knopentiya",
+ "fullName": "knopentiya",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14944337/medium/e15d754f673dc2d2263a16048f6d51b7.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 26,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 27,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 26,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14928669,
+ "username": "knowwell",
+ "fullName": "knowwell",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f84d23e5e00cfce6b33405177e3a76f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13628871,
+ "username": "koveek",
+ "fullName": "koveek",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7fff4af5d2e94d78e8e0bbc6d863e3bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13500944,
+ "username": "krisfremen",
+ "fullName": "krisfremen",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13500944/medium/5a2ea6e9d1e7a6138d3eaf8f83a36b84.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14822530,
+ "username": "krishnagaurav",
+ "fullName": "krishnagaurav",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/80cfc37428c1f903133c139927c52fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 668,
+ "total": 668
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990795,
+ "username": "kronic",
+ "fullName": "kronic",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990795/medium/f3e16163f42dd477b6cb6b1bc541bbff.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 202,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 243,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 46,
+ "total": 48
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 202,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14851382,
+ "username": "krvtch",
+ "fullName": "krvtch",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/acc96f413e7d8f51233a8fe355461e73?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 337
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 337
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 334,
+ "total": 337
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 303,
+ "total": 306
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 334,
+ "total": 337
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003781,
+ "username": "krysia0196",
+ "fullName": "krysia0196",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/169c092691e6bf76213b324770ecbdfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 283,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14128259,
+ "username": "krzyz23",
+ "fullName": "krzyz23",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8884fcb5f8a318c9ac3d8934328eeee7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 44,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 38,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 44,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14755532,
+ "username": "ksenija",
+ "fullName": "ksenija",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3e1c987582c590bd1a73beb827ca4a4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 554
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 554
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 552,
+ "total": 554
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 433,
+ "total": 435
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 552,
+ "total": 554
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14606376,
+ "username": "l3gacyb3ta",
+ "fullName": "l3gacyb3ta",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c6d08d600ee9ef4a11d4820ea3df8473?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 112
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 112
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 112,
+ "total": 112
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 112,
+ "total": 112
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14015265,
+ "username": "lachoj",
+ "fullName": "lachoj",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a5f1316621f8a09b76040c949d419569?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 193
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 193
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 190,
+ "total": 193
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 193,
+ "total": 198
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 190,
+ "total": 193
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14818556,
+ "username": "lahdiez",
+ "fullName": "lahdiez",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/496e2e851d9ffaaf28354c990782acdb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14434570,
+ "username": "lamacat",
+ "fullName": "lamacat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/091a7fa80c8946b11412338bd1f89be4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653070,
+ "username": "laurelx1",
+ "fullName": "laurelx1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e21d6619a652b17915967c99b41adc5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14517778,
+ "username": "leekarmeng5",
+ "fullName": "leekarmeng5",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/16cb72d90659a7b114b33b3ee36751d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775426,
+ "username": "leekarmeng9",
+ "fullName": "leekarmeng9",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/710785b07b027423633a9a7b669fc5d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 53,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14482564",
- "username": "simona0823",
- "fullName": "Mingyue Feng (simona0823)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14482564/medium/7dbbc716fc051260c3b37e7f13a08cf7.jpeg",
- "joined": "2020-11-03 21:37:17"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896196,
+ "username": "leoclark",
+ "fullName": "leoclark",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e9b882a9e897b57b3e28408fba53538?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 65,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984959,
+ "username": "lesnov",
+ "fullName": "lesnov",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7b606916d76de291f823b051e96c00ec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 174
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 174
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 174,
+ "total": 174
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 160,
+ "total": 160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 174,
+ "total": 174
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996569,
+ "username": "lib",
+ "fullName": "lib",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e6b38eae96bfc3dadae468e552ed75bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 135
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 135
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 139,
+ "total": 139
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956337,
+ "username": "lidianycs",
+ "fullName": "lidianycs",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956337/medium/918c6540264cbd711a5a6616ebb2c3ee.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1519
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1519
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 1479,
+ "total": 1519
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 1578,
+ "total": 1626
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 800,
+ "total": 802
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 1479,
+ "total": 1519
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14805464,
+ "username": "lijiachuan",
+ "fullName": "lijiachuan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7742cb188d8172fd11144ebcbc1d1d1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 9,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 77,
+ "default": 456,
+ "total": 533
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 9,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844258,
+ "username": "lincoln019",
+ "fullName": "lincoln019",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/72b791ed133af9f4ceab21e3c93547bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 984
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 984
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 979,
+ "total": 984
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 968,
+ "total": 973
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 115,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 979,
+ "total": 984
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14813326,
+ "username": "lingwen",
+ "fullName": "lingwen",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a2ed20a7c9813e3e85a6ebb6c3397a7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 930
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14515116",
- "username": "jayadiahmad658",
- "fullName": "dua sejoli berantam sejoli (jayadiahmad658)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515116/medium/6e756f6c10d3988984fa2111b68ab11d.jpeg",
- "joined": "2020-11-29 05:01:06"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 928
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 906,
+ "total": 928
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 1188,
+ "total": 1227
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 906,
+ "total": 928
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13555518,
+ "username": "linxd",
+ "fullName": "linxd",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13555518/medium/7857fc7cd3690f272e61c6c33185c508.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14805590,
+ "username": "liushooter",
+ "fullName": "liushooter",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805590/medium/a79b39967e3163a23f1aa233b780ac69.jpg",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 37,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 58,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 37,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14685444,
+ "username": "lixuan",
+ "fullName": "lixuan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d02e161c76f25ae122bbedfb08546df?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14564272,
+ "username": "liyifan333",
+ "fullName": "liyifan333",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/baf6804715a59ecade94ac8926221e5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 10,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 17,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 10,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733070,
+ "username": "loopersosa",
+ "fullName": "loopersosa",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7091
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7091
+ },
+ "translated": {
+ "tmMatch": 171,
+ "default": 6920,
+ "total": 7091
+ },
+ "targetTranslated": {
+ "tmMatch": 220,
+ "default": 7977,
+ "total": 8197
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 171,
+ "default": 6920,
+ "total": 7091
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698482,
+ "username": "lucaiach",
+ "fullName": "lucaiach",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c0bed651d9243db22c8457703d915332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 668
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 668
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 663,
+ "total": 668
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 733,
+ "total": 740
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 663,
+ "total": 668
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653932,
+ "username": "lucasguglieri",
+ "fullName": "lucasguglieri",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cbe3e9c7db0bd31fd72fc55f65a1c056?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14788680,
+ "username": "lucasmelo.dev",
+ "fullName": "lucasmelo.dev",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/78f6cae002c440a35994411a1bb3ec52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 106
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 98,
+ "total": 98
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13971441,
+ "username": "lucidtranslations",
+ "fullName": "lucidtranslations",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/8260e1494a988a5c98616aae905d4496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 725,
+ "default": 14688,
+ "total": 15413
+ },
+ "targetTranslated": {
+ "tmMatch": 2190,
+ "default": 38979,
+ "total": 41169
+ },
+ "translatedByMt": {
+ "tmMatch": 147,
+ "default": 3400,
+ "total": 3547
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 27601
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14670986,
+ "username": "luckyliu",
+ "fullName": "luckyliu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/62f88175b2a639efb2e167c1beb5fe50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 103
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 103
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 181,
+ "total": 181
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14042973,
+ "username": "lujdzso",
+ "fullName": "lujdzso",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dbd707ffb0ae5db0e2255749897a27b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 42,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 43,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 42,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951291,
+ "username": "lutsakolha",
+ "fullName": "lutsakolha",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6d7701c5b56e9fe6a9dd3f0723e48a69?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2913
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2913
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 2887,
+ "total": 2913
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 2301,
+ "total": 2326
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 414,
+ "total": 423
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 2887,
+ "total": 2913
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13300225,
+ "username": "lyubomyr888",
+ "fullName": "lyubomyr888",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e76d945a28b65f1aebf7b110307bd8ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950765,
+ "username": "m.kseniaaa",
+ "fullName": "m.kseniaaa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1d2fbb8f812f2b8b0cace056370c5dc9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14640122,
+ "username": "m1947",
+ "fullName": "m1947",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8740da8d815349b67d0d681cb923ef0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 119
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 103,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 123,
+ "total": 141
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 103,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14679912,
+ "username": "m337thesc0ut",
+ "fullName": "m337thesc0ut",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f1ed70484fae0f57205191aaf27abda8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 267
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 267
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 265,
+ "total": 267
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 196,
+ "total": 198
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 265,
+ "total": 267
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14961175,
+ "username": "m3tapha",
+ "fullName": "m3tapha",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d3d11c09d9f310b39a338c6da7163c53?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 91
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 91
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 89,
+ "total": 91
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 81,
+ "total": 83
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 89,
+ "total": 91
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13826385,
+ "username": "ma.de",
+ "fullName": "ma.de",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ccee80f57de9d8173f772ba497374be1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002239,
+ "username": "maedrag0vich_",
+ "fullName": "maedrag0vich_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/80a8507728d5863c9be644372810a645?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 487
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 487
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 487,
+ "total": 487
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 421,
+ "total": 421
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 487,
+ "total": 487
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690998,
+ "username": "magus0219",
+ "fullName": "magus0219",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f66fd2e894a3e42037fad926d0830eb1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8680
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8680
+ },
+ "translated": {
+ "tmMatch": 261,
+ "default": 8419,
+ "total": 8680
+ },
+ "targetTranslated": {
+ "tmMatch": 496,
+ "default": 14241,
+ "total": 14737
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 261,
+ "default": 8419,
+ "total": 8680
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937371,
+ "username": "mainulkhaled",
+ "fullName": "mainulkhaled",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71c448af11b12c4951d886ee6de6b596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 137,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 199,
+ "total": 200
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 137,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733302,
+ "username": "mandagala",
+ "fullName": "mandagala",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/efc73254f033c8fbd2a69839cbd28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 484
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 484
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 457,
+ "total": 484
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 442,
+ "total": 467
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 457,
+ "total": 484
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14826354,
+ "username": "manzin",
+ "fullName": "manzin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b20136210328d604d9cd396ecb7e012d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 26,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 32,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 26,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14637016,
+ "username": "maole",
+ "fullName": "maole",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/64c0a27d29a81099cacb505ba3e954b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 43,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771456,
+ "username": "marcusma",
+ "fullName": "marcusma",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a91e4ae62ef84bb9fa2e63901510b03e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 614
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 614
+ },
+ "translated": {
+ "tmMatch": 90,
+ "default": 524,
+ "total": 614
+ },
+ "targetTranslated": {
+ "tmMatch": 133,
+ "default": 797,
+ "total": 930
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 0,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 90,
+ "default": 524,
+ "total": 614
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14839218,
+ "username": "marianatcl",
+ "fullName": "marianatcl",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/771898c1e5d57a152272dae2f2641f20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 188
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 166,
+ "total": 188
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 182,
+ "total": 208
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 166,
+ "total": 188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14661636,
+ "username": "marino2105",
+ "fullName": "marino2105",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/90b0ccf4eae1678d86f5580c79c1f2bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 575
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 575
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 568,
+ "total": 575
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 656,
+ "total": 668
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 244,
+ "total": 244
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 568,
+ "total": 575
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14672166,
+ "username": "marius.zaharia",
+ "fullName": "marius.zaharia",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/25e4a9d7c2922aab65876891d9fcb360?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 3,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 6,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 3,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14831430,
+ "username": "markmaksi",
+ "fullName": "markmaksi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4bb4f33b60109a59a63fb7372d791e38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690192,
+ "username": "marktest",
+ "fullName": "marktest",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9ffdace96acb8997dfe5611dd2d1a226?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14666300,
+ "username": "matheusjordano",
+ "fullName": "matheusjordano",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666300/medium/114f1708cbf583e87780f21f565f642f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1121
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1121
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 1107,
+ "total": 1121
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 1180,
+ "total": 1195
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 448,
+ "total": 450
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 1107,
+ "total": 1121
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13483129,
+ "username": "matteopey",
+ "fullName": "matteopey",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ed7439b989f1706476071b7071ff7ff0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3834
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3834
+ },
+ "translated": {
+ "tmMatch": 722,
+ "default": 3112,
+ "total": 3834
+ },
+ "targetTranslated": {
+ "tmMatch": 773,
+ "default": 3333,
+ "total": 4106
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 722,
+ "default": 3112,
+ "total": 3834
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845960,
+ "username": "matusame",
+ "fullName": "matusame",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2ba5acc9f88366ef55d0441d12483c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 719
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 719
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 711,
+ "total": 719
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 659,
+ "total": 668
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 711,
+ "total": 719
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14862916,
+ "username": "mbolfova",
+ "fullName": "mbolfova",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d32d7c204254b0149dadc35770f7eaf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4492
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4492
+ },
+ "translated": {
+ "tmMatch": 242,
+ "default": 4250,
+ "total": 4492
+ },
+ "targetTranslated": {
+ "tmMatch": 178,
+ "default": 3398,
+ "total": 3576
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 80,
+ "total": 86
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 242,
+ "default": 4250,
+ "total": 4492
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575390,
+ "username": "mdedeu",
+ "fullName": "mdedeu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71cf96d6e9c3efaa1c23414185df79fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 481
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 481
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 470,
+ "total": 481
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 552,
+ "total": 565
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 150,
+ "total": 150
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 470,
+ "total": 481
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681496,
+ "username": "meecit",
+ "fullName": "meecit",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9e658bd4c94b654695626f0dbf66588f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581334,
+ "username": "mehdi140",
+ "fullName": "mehdi140",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2f1f84aa560f49e21becb5d11922adf1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14510648,
+ "username": "mexmas",
+ "fullName": "mexmas",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/162cc4b4f3d25644baeb3fb7a71885fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 33,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 33,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779688,
+ "username": "michaelmeli",
+ "fullName": "michaelmeli",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/359dabbe068e2581c31d896b17648203?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 93
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 93
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730314,
+ "username": "miekemouse123",
+ "fullName": "miekemouse123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f13e090b894e27d422d9e2b74e50837c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3174
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3174
+ },
+ "translated": {
+ "tmMatch": 90,
+ "default": 3084,
+ "total": 3174
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 2633,
+ "total": 2699
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 2769,
+ "total": 2772
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 90,
+ "default": 3084,
+ "total": 3174
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14963607,
+ "username": "mikemathu",
+ "fullName": "mikemathu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c9e749d43014399a8522ab1a446332c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 211,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 211,
+ "total": 211
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 211,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855294,
+ "username": "mikoto_1110",
+ "fullName": "mikoto_1110",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855294/medium/31cdc00d3b06b364eb79cd47e3e25812.jpg",
+ "preTranslated": 0,
+ "totalCosts": 911
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 911
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 903,
+ "total": 911
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 1657,
+ "total": 1672
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 903,
+ "total": 911
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14742660,
+ "username": "minduskyx",
+ "fullName": "minduskyx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6b5766dca0cc5abb066b7953b7c9acb3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14570128,
+ "username": "mingxvsky",
+ "fullName": "mingxvsky",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4303a7b94aeb60e8dd6a9d428cec14f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14369986,
+ "username": "miroelfj",
+ "fullName": "miroelfj",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/06a74f0fe0a357ebbfc23eaed729f543?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 4,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 4,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 4,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14700162,
+ "username": "mitop",
+ "fullName": "mitop",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6cf8edd767c76e0bed156f75f57a133c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750688,
+ "username": "mjtbkh",
+ "fullName": "mjtbkh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3b7400ed00e57c04004da965a90efd20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 845
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 845
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 829,
+ "total": 845
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 924,
+ "total": 944
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 829,
+ "total": 845
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14739786,
+ "username": "mk.marcus.aurelius",
+ "fullName": "mk.marcus.aurelius",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1b914fae12fe32fd81ac108fa62b5d3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14091097,
+ "username": "mm319",
+ "fullName": "mm319",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bdac44f8d43892bc782c768b6bb2ef18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 431
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 431
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 431,
+ "total": 431
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 338,
+ "total": 338
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 431,
+ "total": 431
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815610,
+ "username": "mnw586",
+ "fullName": "mnw586",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/690011ed4104436727a2a5c7c64962fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 127
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14052002,
+ "username": "modartoken",
+ "fullName": "modartoken",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/94f294d32c08b4e1984053b2910d76f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 32,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 31,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 32,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14254558,
+ "username": "mofriy",
+ "fullName": "mofriy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0a42057e1f7dbba20a96661f945da4ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14604346,
+ "username": "mohameou",
+ "fullName": "mohameou",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604346/medium/5a2b46b25f20ff1aa61656a57ede9b30.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 296
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 296
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 290,
+ "total": 296
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 266,
+ "total": 272
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 230,
+ "total": 230
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 290,
+ "total": 296
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023979,
+ "username": "moirauche",
+ "fullName": "moirauche",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/10382b9429b35bf72d096b02d923c250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1389
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1389
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 1386,
+ "total": 1389
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 1471,
+ "total": 1474
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 452,
+ "total": 452
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 1386,
+ "total": 1389
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14627648,
+ "username": "morwena",
+ "fullName": "morwena",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/88db9f591e6cb69dff56fdbbb76ccb48?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 234
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 234
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 233,
+ "total": 234
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 193,
+ "total": 195
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 233,
+ "total": 234
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14580234,
+ "username": "mouneer",
+ "fullName": "mouneer",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/003a97f237eb7d3e3a88c2ef122062ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1653
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1653
+ },
+ "translated": {
+ "tmMatch": 182,
+ "default": 1471,
+ "total": 1653
+ },
+ "targetTranslated": {
+ "tmMatch": 198,
+ "default": 1498,
+ "total": 1696
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 63,
+ "total": 65
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 182,
+ "default": 1471,
+ "total": 1653
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028277,
+ "username": "mowaii",
+ "fullName": "mowaii",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/01a6398959b9c93dcc3ed0f406eb857a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14947627,
+ "username": "mrchopin",
+ "fullName": "mrchopin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/200e25db33a4d48ead32de8fe15ce9a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 42,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 41,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 42,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820540,
+ "username": "mrh",
+ "fullName": "mrh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b17e704d6b4f70077184377b24f66d66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 18,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681576",
- "username": "lovemeso1987",
- "fullName": "Сергей Степенный (lovemeso1987)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681576/medium/99ebf0bdafa267b87d96d7ef29461f2a.jpeg",
- "joined": "2021-03-24 07:40:55"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14598082,
+ "username": "mrip03",
+ "fullName": "mrip03",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ebe2b0d1b7864bf997b429ea6dce4f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 747
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 747
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 736,
+ "total": 747
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 868,
+ "total": 893
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 736,
+ "total": 747
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675062,
+ "username": "msjadidi",
+ "fullName": "msjadidi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ae0951fda66a455af68b6e18ea661c96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 18,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13854995,
+ "username": "muten85",
+ "fullName": "muten85",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13854995/medium/201d1d1193a904192e9d8a18d70d0556.png",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14427020,
+ "username": "mvelebit",
+ "fullName": "mvelebit",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8b3c7265b6372156c006785b501942b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 900
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 900
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 886,
+ "total": 900
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 851,
+ "total": 865
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 886,
+ "total": 900
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14638362,
+ "username": "mystab",
+ "fullName": "mystab",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9400dad4b207a0c24821e25142549220?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 294
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 294
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 294,
+ "total": 294
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 310,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 294,
+ "total": 294
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14822228,
+ "username": "nTaco",
+ "fullName": "nTaco",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/38cbc3eeebaf79b33d9901249efad48f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 35,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 104,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 35,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13965641,
+ "username": "nake13",
+ "fullName": "nake13",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d7d36059be41bbf404955ead3cad9087?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 70,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 125,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 70,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14594710,
+ "username": "nataliab",
+ "fullName": "nataliab",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/971af6cb5873875156c3d37c59745fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2291
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2291
+ },
+ "translated": {
+ "tmMatch": 113,
+ "default": 2178,
+ "total": 2291
+ },
+ "targetTranslated": {
+ "tmMatch": 111,
+ "default": 1974,
+ "total": 2085
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 260,
+ "total": 262
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 113,
+ "default": 2178,
+ "total": 2291
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951039,
+ "username": "nataliia.diakiv",
+ "fullName": "nataliia.diakiv",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/815642073295ce00115a32e42bd49a3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 706
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 706
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 699,
+ "total": 706
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 583,
+ "total": 588
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 160,
+ "total": 163
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 699,
+ "total": 706
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14970317,
+ "username": "natsnats",
+ "fullName": "natsnats",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970317/medium/3bf7365a2c248c83944a92590efecbdf.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 12,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14306622,
+ "username": "navya_teja",
+ "fullName": "navya_teja",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7b9c039f4022ec3998e965caee5b1e50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 327
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 327
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 275,
+ "total": 327
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 302,
+ "total": 368
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 275,
+ "total": 327
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14919827,
+ "username": "nbshaoye123",
+ "fullName": "nbshaoye123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/47364ac3d421a00d86b80f51355e4a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14705756,
+ "username": "near_",
+ "fullName": "near_",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705756/medium/291add958fcab6d68ed7be8fdf4fbc73.jpg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14813110,
+ "username": "nefcorp",
+ "fullName": "nefcorp",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cdb2e3e35746dffd44051a409a082939?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14912999,
+ "username": "nemetz83",
+ "fullName": "nemetz83",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1ef6670a20f27964e1859f46824d0774?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 530
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 530
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 526,
+ "total": 530
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 418,
+ "total": 424
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 526,
+ "total": 530
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035233,
+ "username": "neoneo",
+ "fullName": "neoneo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d55b6ff26807dd7a1471fe28dfe8faf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 321
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 321
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 321,
+ "total": 321
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 305,
+ "total": 305
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 321,
+ "total": 321
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950595,
+ "username": "nicerca",
+ "fullName": "nicerca",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e9fa89ad02c6b6c2f73016f057e74a7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 65,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 77,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 65,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14723652,
+ "username": "nigthguarder",
+ "fullName": "nigthguarder",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9ed9f22ebeb82c371b8a30a4d9c28fb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 449
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 449
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 436,
+ "total": 449
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 361,
+ "total": 376
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 436,
+ "total": 449
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13583128,
+ "username": "nikaose",
+ "fullName": "nikaose",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8797df9c6783cbd1053c886e2916af38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 30,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 30,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14668094,
+ "username": "nikkikedia",
+ "fullName": "nikkikedia",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ace33e47f779c0731181ae17eae6547c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708254,
+ "username": "nilsdethlefsen",
+ "fullName": "nilsdethlefsen",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5c1b5ce5f7a6b8c097158de47f6e8bc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 31,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 27,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 31,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14467440,
+ "username": "nivetha23",
+ "fullName": "nivetha23",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/72a722999233fec71aee226dab24f3f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 13,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14370922,
+ "username": "nonthawat37",
+ "fullName": "nonthawat37",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/91108541bfd24eaa1c6fdef1308f8bd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031780",
- "username": "Rajeshkushvahav",
- "fullName": "Rajeshkushvahav",
- "avatarUrl": "https://www.gravatar.com/avatar/3d9146116712d70e438935a5c630916d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-06 14:16:10"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669614,
+ "username": "nosferatu500",
+ "fullName": "nosferatu500",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/466b11a9f99fc85d8d6c34495082fd7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 73
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 73
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 60,
+ "total": 73
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 59,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 60,
+ "total": 73
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14947743,
+ "username": "notcoolnickname",
+ "fullName": "notcoolnickname",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d4d20425b5dfb7deb4b4956c7e5e382?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 409
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 409
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 403,
+ "total": 409
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 334,
+ "total": 340
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 403,
+ "total": 409
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623006,
+ "username": "nuke_stan",
+ "fullName": "nuke_stan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/605676bbe3582a9f48a17f150080aa33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 422
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 422
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 415,
+ "total": 422
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 377,
+ "total": 385
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 415,
+ "total": 422
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14178915,
+ "username": "nyctophilia",
+ "fullName": "nyctophilia",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14178915/medium/b2ba2bc5aeeb3a281024f7eb55e3862f.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14659526,
+ "username": "o7__o7",
+ "fullName": "o7__o7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/823385d0a4c6221b07ebb09440d38160?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1576
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1576
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 1554,
+ "total": 1576
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 1405,
+ "total": 1431
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 362,
+ "total": 371
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 1554,
+ "total": 1576
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14736478,
+ "username": "ogander",
+ "fullName": "ogander",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/894f54abd346f9c2956b14afb644847e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786572,
+ "username": "ohmygosh",
+ "fullName": "ohmygosh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b304387a3d7f3421a5b6dbed250f7f67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 447
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 447
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 447,
+ "total": 447
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 462,
+ "total": 462
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 447,
+ "total": 447
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914311,
+ "username": "oleglody",
+ "fullName": "oleglody",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/88d1f74e942037fae969788836f15005?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 58,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 75,
+ "total": 77
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 58,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14658870,
+ "username": "oleksiy060r",
+ "fullName": "oleksiy060r",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/028b7e8eebf57cbc3b3f27848b70b783?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13317516,
+ "username": "olka",
+ "fullName": "olka",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13317516/medium/de56e77543599bd2c434479001852e5b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028385,
+ "username": "oriolbcn",
+ "fullName": "oriolbcn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c832775578714077b8e76c46d57276f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1667
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1667
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 1642,
+ "total": 1667
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 1887,
+ "total": 1914
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 1642,
+ "total": 1667
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14133051,
+ "username": "overweight305",
+ "fullName": "overweight305",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14133051/medium/67b22623472fbcd3604eecbcd547821a.png",
+ "preTranslated": 0,
+ "totalCosts": 301
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 301
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 279,
+ "total": 301
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 378,
+ "total": 407
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 279,
+ "total": 301
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14908477,
+ "username": "pamir04",
+ "fullName": "pamir04",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d0aa145db5cf0cb5ae0d4f30f63284e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 34,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 39,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 34,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14781478,
+ "username": "pantherax",
+ "fullName": "pantherax",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1352f74fc2d80f346e7ec67cd650d1da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14692054,
+ "username": "pascua",
+ "fullName": "pascua",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e206c8fd0dd6bc00372d63523f1a9323?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978565,
+ "username": "paulDE",
+ "fullName": "paulDE",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e610595f1678b9c8d02ad759c0944182?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 466
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 466
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 410,
+ "total": 466
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 399,
+ "total": 448
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 410,
+ "total": 466
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13960593,
+ "username": "pedrosoft",
+ "fullName": "pedrosoft",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13960593/medium/b8f8b7bcf3d412cffe6ac3d93183cad2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690748,
+ "username": "penglaishan.cn",
+ "fullName": "penglaishan.cn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690748/medium/dd3be098cca6b66915e02147fd6407e7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3158
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3158
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 3087,
+ "total": 3158
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 4491,
+ "total": 4601
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 191,
+ "total": 194
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 3087,
+ "total": 3158
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14122089,
+ "username": "perfor_001",
+ "fullName": "perfor_001",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c72f3e18b62a6d719cf089c56d677825?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13980841,
+ "username": "phernandes277",
+ "fullName": "phernandes277",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/44755ec05f9c60c54ddba8eda72bfde1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951383,
+ "username": "pieter-astra",
+ "fullName": "pieter-astra",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/73945ec73cbd868260048cbaad582e71?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 717
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 717
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 709,
+ "total": 717
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 732,
+ "total": 740
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 158,
+ "total": 166
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 709,
+ "total": 717
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12817692,
+ "username": "poltoray",
+ "fullName": "poltoray",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/588c81f1c401f3512b1e7a4466e68485?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575508,
+ "username": "portovino881",
+ "fullName": "portovino881",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c98b81402cb632310a58924819bf2136?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 2,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 4,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 2,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003105,
+ "username": "pouria.mirzaei",
+ "fullName": "pouria.mirzaei",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e766286d4eb36f973ca935e3acb9c23b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 275
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 275
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 268,
+ "total": 275
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 363,
+ "total": 372
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 268,
+ "total": 275
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14625200,
+ "username": "preh",
+ "fullName": "preh",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625200/medium/019e9dcec2f0c3c2fd90ff0316e3f4f0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 119
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 116,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 121,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 116,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14317146,
+ "username": "prk2020",
+ "fullName": "prk2020",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/63bb17d02e8d09690905276b54cb2b7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033497,
+ "username": "programonauta",
+ "fullName": "programonauta",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/358ba475fad48e1783afe977706d1c7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14547590,
+ "username": "q00n",
+ "fullName": "q00n",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/859a56cd2c2b0277865d6e2e3829e13a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 246
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 246
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 245,
+ "total": 246
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 218,
+ "total": 221
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 245,
+ "total": 246
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632530,
+ "username": "qqcdf",
+ "fullName": "qqcdf",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/325ed382b117de8cd456207baf839b88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 177,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 113,
+ "total": 113
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14817332,
+ "username": "quietude.kid",
+ "fullName": "quietude.kid",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d150a330890d8a313a0841870c6ad4ff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 51
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 48,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 98,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 48,
+ "total": 51
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950579,
+ "username": "r1ngetsu",
+ "fullName": "r1ngetsu",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950579/medium/e82f10a8d70c5bac37522b8ff1100ab8.png",
+ "preTranslated": 0,
+ "totalCosts": 1689
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1689
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 1667,
+ "total": 1689
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 1299,
+ "total": 1323
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 14,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 1667,
+ "total": 1689
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003267,
+ "username": "r_victory",
+ "fullName": "r_victory",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003267/medium/4137644ea8974a0c3d2a8c73b189d7c5.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14947603,
+ "username": "ralfy00",
+ "fullName": "ralfy00",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ba9ceea585557b3cbd8bda53d4733235?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 164
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 164
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 164,
+ "total": 164
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 154,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 164,
+ "total": 164
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730558,
+ "username": "ram0304",
+ "fullName": "ram0304",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/df5136e2d6fb7371c6104d5a582cd573?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 51,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14657558,
+ "username": "ravalsta",
+ "fullName": "ravalsta",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1ada6897e49ea580b390abf58cbad551?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1305
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1305
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 1256,
+ "total": 1305
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 1114,
+ "total": 1159
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 238,
+ "total": 243
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 1256,
+ "total": 1305
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14602998,
+ "username": "ravraw",
+ "fullName": "ravraw",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d6db81005b3bc860e5ec87357925a55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 10,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 10,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14697378,
+ "username": "raxveil",
+ "fullName": "raxveil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bb6d2c3e9e7661448365f2cf3d739e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1718
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1718
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 1683,
+ "total": 1718
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 1350,
+ "total": 1375
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 1683,
+ "total": 1718
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14685344,
+ "username": "reachfem24",
+ "fullName": "reachfem24",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f3a85193c5702af124605202ef74ead5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13925029,
+ "username": "retzger",
+ "fullName": "retzger",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13925029/medium/4e55c5a9398e56ef1a3039b76a81f120.png",
+ "preTranslated": 0,
+ "totalCosts": 253
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 214
+ },
+ "translated": {
+ "tmMatch": 134,
+ "default": 80,
+ "total": 214
+ },
+ "targetTranslated": {
+ "tmMatch": 243,
+ "default": 136,
+ "total": 379
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 134,
+ "default": 80,
+ "total": 214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14953599",
- "username": "shurik2186",
- "fullName": "Александр Денисенко (shurik2186)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953599/medium/a18f417d21a3e69e80bc7326877a9a27.png",
- "joined": "2021-10-07 08:59:54"
- },
- "languages": [
+ "language": {
+ "id": "ru-UA",
+ "name": "Russian, Ukraine",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 31,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 33,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 31,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14869408,
+ "username": "rezaabbasian",
+ "fullName": "rezaabbasian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f27f8b419424846d12212697a4cc9752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13843383,
+ "username": "rezarria",
+ "fullName": "rezarria",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13843383/medium/d397cd99de14a9d74f3962239e0db91a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958659,
+ "username": "rhswe",
+ "fullName": "rhswe",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958659/medium/8c1b0ec38bcb7f3fa9041e918949c5c8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1711
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1711
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1699,
+ "total": 1711
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 1660,
+ "total": 1671
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 869,
+ "total": 881
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1699,
+ "total": 1711
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750504,
+ "username": "rishitsaraf",
+ "fullName": "rishitsaraf",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/06113f768b3e9b14f98d0d5bacf49201?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 34,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 56,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 34,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14766776,
+ "username": "rociodg",
+ "fullName": "rociodg",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/09514e41728e92cdf81fb58b8f487408?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 618
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 618
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 615,
+ "total": 618
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 679,
+ "total": 688
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 615,
+ "total": 618
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771800,
+ "username": "rtree",
+ "fullName": "rtree",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4693242a4c7bc7ca86e6f639e507d8a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 76,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 202,
+ "total": 205
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 76,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14009413,
+ "username": "rukuiza",
+ "fullName": "rukuiza",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14009413/medium/1b2bfe82608da50af9bc1ec3e8636706.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 705
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 705
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 688,
+ "total": 705
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 629,
+ "total": 646
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 688,
+ "total": 705
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665962,
+ "username": "sadegh7708",
+ "fullName": "sadegh7708",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/da53f0ad022fda6679397596fd283ae5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14551426,
+ "username": "sady.souza",
+ "fullName": "sady.souza",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ef5237fbd889fbc625756d68ad63a5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2432
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2432
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 2397,
+ "total": 2432
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 2590,
+ "total": 2631
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 2397,
+ "total": 2432
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14284870,
+ "username": "saiharsha_b",
+ "fullName": "saiharsha_b",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1929a916f567afa637913b7c92537d57?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 1,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 1,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 1,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14047252,
+ "username": "saksmm",
+ "fullName": "saksmm",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7bbd67e605d8c4f79153ac6d5a7aa740?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 102
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 102
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 101,
+ "total": 102
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 172,
+ "total": 174
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 101,
+ "total": 102
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14797974,
+ "username": "salehtavakoli",
+ "fullName": "salehtavakoli",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/beabe6ead932a8557c4b62793e499e4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 99,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 122,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 99,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558246,
+ "username": "samgaspa123",
+ "fullName": "samgaspa123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/385b6e54a9d8d0c144243f11d0f63e76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14864742,
+ "username": "samson7125",
+ "fullName": "samson7125",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c27132d583ad290cc5c6e3db6b760069?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2510
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2510
+ },
+ "translated": {
+ "tmMatch": 50,
+ "default": 2460,
+ "total": 2510
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 1925,
+ "total": 1978
+ },
+ "translatedByMt": {
+ "tmMatch": 26,
+ "default": 1570,
+ "total": 1596
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 50,
+ "default": 2460,
+ "total": 2510
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14039178,
+ "username": "sandy_sung",
+ "fullName": "sandy_sung",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7c96f2a8b23f9ee8db66ab0b0fd1c5ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4185
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4185
+ },
+ "translated": {
+ "tmMatch": 483,
+ "default": 3702,
+ "total": 4185
+ },
+ "targetTranslated": {
+ "tmMatch": 744,
+ "default": 4866,
+ "total": 5610
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 483,
+ "default": 3702,
+ "total": 4185
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14026594,
+ "username": "sandykay26",
+ "fullName": "sandykay26",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/584a93747fd00cb12dd8f412bd9ec511?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 1,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 1,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 1,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14140949,
+ "username": "sendrosand",
+ "fullName": "sendrosand",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9a1c63f4710562c5073813134e7bf39a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14046408,
+ "username": "senno.schuttel",
+ "fullName": "senno.schuttel",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/242d7fbeeb72f39d2f30629ae7fb04bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14614008,
+ "username": "serkandemir",
+ "fullName": "serkandemir",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/59e47ec5960b9006dc7e3db57d4d077e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 22,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 170,
+ "default": 286,
+ "total": 456
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 22,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030189,
+ "username": "seshasri",
+ "fullName": "seshasri",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bf6eab15bd0d4c2712b91ea83172f980?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14726760,
+ "username": "setiawanst",
+ "fullName": "setiawanst",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726760/medium/5b90f1769b62ac80a10233b8b9558eed.jpg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15004157,
+ "username": "seventeenfive36",
+ "fullName": "seventeenfive36",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f61cd2c2dfe9ab7fb8ff014cfcf64596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 803
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 803
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 775,
+ "total": 803
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 701,
+ "total": 730
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 567,
+ "total": 580
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 775,
+ "total": 803
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036355,
+ "username": "sgamb",
+ "fullName": "sgamb",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2bd38a1873d67e93283f57eed1690248?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14589096,
+ "username": "shadowmonarch",
+ "fullName": "shadowmonarch",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14589096/medium/e625e2e3f8e2d7a5b2a351a5bfe34341.jpg",
+ "preTranslated": 0,
+ "totalCosts": 158
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 158
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 155,
+ "total": 158
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 141,
+ "total": 144
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 155,
+ "total": 158
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14728354,
+ "username": "shenglim",
+ "fullName": "shenglim",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/49d5ce3fdc3a6faa8e8bf10cb6340dfe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953407,
+ "username": "shuric31",
+ "fullName": "shuric31",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dcb97972b62b20ca269f5ed21b9bb7d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 482
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 482
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 482,
+ "total": 482
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 435,
+ "total": 435
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 482,
+ "total": 482
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582910,
+ "username": "sier_892",
+ "fullName": "sier_892",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2671bb67df5a9829c3515551cc86026d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 152
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 152
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 149,
+ "total": 152
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 130,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 149,
+ "total": 152
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13389283,
+ "username": "sirrius",
+ "fullName": "sirrius",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f8550157051d28281f853a9a37809118?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 198
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 198
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 196,
+ "total": 198
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 203,
+ "total": 205
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 196,
+ "total": 198
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034331,
+ "username": "sjadrzvani1998",
+ "fullName": "sjadrzvani1998",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f5eb76929dad34e5283b059b1a231d88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14946413,
+ "username": "slimShadyxx",
+ "fullName": "slimShadyxx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aeeec2c6e5f349c95b7229de7c8dcee4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 19,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 28,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 19,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14586030,
+ "username": "smolpadok",
+ "fullName": "smolpadok",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586030/medium/3f48fc620d6f916aa24dd17f8777e487.png",
+ "preTranslated": 0,
+ "totalCosts": 7497
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7497
+ },
+ "translated": {
+ "tmMatch": 238,
+ "default": 7259,
+ "total": 7497
+ },
+ "targetTranslated": {
+ "tmMatch": 234,
+ "default": 6974,
+ "total": 7208
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 238,
+ "default": 7259,
+ "total": 7497
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902198,
+ "username": "sobna123lampa",
+ "fullName": "sobna123lampa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f51085ad1e1a530e652e6b6ecd1b9296?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 410
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 410
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 409,
+ "total": 410
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 290,
+ "total": 291
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 409,
+ "total": 410
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14827052,
+ "username": "spargwy",
+ "fullName": "spargwy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb7d685a05c3711249dd58fef854c9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 131,
+ "total": 141
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12343167,
+ "username": "spolischook",
+ "fullName": "spolischook",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e106204e09df019627176fcfddcd6f7b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 139,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 110,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 139,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14564316,
+ "username": "stevenvanroye",
+ "fullName": "stevenvanroye",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a33de30cb8f40f80ac0b193d184bf4de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 111
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 111
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 95,
+ "total": 111
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 96,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 42,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 95,
+ "total": 111
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15027127,
+ "username": "sunnyyyc",
+ "fullName": "sunnyyyc",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e4592835622152ea1bb4e87ca028bed8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 20,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950947,
+ "username": "suslenskaya19",
+ "fullName": "suslenskaya19",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950947/medium/fa36c8a3dfb13be9af009f92644e8cd9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1248
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 1222,
+ "total": 1248
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 1050,
+ "total": 1073
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 233,
+ "total": 235
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 1222,
+ "total": 1248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13731191,
+ "username": "syahmin",
+ "fullName": "syahmin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/04ff2c9453e2fc98ec6c11e5a1d21441?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 62,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 58,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 62,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14312798,
+ "username": "tabarca",
+ "fullName": "tabarca",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312798/medium/5489a2aa359edfac235ad14726adcbb0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 25,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 7199,
+ "default": 648,
+ "total": 7847
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 9,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 25,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14613592,
+ "username": "talipcakir",
+ "fullName": "talipcakir",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0e69b48581847d1e15c5352d94454c44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950177,
+ "username": "tapioka84",
+ "fullName": "tapioka84",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cbf38ef6587462d281c1e90c068b9cde?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 387
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 387
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 387,
+ "total": 387
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 377,
+ "total": 377
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 387,
+ "total": 387
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14130355,
+ "username": "tawanclubzaa",
+ "fullName": "tawanclubzaa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9ddbbf6ccca3a87e2da160acc0eefa68?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 851
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 851
+ },
+ "translated": {
+ "tmMatch": 172,
+ "default": 679,
+ "total": 851
+ },
+ "targetTranslated": {
+ "tmMatch": 165,
+ "default": 679,
+ "total": 844
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 172,
+ "default": 679,
+ "total": 851
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735992,
+ "username": "tcmpasq",
+ "fullName": "tcmpasq",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735992/medium/4d084cf7bbb19395652e6bae9d61873c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 163
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 163
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 109,
+ "total": 163
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 103,
+ "total": 140
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 109,
+ "total": 163
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563036,
+ "username": "terasum",
+ "fullName": "terasum",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/987a64d0130d1092613c7679a1eeb30c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 82
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 82
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 77,
+ "total": 82
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 146,
+ "total": 156
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 77,
+ "total": 82
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14757734,
+ "username": "thescootercooter",
+ "fullName": "thescootercooter",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5ed89503f17d635ea390409a911fc7f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 164
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498820",
- "username": "ambarrojas24",
- "fullName": "Ámbar Rojas (ambarrojas24)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498820/medium/5cc6f73e96e92d4bc0ec93c9bb0a7547.jpeg",
- "joined": "2020-11-16 19:37:40"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 158
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 158,
+ "total": 158
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 233,
+ "total": 233
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 158,
+ "total": 158
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14812604,
+ "username": "tjesco75",
+ "fullName": "tjesco75",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f9269b3383b308eae1ca50ae7ac3b85c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 40,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 40,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14697934,
+ "username": "tlqcfr",
+ "fullName": "tlqcfr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e51c31a7804d94b1bd4aef101830b639?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14555766,
+ "username": "tokuryoo",
+ "fullName": "tokuryoo",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555766/medium/c3219692eb549ef2a8ed8cb1f745db3e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9248
+ },
+ "translated": {
+ "tmMatch": 226,
+ "default": 9022,
+ "total": 9248
+ },
+ "targetTranslated": {
+ "tmMatch": 714,
+ "default": 26085,
+ "total": 26799
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 567,
+ "total": 569
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 226,
+ "default": 9022,
+ "total": 9248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023365,
+ "username": "tomworxs",
+ "fullName": "tomworxs",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d58e0868ecaa2277d865042e97a961b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 462
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 462
+ },
+ "translated": {
+ "tmMatch": 96,
+ "default": 366,
+ "total": 462
+ },
+ "targetTranslated": {
+ "tmMatch": 142,
+ "default": 374,
+ "total": 516
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 96,
+ "default": 366,
+ "total": 462
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14548152,
+ "username": "tonisanchezdev",
+ "fullName": "tonisanchezdev",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548152/medium/db8b130a43f224e86ee40f329ed4d115.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 11,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820344,
+ "username": "tonylove0505",
+ "fullName": "tonylove0505",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bc3bbdc8c35b53244941d817e8779ac7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1267,
+ "total": 1267
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14599908,
+ "username": "translate.yandex.ru",
+ "fullName": "translate.yandex.ru",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c36c6dee92844a8b37472fe2637b4268?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 468
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 468
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 465,
+ "total": 468
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 396,
+ "total": 398
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 465,
+ "total": 468
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915807,
+ "username": "tsangz189",
+ "fullName": "tsangz189",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f00088ffdad322e46c3e2eb701b4d192?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 51,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14909647,
+ "username": "tszar",
+ "fullName": "tszar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d1a316a5f6951054e644a5eb673d5642?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895552,
+ "username": "tutkun123",
+ "fullName": "tutkun123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f3ea21ea1a9e2d03dc444f6a834df729?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1217
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1217
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 1213,
+ "total": 1217
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 1015,
+ "total": 1019
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 1213,
+ "total": 1217
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14231160,
+ "username": "twkgau",
+ "fullName": "twkgau",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/78fa372c5283a44f48b49b0cbcf4bd42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 15,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 24,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 15,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14792498,
+ "username": "tyevlag",
+ "fullName": "tyevlag",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/16e0cdde1a9cb6ce5788ff1f24cb89f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 21646
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21646
+ },
+ "translated": {
+ "tmMatch": 238,
+ "default": 21408,
+ "total": 21646
+ },
+ "targetTranslated": {
+ "tmMatch": 342,
+ "default": 27884,
+ "total": 28226
+ },
+ "translatedByMt": {
+ "tmMatch": 91,
+ "default": 8185,
+ "total": 8276
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 238,
+ "default": 21408,
+ "total": 21646
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14672492,
+ "username": "ukhack",
+ "fullName": "ukhack",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ca3545be49d2d0807fcbb9f6435a3ff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 2,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678636,
+ "username": "ukmv",
+ "fullName": "ukmv",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d99ee381142524eea505c08d8b55d338?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 630
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 630
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 625,
+ "total": 630
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 467,
+ "total": 471
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 41,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 625,
+ "total": 630
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14948857,
+ "username": "ultralord97",
+ "fullName": "ultralord97",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0ba5ca3f7651df45d91f39bad69bd47a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 408
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 408
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 407,
+ "total": 408
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 409,
+ "total": 410
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 407,
+ "total": 408
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14936979,
+ "username": "ultranod",
+ "fullName": "ultranod",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9a6eff6771b117d40d9ead9c2329295f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572104,
+ "username": "unoreg1",
+ "fullName": "unoreg1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aba0180480f2f8c0f00a6fa110a9949c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 141
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 113,
+ "total": 141
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 105,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 32,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 113,
+ "total": 141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14706598,
+ "username": "uricata",
+ "fullName": "uricata",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c89771e0a5a03ba90fe8c3cbf7c5a798?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 108,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 102,
+ "total": 102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 108,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14123985,
+ "username": "usersolidity",
+ "fullName": "usersolidity",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/95be843a5ab8ae19c478880541aff9c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 57,
+ "default": 30,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 30,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 57,
+ "default": 30,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14586142,
+ "username": "v3rd3",
+ "fullName": "v3rd3",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/98a39eee786541ec7261950f5f022894?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 100,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 105,
+ "total": 108
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 100,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14588544,
+ "username": "vaiven",
+ "fullName": "vaiven",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/190c59bb54537a9090f31e539b09cafe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 137
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 137
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 81,
+ "total": 137
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 86,
+ "total": 148
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 81,
+ "total": 137
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14799412,
+ "username": "vane.dcm",
+ "fullName": "vane.dcm",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799412/medium/77cfcb8d6a2a8bb61519a7a136745224.jpg",
+ "preTranslated": 0,
+ "totalCosts": 349
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 349
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 349,
+ "total": 349
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 357,
+ "total": 357
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 349,
+ "total": 349
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14610064,
+ "username": "varga.vinter",
+ "fullName": "varga.vinter",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14610064/medium/a7f9e7dd43858c4d469d01bebc49d729.jpg",
+ "preTranslated": 0,
+ "totalCosts": 359
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 359
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 357,
+ "total": 359
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 354,
+ "total": 356
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 357,
+ "total": 359
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14693928,
+ "username": "vasilevsky",
+ "fullName": "vasilevsky",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/702c82c246d335fbc786c0f136677ff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 48,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14862460,
+ "username": "vdusart",
+ "fullName": "vdusart",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1e5982486a378fca6ee9afaef32c5482?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 167
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 167
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 167,
+ "total": 167
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 155,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 167,
+ "total": 167
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12700500,
+ "username": "venugopal",
+ "fullName": "venugopal",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/46dfe217f6eac5314f0e9f84d4ed1e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 133
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 103,
+ "total": 133
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 216,
+ "total": 281
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 103,
+ "total": 133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14251100,
+ "username": "victoristocrat",
+ "fullName": "victoristocrat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/474c53c882387965de7241f67e22ba61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 235
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 235
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 234,
+ "total": 235
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 293,
+ "total": 296
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 234,
+ "total": 235
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14648126,
+ "username": "vittoria.f",
+ "fullName": "vittoria.f",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648126/medium/7a5e23a63ce4d36422d0adb108c16ea0.png",
+ "preTranslated": 0,
+ "totalCosts": 122
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 122
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 121,
+ "total": 122
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 109,
+ "total": 110
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 121,
+ "total": 122
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553182,
+ "username": "vivekb",
+ "fullName": "vivekb",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5a348707da8d1a1a44972442e2f73d02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 203
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 203
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 202,
+ "total": 203
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 319,
+ "total": 320
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 202,
+ "total": 203
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14800544,
+ "username": "vj-codes",
+ "fullName": "vj-codes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1801099ce8fed3e7e395524675b7c332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 805
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 129,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 222,
+ "total": 228
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 129,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985249",
- "username": "Venenosa03",
- "fullName": "Samantha H. (Venenosa03)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985249/medium/bb7a19c923d2a36d7c69d2b92f448c17.jpeg",
- "joined": "2021-11-01 08:14:39"
- },
- "languages": [
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 673
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 635,
+ "total": 673
+ },
+ "targetTranslated": {
+ "tmMatch": 75,
+ "default": 1025,
+ "total": 1100
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 6,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 635,
+ "total": 673
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14971421,
+ "username": "vlahnina",
+ "fullName": "vlahnina",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a01a781871bc50e4400dbfdb996fcec5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987673,
+ "username": "vlunaram",
+ "fullName": "vlunaram",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d436fcb22ecfe2eaf1f7b3ccfb530cd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15012463,
+ "username": "wanna_bee",
+ "fullName": "wanna_bee",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c94006ffc800b682bcec23252528cdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2362
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 2327,
+ "total": 2362
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 2085,
+ "total": 2127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 2327,
+ "total": 2362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973323,
+ "username": "wealeyasilva87",
+ "fullName": "wealeyasilva87",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9b3a449cba7652f602deeecd41eca479?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14824370,
+ "username": "wholopes",
+ "fullName": "wholopes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9f5e4a75b583d8871359b17023f3712b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 236
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 236
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 236,
+ "total": 236
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 238,
+ "total": 238
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 236,
+ "total": 236
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959345,
+ "username": "will17",
+ "fullName": "will17",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/75985612c9ae20b39b4703866e19899d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 549
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 549
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 543,
+ "total": 549
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 531,
+ "total": 537
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 543,
+ "total": 549
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14791370,
+ "username": "williamx",
+ "fullName": "williamx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4eb4b1506023a58feece224f73949a43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1800
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1800
+ },
+ "translated": {
+ "tmMatch": 247,
+ "default": 1553,
+ "total": 1800
+ },
+ "targetTranslated": {
+ "tmMatch": 303,
+ "default": 1575,
+ "total": 1878
+ },
+ "translatedByMt": {
+ "tmMatch": 33,
+ "default": 1363,
+ "total": 1396
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 247,
+ "default": 1553,
+ "total": 1800
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025129,
+ "username": "willianpaixao",
+ "fullName": "willianpaixao",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c3fa9a3959a870790d96b08e7fbce05?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 44,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 49,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 44,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14402352,
+ "username": "winkybupt",
+ "fullName": "winkybupt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f8437629a6bbe3dba71dee7eb19a2bbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1212
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1212
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 1210,
+ "total": 1212
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 1669,
+ "total": 1671
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 1210,
+ "total": 1212
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678674,
+ "username": "wl10909",
+ "fullName": "wl10909",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/64ce708a727f9223a497e4cf8bdfd3c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14644426,
+ "username": "wode",
+ "fullName": "wode",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6fd40beebf809e90df044c81433928f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14695500,
+ "username": "wuhjie",
+ "fullName": "wuhjie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a714b8339e9f214d7f577c93230fd5ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 10,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677006,
+ "username": "wvdgoot",
+ "fullName": "wvdgoot",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e03ead5e4d316ee864fce34f6dd65f52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 770
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 770
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 761,
+ "total": 770
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 765,
+ "total": 774
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 101,
+ "total": 101
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 761,
+ "total": 770
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959473,
+ "username": "xaler",
+ "fullName": "xaler",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e0b31348b98eb415336505db3b130695?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 739
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 739
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 727,
+ "total": 739
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 801,
+ "total": 817
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 727,
+ "total": 739
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987791,
+ "username": "xefert",
+ "fullName": "xefert",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6a068cdf2e1768eeb6467c8ff06582d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1978
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1978
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 1961,
+ "total": 1978
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 2330,
+ "total": 2345
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 1919,
+ "total": 1925
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 1961,
+ "total": 1978
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902838,
+ "username": "xl11sunny",
+ "fullName": "xl11sunny",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67f7e8245031387087e1f6c9e11c1a67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 597
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 597
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 542,
+ "total": 597
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 610,
+ "total": 679
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 542,
+ "total": 597
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029193,
+ "username": "xtrzy",
+ "fullName": "xtrzy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/18b91a7c8dc214ade6b3d23353b8cea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14805648,
+ "username": "xyomega",
+ "fullName": "xyomega",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/517aa8b351cbb0cc04149503ee7d9334?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984177,
+ "username": "yangxiaoyang",
+ "fullName": "yangxiaoyang",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984177/medium/b47ea275e28b376850b3ee05c4f709e3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2207
+ },
+ "translated": {
+ "tmMatch": 120,
+ "default": 2087,
+ "total": 2207
+ },
+ "targetTranslated": {
+ "tmMatch": 128,
+ "default": 1539,
+ "total": 1667
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 120,
+ "default": 2087,
+ "total": 2207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14513238,
+ "username": "yeft",
+ "fullName": "yeft",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/39be11322956e117df828db0396ab2e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959989,
+ "username": "yennis",
+ "fullName": "yennis",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c07bba6a9bf7e875e5cff721b5be7349?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 787
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 787
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 773,
+ "total": 787
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 837,
+ "total": 851
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 773,
+ "total": 787
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820306,
+ "username": "yetangxu",
+ "fullName": "yetangxu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4e66256fbbafcf872ad8db6f07173208?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 373
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 289
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 272,
+ "total": 289
+ },
+ "targetTranslated": {
+ "tmMatch": 155,
+ "default": 614,
+ "total": 769
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 272,
+ "total": 289
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498178",
- "username": "3kqgt0cl",
- "fullName": "Donald Iljazi (3kqgt0cl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498178/medium/17a52dd71aa2eb0f27fae7203510d233.jpg",
- "joined": "2020-11-28 05:18:06"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 84
+ },
+ "translated": {
+ "tmMatch": 41,
+ "default": 43,
+ "total": 84
+ },
+ "targetTranslated": {
+ "tmMatch": 1237,
+ "default": 1324,
+ "total": 2561
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 41,
+ "default": 43,
+ "total": 84
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14758876,
+ "username": "yezgan_16",
+ "fullName": "yezgan_16",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/821b8362ce99a75fa0b2196d4ba13706?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660922,
+ "username": "ysai",
+ "fullName": "ysai",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4f68febf1efc29b70458e1470a703904?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 428
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 428
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 407,
+ "total": 428
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 364,
+ "total": 388
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 407,
+ "total": 428
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14857902,
+ "username": "ytsdts336",
+ "fullName": "ytsdts336",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/20905d99c6ff28b4102d07d51e0af686?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 922
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 922
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 901,
+ "total": 922
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 650,
+ "total": 671
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 901,
+ "total": 922
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13894501,
+ "username": "yuchtyan",
+ "fullName": "yuchtyan",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13894501/medium/beb50eb157c8ed6305719b269fe5e56d.png",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 35,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 35,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14045791,
+ "username": "zabir3",
+ "fullName": "zabir3",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/240afaddfd72387021d4d6adff8a8376?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7176
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7176
+ },
+ "translated": {
+ "tmMatch": 1237,
+ "default": 5939,
+ "total": 7176
+ },
+ "targetTranslated": {
+ "tmMatch": 2198,
+ "default": 9456,
+ "total": 11654
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1237,
+ "default": 5939,
+ "total": 7176
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895934,
+ "username": "zajko",
+ "fullName": "zajko",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a8af8789126977526c620c2bd4b70daa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2487
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2076
+ },
+ "translated": {
+ "tmMatch": 91,
+ "default": 1985,
+ "total": 2076
+ },
+ "targetTranslated": {
+ "tmMatch": 76,
+ "default": 1543,
+ "total": 1619
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 91,
+ "default": 1985,
+ "total": 2076
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14634704",
- "username": "bespredel00",
- "fullName": "bespredel00",
- "avatarUrl": "https://www.gravatar.com/avatar/392560dd397a7b1b81c9cd50ab32736d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 13:03:29"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 411
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 408,
+ "total": 411
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 405,
+ "total": 408
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 408,
+ "total": 411
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814760,
+ "username": "zhaoyonghe",
+ "fullName": "zhaoyonghe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1849350f7cb43f8db85818f35ebc6edf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12427762,
+ "username": "zhous",
+ "fullName": "zhous",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/151b6388b20487473d630f98ddf99805?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 468
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 468
+ },
+ "translated": {
+ "tmMatch": 121,
+ "default": 347,
+ "total": 468
+ },
+ "targetTranslated": {
+ "tmMatch": 216,
+ "default": 618,
+ "total": 834
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 121,
+ "default": 347,
+ "total": 468
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956879,
+ "username": "ztibi",
+ "fullName": "ztibi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6c447b75f354c7bdf296e135abf1928d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 663
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 663
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 663,
+ "total": 663
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 580,
+ "total": 580
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 663,
+ "total": 663
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14726474,
+ "username": "zzhou",
+ "fullName": "zzhou",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5fb2ce40f06959b253dabc90bece479d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 3,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815312,
+ "username": "001-uk_00455358",
+ "fullName": "001-UK_00455358 (001-uk_00455358)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815312/medium/866bc874cf7462eff3219fa2d337e5f2.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 827,
+ "default": 15798,
+ "total": 16625
+ },
+ "targetTranslated": {
+ "tmMatch": 791,
+ "default": 13993,
+ "total": 14784
+ },
+ "translatedByMt": {
+ "tmMatch": 65,
+ "default": 339,
+ "total": 404
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16009
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14802894,
+ "username": "015-uk_0002",
+ "fullName": "015-UK_0002 (015-uk_0002)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802894/medium/588f892df67fca18b552e5c40980776e.png",
+ "preTranslated": 0,
+ "totalCosts": 4993
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4993
+ },
+ "translated": {
+ "tmMatch": 503,
+ "default": 4490,
+ "total": 4993
+ },
+ "targetTranslated": {
+ "tmMatch": 487,
+ "default": 3306,
+ "total": 3793
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 110,
+ "total": 125
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 503,
+ "default": 4490,
+ "total": 4993
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546022,
+ "username": "TKHK4312",
+ "fullName": "104 H17W1 (TKHK4312)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546022/medium/1009bcdd2f3a11a1fdb5ff98ef1f0c50.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 40,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 103,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 32,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 40,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14603560,
+ "username": "1204079083",
+ "fullName": "1204079083",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14603560/medium/b2490ce0ddf53194d18780699c095dd6.png",
+ "preTranslated": 0,
+ "totalCosts": 1130
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1130
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 1128,
+ "total": 1130
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 2011,
+ "total": 2015
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 473,
+ "total": 475
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 1128,
+ "total": 1130
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14640814,
+ "username": "1936094566",
+ "fullName": "1936094566",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640814/medium/cb1747813ca6bdd8c467d6f8edcec19c.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14716724,
+ "username": "3Juhwan",
+ "fullName": "3Juhwan",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14716724/medium/9fa3d45ad0f2a09825dbbdd17edf9a2a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 144
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 144
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 138,
+ "total": 144
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 102,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 138,
+ "total": 144
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14652358,
+ "username": "Iberriak",
+ "fullName": "4 Trastos Agencia Creativa (Iberriak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652358/medium/b670537abb6dfccf1ff57ac170a7d1ee.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 513
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 513
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 504,
+ "total": 513
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 543,
+ "total": 552
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 504,
+ "total": 513
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13976753,
+ "username": "rise_risemary",
+ "fullName": "5cronipod (rise_risemary)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976753/medium/a3f61b480c5030ceaab415b125e68f98.jpg",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 56,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 56,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 56,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14515804,
+ "username": "8QIo1",
+ "fullName": "8QIo1",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515804/medium/ba094da230429b3578e174d3e31fc033.png",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 50,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 50,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 50,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14590594,
+ "username": "choofe.bit",
+ "fullName": "A Sh (choofe.bit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14590594/medium/018e68a4986f8a8c25c4725286123f42.jpg",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 120,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14707230,
+ "username": "M1ting",
+ "fullName": "AKA.miting (M1ting)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707230/medium/ee5de7436e01ca1fae88b235cfa6adec.png",
+ "preTranslated": 0,
+ "totalCosts": 488
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 488
+ },
+ "translated": {
+ "tmMatch": 78,
+ "default": 410,
+ "total": 488
+ },
+ "targetTranslated": {
+ "tmMatch": 144,
+ "default": 674,
+ "total": 818
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 78,
+ "default": 410,
+ "total": 488
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643336,
+ "username": "aliali85",
+ "fullName": "ALI nini (aliali85)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643336/medium/f6ae13593a5587031e0a03633c1d1175.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14740728,
+ "username": "ALixx12",
+ "fullName": "ALixx12",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740728/medium/e68abe778c3d7be95531e372a30169b1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 433
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 433
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 433,
+ "total": 433
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 814,
+ "total": 814
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 433,
+ "total": 433
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725384,
+ "username": "kokxxxxik",
+ "fullName": "ANDRZEJ J. (kokxxxxik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725384/medium/3d95e67f2d0cf018557b337329216fa4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 17,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 16,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 17,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 105,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14372734",
- "username": "nilslberg",
- "fullName": "Nils Lundberg (nilslberg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14372734/medium/8e7ff729c6a37721feec66e8da5f4cbd.jpeg",
- "joined": "2020-08-09 17:46:29"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14454884,
+ "username": "howdyAnkit",
+ "fullName": "ANKIT_PAL (howdyAnkit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14454884/medium/b1d7baf77a5bcf683b116f3ae6052c9d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6867
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6867
+ },
+ "translated": {
+ "tmMatch": 1413,
+ "default": 5454,
+ "total": 6867
+ },
+ "targetTranslated": {
+ "tmMatch": 2358,
+ "default": 8448,
+ "total": 10806
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1413,
+ "default": 5454,
+ "total": 6867
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779546,
+ "username": "arpit.kumar",
+ "fullName": "ARPIT KUMAR (arpit.kumar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779546/medium/1b77f7cf2e4930307ad3dd36345e5017.png",
+ "preTranslated": 0,
+ "totalCosts": 810
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 810
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 792,
+ "total": 810
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 1301,
+ "total": 1335
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 792,
+ "total": 810
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036539,
+ "username": "0xAMarshe",
+ "fullName": "AXMarshe (0xAMarshe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15036539/medium/4904375572309d545a53e955b5e60b1a.png",
+ "preTranslated": 0,
+ "totalCosts": 220
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 220
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 198,
+ "total": 220
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 190,
+ "total": 209
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 198,
+ "total": 220
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895456,
+ "username": "AayushCurious",
+ "fullName": "AayushCurious",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895456/medium/4c25920dcdd629b12dfda520f6f0e718.png",
+ "preTranslated": 0,
+ "totalCosts": 231
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ne-NP",
+ "name": "Nepali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 231
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 230,
+ "total": 231
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 349,
+ "total": 350
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 230,
+ "total": 231
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14044564,
+ "username": "3bdelrhmann",
+ "fullName": "Abdelrhman Mohamed (3bdelrhmann)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14044564/medium/6d2569fb21f5327b814707a35215d3ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709176,
+ "username": "AboHamed",
+ "fullName": "Abo Hamed (AboHamed)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709176/medium/c6b325862fa60edc08bb896cccd6eef5.jpg",
+ "preTranslated": 0,
+ "totalCosts": 84
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 84
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 66,
+ "total": 84
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 68,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 66,
+ "total": 84
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698060,
+ "username": "AbrahamYusuf",
+ "fullName": "Abraham Yusuf (AbrahamYusuf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698060/medium/1bf8fb6a51e2a7684bb25b8a868d7204.png",
+ "preTranslated": 0,
+ "totalCosts": 1669
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1669
+ },
+ "translated": {
+ "tmMatch": 163,
+ "default": 1506,
+ "total": 1669
+ },
+ "targetTranslated": {
+ "tmMatch": 100,
+ "default": 1302,
+ "total": 1402
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 163,
+ "default": 1506,
+ "total": 1669
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974629,
+ "username": "wesrajoko",
+ "fullName": "Abu Hurairah (wesrajoko)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974629/medium/406715c01abd6f63b289c0254935cb88.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 25,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 28,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 25,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14383758,
+ "username": "617087085",
+ "fullName": "Abuukar Cali Macow Addres Abuukar Cali (617087085)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8602c5c97583123cc015acfbe94bc890?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999231,
+ "username": "Slovak01",
+ "fullName": "Aco_Diskusija (Slovak01)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/b73531365dc50a892ce2f96cdc22e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1277,
+ "default": 2527,
+ "total": 3804
+ },
+ "targetTranslated": {
+ "tmMatch": 818,
+ "default": 2150,
+ "total": 2968
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13151214,
+ "username": "Technolex",
+ "fullName": "Aco_Technolex (Technolex)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/791ecd38a944b240bea06694828e6dd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 118,
+ "default": 462,
+ "total": 580
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 437,
+ "total": 547
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1007
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14604868,
+ "username": "ctx2012",
+ "fullName": "Adam Adamowicz (ctx2012)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604868/medium/c6b287b0f1d173faedce0806420fc57b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2007
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2007
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 1965,
+ "total": 2007
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 1742,
+ "total": 1786
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 269,
+ "total": 270
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 1965,
+ "total": 2007
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14746732,
+ "username": "asdealmeida1",
+ "fullName": "Adam D. (asdealmeida1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746732/medium/41ad9e6c8c212d49a5e493167a43de8e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 48,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 52,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 48,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14218736,
+ "username": "offcode",
+ "fullName": "Adam Schmideg (offcode)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14218736/medium/a4438c582e6702dd1d8fda820d0eaacf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 6,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 5,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 6,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13978949,
+ "username": "AdamStudenik",
+ "fullName": "Adam Studenik 🧮 (AdamStudenik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978949/medium/74a9ae3a5b9b779e869b55803b25c48a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 162
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 161,
+ "total": 162
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 157,
+ "total": 158
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 161,
+ "total": 162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14111943,
+ "username": "fluffay",
+ "fullName": "Adina Cretu (fluffay)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14111943/medium/161bdceb6b4652143236637b21f7b3b5.png",
+ "preTranslated": 0,
+ "totalCosts": 12525
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12525
+ },
+ "translated": {
+ "tmMatch": 3648,
+ "default": 8877,
+ "total": 12525
+ },
+ "targetTranslated": {
+ "tmMatch": 3723,
+ "default": 9246,
+ "total": 12969
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3648,
+ "default": 8877,
+ "total": 12525
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14971925,
+ "username": "adibputra422",
+ "fullName": "Adit Putra (adibputra422)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971925/medium/9da443feaa3291fa3ce0f0ee1180bf54.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14079977,
+ "username": "adi1382",
+ "fullName": "Aditya verma (adi1382)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14079977/medium/35c8e9d061b6e00b370b3fa92d44a887.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896188,
+ "username": "Megalo-don",
+ "fullName": "Adonis Ferreira (Megalo-don)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896188/medium/f5f379d22d24f76f3a69d28b32c68e08.png",
+ "preTranslated": 0,
+ "totalCosts": 402
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 402
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 393,
+ "total": 402
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 442,
+ "total": 456
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 393,
+ "total": 402
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982821,
+ "username": "adriolguin",
+ "fullName": "Adrian Olguin (adriolguin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982821/medium/1d14c841994683501efe6856e8ca396f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 466
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 466
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 426,
+ "total": 466
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 456,
+ "total": 495
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 426,
+ "total": 466
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14051414,
+ "username": "ADRIANO688",
+ "fullName": "Adrian Toth (ADRIANO688)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14051414/medium/c9c42882f0cd997241b652f91c55db02.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14800200,
+ "username": "adrianpazosg",
+ "fullName": "Adrián Pazos (adrianpazosg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800200/medium/6ed8760ef8fce69662fcee35915085d0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842980,
+ "username": "agathadeborja",
+ "fullName": "Agatha Andaluz De Borja (agathadeborja)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842980/medium/1178b247eb1cd0b5ac5a275d028f0ad3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14084853,
+ "username": "agnieszkaposzwa6",
+ "fullName": "Agnieszka Poszwa (agnieszkaposzwa6)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14084853/medium/cf706f82a2556f8272f0e1619a9ceacc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563758,
+ "username": "Aaloun",
+ "fullName": "Ahmad Aloun (Aaloun)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563758/medium/29227a6f926efc696277fdd9e534865c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 188
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 184,
+ "total": 188
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 171,
+ "total": 175
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 184,
+ "total": 188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982803,
+ "username": "ahmadkzbar",
+ "fullName": "Ahmad Kazbar (ahmadkzbar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982803/medium/9630fb2eb58f6274d257bfc1c287be61.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 877
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 877
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 874,
+ "total": 877
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 792,
+ "total": 798
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 761,
+ "total": 762
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 874,
+ "total": 877
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14686246,
+ "username": "ahmanrz",
+ "fullName": "Ahmad Manzoor (ahmanrz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686246/medium/6e7aaa8d2ec45055ba82a3ce3dc6af34.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966159,
+ "username": "bafrani",
+ "fullName": "Ahmad Pourbafrani (bafrani)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966159/medium/c51fc2b1e6cf7ef020396751ad9b854b.png",
+ "preTranslated": 0,
+ "totalCosts": 499
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 499
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 498,
+ "total": 499
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 674,
+ "total": 675
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 498,
+ "total": 499
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891244,
+ "username": "vaiahmad",
+ "fullName": "Ahmad Rifai (vaiahmad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d69123493966c573c54413f63909600?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4563
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4563
+ },
+ "translated": {
+ "tmMatch": 300,
+ "default": 4263,
+ "total": 4563
+ },
+ "targetTranslated": {
+ "tmMatch": 284,
+ "default": 3769,
+ "total": 4053
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 300,
+ "default": 4263,
+ "total": 4563
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14600562,
+ "username": "ahmad.tajadod",
+ "fullName": "Ahmad Ziaie Tajadod (ahmad.tajadod)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600562/medium/64136d796dede4d921c19e6bac7fa127.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 0,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 0,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 0,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14070193,
+ "username": "ahmedcoe",
+ "fullName": "Ahmed Alutaibi (ahmedcoe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14070193/medium/b750710f4770c698f87958f3af233ff1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1327
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1327
+ },
+ "translated": {
+ "tmMatch": 349,
+ "default": 978,
+ "total": 1327
+ },
+ "targetTranslated": {
+ "tmMatch": 311,
+ "default": 870,
+ "total": 1181
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 349,
+ "default": 978,
+ "total": 1327
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653772,
+ "username": "ahmedebraright",
+ "fullName": "Ahmed Ashour (ahmedebraright)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653772/medium/f5bc7c93cf9d8a28a22d0a02e78483d5.jpg",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 27,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 34,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 27,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14854298,
+ "username": "sahlawiz",
+ "fullName": "Ahmed Sahlawiz (sahlawiz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854298/medium/d74fe68289efd3614f5daeff99c71d00.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14709246",
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13938553,
+ "username": "ahmetemin08",
+ "fullName": "Ahmet Emin Koçal (ahmetemin08)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13938553/medium/93499dd97244086f423ea0611c82e186.jpg",
+ "preTranslated": 0,
+ "totalCosts": 774
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 774
+ },
+ "translated": {
+ "tmMatch": 70,
+ "default": 704,
+ "total": 774
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 570,
+ "total": 639
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 70,
+ "default": 704,
+ "total": 774
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784092,
+ "username": "akarakuzu8",
+ "fullName": "Ahmet Karakuzu (akarakuzu8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784092/medium/c6dc90c8ae877bc5304606836ad5379d.png",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 20,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 15,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 20,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14574342,
+ "username": "ahmetucar973",
+ "fullName": "Ahmet M. (ahmetucar973)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14574342/medium/87b119554fb2c3635cc240d77e9b711c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14023843,
+ "username": "4hmetuyar",
+ "fullName": "Ahmet UYAR (4hmetuyar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14023843/medium/0cd86910555daae6efafdf0269a52b06.png",
+ "preTranslated": 0,
+ "totalCosts": 343
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 343
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 343,
+ "total": 343
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 257,
+ "total": 257
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 343,
+ "total": 343
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14828314,
+ "username": "164031",
+ "fullName": "Aiden (164031)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828314/medium/5d100860df80e1a9c1c8c6990cbefb5f.png",
+ "preTranslated": 0,
+ "totalCosts": 290
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 290
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 288,
+ "total": 290
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 454,
+ "total": 456
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 118,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 288,
+ "total": 290
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750292,
+ "username": "xmr192217",
+ "fullName": "Aiden Jameson (xmr192217)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750292/medium/777c2bbb1ce44e1ed131bcec981e6c9f.png",
+ "preTranslated": 0,
+ "totalCosts": 153
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 153
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 241,
+ "total": 241
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14035167,
+ "username": "airidassomka",
+ "fullName": "Airidas Šomka (airidassomka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035167/medium/55db96bd735658814900ddae0754991e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 33,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 30,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 33,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675092,
+ "username": "Mousticke",
+ "fullName": "Akim B. (Mousticke)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675092/medium/93a5a3891a8c8b3f1796baf7ae9c8046.png",
+ "preTranslated": 0,
+ "totalCosts": 246
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 246
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 246,
+ "total": 246
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 249,
+ "total": 249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 246,
+ "total": 246
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959731,
+ "username": "akira-19",
+ "fullName": "Akira (akira-19)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959731/medium/1f9a8ac6d0eb9900e42157a952c5dca6.png",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 108,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 328,
+ "total": 328
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 108,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14570838,
+ "username": "aktugyilmaz",
+ "fullName": "Aktuğ Yılmaz (aktugyilmaz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570838/medium/ab4609990da7910d87caca2adbbd7854.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14662270,
+ "username": "alan4499gomes.rubio",
+ "fullName": "Alan Gomez (alan4499gomes.rubio)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14662270/medium/81a64ec57910d241c094de5ef529b07c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 17,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 19,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 17,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14227432,
+ "username": "JustCaptcha",
+ "fullName": "Albert (JustCaptcha)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227432/medium/3c87c50e7fdf0a9933ddc3a7c41b7ac8.png",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 41,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 41,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14382396,
+ "username": "AlbertChenKai",
+ "fullName": "Albert Chen (AlbertChenKai)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14382396/medium/375ae4397b5884ff0516d4eea525a0e8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 0,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 123,
+ "default": 0,
+ "total": 123
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 0,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14179045,
+ "username": "albiDmtr",
+ "fullName": "Albert Domotor (albiDmtr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14179045/medium/5a2888caee97884225fc31cf26e784f1.png",
+ "preTranslated": 0,
+ "totalCosts": 162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 162
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 91,
+ "total": 162
+ },
+ "targetTranslated": {
+ "tmMatch": 71,
+ "default": 87,
+ "total": 158
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 91,
+ "total": 162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "fullName": "Alberto Gómez Herrera (MirageIonova)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png",
+ "preTranslated": 0,
+ "totalCosts": 331
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 331
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 309,
+ "total": 331
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 380,
+ "total": 401
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 309,
+ "total": 331
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581702,
+ "username": "alosue",
+ "fullName": "Alberto Uez (alosue)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581702/medium/d3f03f485db3b03afcd7058215d68264.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 129
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 127,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 141,
+ "total": 144
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 121,
+ "total": 121
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 127,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13962275,
+ "username": "aed3103",
+ "fullName": "Alejandro Escandon (aed3103)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962275/medium/4b2379c9a53c76a5f5a620ca316ed91d.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738074,
+ "username": "AleksRG",
+ "fullName": "Aleksandar Georgiev (AleksRG)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738074/medium/20137575cc3af9d5601ae8706e4d90f0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 199
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 191,
+ "total": 199
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 147,
+ "total": 156
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 191,
+ "total": 199
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14946543,
+ "username": "babasik.ab",
+ "fullName": "Aleksandr Babenko (babasik.ab)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946543/medium/c1a91da93a9c5fb25d83a22e0171111d.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14605612,
+ "username": "lzag",
+ "fullName": "Aleksey Zagumennyi (lzag)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605612/medium/c577fe2d125311c10b6411962a209def.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033057,
+ "username": "reiko1991",
+ "fullName": "Alessandra P. (reiko1991)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033057/medium/4a20c91eda2b109e3c3f3f12274cbb7c.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 33,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 31,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 33,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14946279,
+ "username": "Jackstar02",
+ "fullName": "Alessandro Caterina (Jackstar02)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946279/medium/13934793ff931b54990a4a7572e64000.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 109,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 114,
+ "total": 140
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 109,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14686678,
+ "username": "ametel01",
+ "fullName": "Alessandro Metelli (ametel01)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686678/medium/42da64bc8743fcf14d7efc7aaebbd99f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10222
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10222
+ },
+ "translated": {
+ "tmMatch": 122,
+ "default": 10100,
+ "total": 10222
+ },
+ "targetTranslated": {
+ "tmMatch": 108,
+ "default": 9583,
+ "total": 9691
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 2037,
+ "total": 2038
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 122,
+ "default": 10100,
+ "total": 10222
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14627716,
+ "username": "alessioperinilu",
+ "fullName": "Alessio (alessioperinilu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627716/medium/735445e9c72bbd0f33671af2fcf6e133.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 16,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914877,
+ "username": "alexding",
+ "fullName": "Alex (alexding)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14914877/medium/d5cd27d11988bc77c9d6dc68a9aa8ae5.jpg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 15,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 30,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 15,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003205,
+ "username": "fernandososxd4",
+ "fullName": "Alex Flores (fernandososxd4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003205/medium/b1db938973973fdb74103eab0f2ae3a7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14625098,
+ "username": "sasha7rasha",
+ "fullName": "Alex SPD (sasha7rasha)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625098/medium/edf9ab59bd259b580368ab804b48cf8a.gif",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14702036,
+ "username": "torrodal",
+ "fullName": "Alex Torres (torrodal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702036/medium/9d473b100fcd30b4b2c327d5a172a154.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13715077,
+ "username": "alexkoala",
+ "fullName": "AlexKoala (alexkoala)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13715077/medium/9b0a31ce6045c9e83de3117021fff314.png",
+ "preTranslated": 0,
+ "totalCosts": 135
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 135
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 72,
+ "total": 135
+ },
+ "targetTranslated": {
+ "tmMatch": 58,
+ "default": 69,
+ "total": 127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 63,
+ "default": 72,
+ "total": 135
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14746906,
+ "username": "Mob1le",
+ "fullName": "Alexander Bessalov (Mob1le)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746906/medium/23a87f0267d11038db9dabc232660da6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14274492,
+ "username": "alexander.lysenko",
+ "fullName": "Alexander Lysenko (alexander.lysenko)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14274492/medium/b4f4de8fa9091b8949ab83d81e16c8bd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 471,
+ "default": 8685,
+ "total": 9156
+ },
+ "targetTranslated": {
+ "tmMatch": 484,
+ "default": 8808,
+ "total": 9292
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 21,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 9580
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034495,
+ "username": "alexsans9",
+ "fullName": "Alexander Muñoz Avella (alexsans9)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034495/medium/29568fb8b009000bcf827c64c4336379.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 58,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 73,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 58,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709246,
"username": "Mymaridae",
"fullName": "Alexandre Mota (Mymaridae)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709246/medium/b89620beb67e38c9d555c753c3b01784.jpeg",
- "joined": "2021-05-10 14:43:09"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14374108",
- "username": "faye831",
- "fullName": "faye831",
- "avatarUrl": "https://www.gravatar.com/avatar/5467a440303748a93ae001d092539545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-01 22:53:12"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13744177,
+ "username": "Asix",
+ "fullName": "Alexei Onishchuk (Asix)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13744177/medium/dbee0e581341d2b96a5a12c620b1e5fa.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13978963,
+ "username": "alexiskefalas",
+ "fullName": "Alexis Kefalas (alexiskefalas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978963/medium/fd2dd1fcfdaef0be5f80c40874f675ec.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3761
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3761
+ },
+ "translated": {
+ "tmMatch": 127,
+ "default": 3634,
+ "total": 3761
+ },
+ "targetTranslated": {
+ "tmMatch": 131,
+ "default": 3921,
+ "total": 4052
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 127,
+ "default": 3634,
+ "total": 3761
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14173445,
+ "username": "Alalwi",
+ "fullName": "Ali Al Alawi (Alalwi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14173445/medium/b33c069f498903274976c2808d31bdf1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13965189,
+ "username": "aliatiia",
+ "fullName": "Ali Atiia (aliatiia)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13965189/medium/5ddc7bef116227679263ca777ac28f38.png",
+ "preTranslated": 0,
+ "totalCosts": 114
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 114
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 98,
+ "total": 114
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 80,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 98,
+ "total": 114
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553452,
+ "username": "aliguvez",
+ "fullName": "Ali Guvez (aliguvez)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553452/medium/3b3e2896659055ac72f48e3ae3c1b60e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 38,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 30,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 38,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13071224,
+ "username": "akkiris",
+ "fullName": "Ali Kaan Kiriş (akkiris)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13071224/medium/70bc840133ae0f0c69d172f5108d06f0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14696806,
+ "username": "kumbulali",
+ "fullName": "Ali Kumbul (kumbulali)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696806/medium/39112799e3eaa803fa0605900283a166.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 96
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 96
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 89,
+ "total": 96
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 82,
+ "total": 88
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 89,
+ "total": 96
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14620554,
+ "username": "aliosman1988bg",
+ "fullName": "Ali Osman (aliosman1988bg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620554/medium/2815dc5a4e4a8c6a4c7032e12798311d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999609,
+ "username": "metlyakova",
+ "fullName": "Alisa Metlyakova (metlyakova)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999609/medium/2447d5841fbb956f3d44eea295f09b65.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 44,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14753676,
+ "username": "sj69",
+ "fullName": "Alsajad Majid (sj69)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753676/medium/7d0765449802f44ed616c6db8d996a49.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978481,
+ "username": "alvaro98",
+ "fullName": "Alvaro Ch (alvaro98)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978481/medium/03b22aa2e5a993b6a9864b8a9342eb46.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12673086,
+ "username": "alvaro3639",
+ "fullName": "Alvaro Gutierrez (alvaro3639)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12673086/medium/c4dd31ecaaffcae28a9ec421a8a12248.jpg",
+ "preTranslated": 0,
+ "totalCosts": 418
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 418
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 393,
+ "total": 418
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 362,
+ "total": 390
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 146,
+ "total": 146
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 393,
+ "total": 418
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779512,
+ "username": "amkelhatw",
+ "fullName": "Aly Hatw (amkelhatw)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779512/medium/c1bff336933b85526e7bba7078cc79be.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14635270,
+ "username": "alyssazh310",
+ "fullName": "Alyssa Liu (alyssazh310)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635270/medium/4b8979d92b23fa60ddd18a446adc3f7f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 73
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 73
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 69,
+ "total": 73
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 111,
+ "total": 119
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 69,
+ "total": 73
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751422,
+ "username": "Alexusz",
+ "fullName": "Aléxis Moraes (Alexusz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751422/medium/1b45356738263d0753c5d9f87eacce86.jpg",
+ "preTranslated": 0,
+ "totalCosts": 999
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 999
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 975,
+ "total": 999
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 978,
+ "total": 1003
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 318,
+ "total": 318
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 975,
+ "total": 999
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14706566,
+ "username": "amagiddmxh",
+ "fullName": "Amagi DDmxh (amagiddmxh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706566/medium/8e4b6fd81dc8bcf21955428c0277ec3c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 122
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 122
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 78,
+ "total": 122
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 138,
+ "total": 216
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 78,
+ "total": 122
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12578470,
+ "username": "aalam",
+ "fullName": "Aman Alam (aalam)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a95a917b5788edc7a1a0625a936673c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 725
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 725
+ },
+ "translated": {
+ "tmMatch": 158,
+ "default": 567,
+ "total": 725
+ },
+ "targetTranslated": {
+ "tmMatch": 268,
+ "default": 928,
+ "total": 1196
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 158,
+ "default": 567,
+ "total": 725
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14679216,
+ "username": "aljuriz",
+ "fullName": "Amaury Bravo Aljuriz (aljuriz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14679216/medium/6ef48f45024d04960f36c402109cb60d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14519290,
+ "username": "x.amel",
+ "fullName": "Amelia Lin (x.amel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14519290/medium/6ff6c098087030df852f77775038bb19.jpg",
+ "preTranslated": 0,
+ "totalCosts": 180
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 180
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 138,
+ "total": 180
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 145,
+ "total": 188
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 138,
+ "total": 180
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752468,
+ "username": "kedergon",
+ "fullName": "Amin Hadian (kedergon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752468/medium/7937f2f9494df39c53372a741c571ae4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566830,
+ "username": "mohammad10",
+ "fullName": "Amin R (mohammad10)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566830/medium/b36a8753b4c2f3b12cc7ddf31f0623c0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 536
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 536
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 533,
+ "total": 536
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 665,
+ "total": 667
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 533,
+ "total": 536
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14555882,
+ "username": "ElAmir",
+ "fullName": "Amir Reza (ElAmir)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/edcaf24c34ef3506613bad9099389fc6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 11435
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11376
+ },
+ "translated": {
+ "tmMatch": 444,
+ "default": 10932,
+ "total": 11376
+ },
+ "targetTranslated": {
+ "tmMatch": 545,
+ "default": 12980,
+ "total": 13525
+ },
+ "translatedByMt": {
+ "tmMatch": 51,
+ "default": 3,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 444,
+ "default": 10932,
+ "total": 11376
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815950",
- "username": "hungkhongten7777",
- "fullName": "hungkhongten7777",
- "avatarUrl": "https://www.gravatar.com/avatar/d79a59a099285520a062ed09b26b849d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 00:11:13"
- },
- "languages": [
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14758456,
+ "username": "AmirDeveloper",
+ "fullName": "Amirjon Rajabov (AmirDeveloper)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758456/medium/b93489a116fc73d4aed09dddf8e29541.png",
+ "preTranslated": 0,
+ "totalCosts": 156
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 156
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 154,
+ "total": 156
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 154,
+ "total": 156
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 154,
+ "total": 156
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881554,
+ "username": "amisha-adwani",
+ "fullName": "Amisha (amisha-adwani)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881554/medium/129e61bb9dafa27ea7bd84ebf2e145bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 368
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 368
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 365,
+ "total": 368
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 607,
+ "total": 613
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 365,
+ "total": 368
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14089373,
+ "username": "ap27061989",
+ "fullName": "Amitai Perso (ap27061989)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14089373/medium/4efab9509732be6e5e3ffd709025f6de.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14886122,
+ "username": "anjaymu09",
+ "fullName": "Ammaifali (anjaymu09)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886122/medium/ab2bf62d80ac24ffb5170b3e72b46aeb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733942,
+ "username": "amrux",
+ "fullName": "Amr Ali (amrux)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733942/medium/44d5aa6a83c77e1c0881a272e70f4e22.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 120
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 120
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 120,
+ "total": 120
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 101,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 120,
+ "total": 120
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780840,
+ "username": "amy.yingzhao",
+ "fullName": "Amy (amy.yingzhao)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780840/medium/0aba5691262a6bf6a8a56d9a391c6b9f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 114
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 114
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973245,
+ "username": "andangparsan",
+ "fullName": "Andang Parsan (andangparsan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973245/medium/83a15ae159989f1f9a5bee86aeb6a14b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 0,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 0,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 0,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13153052,
+ "username": "Ando_Translations",
+ "fullName": "Ando Translations (Ando_Translations)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/84bdc76b08dbe3e86bed9c89fa6a3dc1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 98,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 107,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 133
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13396896,
+ "username": "xdt322",
+ "fullName": "Andre Fuentes (xdt322)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13396896/medium/e1b1ff721de1da9afe469cfaa28e6cb3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1199
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 1173,
+ "total": 1199
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 1215,
+ "total": 1241
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 403,
+ "total": 403
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 1173,
+ "total": 1199
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14963363,
+ "username": "andreas_koutsakis",
+ "fullName": "Andreas (andreas_koutsakis)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963363/medium/9c8cd9d629afa2226119c89d759b5125.jpg",
+ "preTranslated": 0,
+ "totalCosts": 589
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 589
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 589,
+ "total": 589
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 708,
+ "total": 708
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 589,
+ "total": 589
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751614,
+ "username": "Zekel97",
+ "fullName": "Andreas Szekely (Zekel97)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751614/medium/617245d20333ac5379ab1c9532ffa90a.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880134,
+ "username": "andrei.andrianov",
+ "fullName": "Andrei Andrianov (andrei.andrianov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880134/medium/f72d9db33a8ea5923123bd6592d36e1c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 103,
+ "default": 94,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 94,
+ "default": 67,
+ "total": 161
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 103,
+ "default": 94,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14640644,
+ "username": "andrglv",
+ "fullName": "Andrej Glavinić (andrglv)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640644/medium/89448064fc3d80375f667f200b9915c1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 336
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 336
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 278,
+ "total": 336
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 268,
+ "total": 324
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 278,
+ "total": 336
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14801608,
+ "username": "burgmancat",
+ "fullName": "Andres Sanchez (burgmancat)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801608/medium/37108cefa2cd3315ef2183f2d9fe70ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 7,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 53,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 7,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12502848,
+ "username": "hran",
+ "fullName": "Andrii Khronenko (hran)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12502848/medium/d6f0d637bd22c832aafd30f8cf964b5f.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682496,
+ "username": "reaminy_8",
+ "fullName": "Andriy Kanashkov (reaminy_8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682496/medium/061ed3d8a1e96eff4add39d9f520a6d9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 129
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 126,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 95,
+ "total": 97
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 126,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978447,
+ "username": "DanDaro",
+ "fullName": "André Abner (DanDaro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978447/medium/6c0a867cdc72f871a6dd35862afa1562.jpg",
+ "preTranslated": 0,
+ "totalCosts": 11814
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11814
+ },
+ "translated": {
+ "tmMatch": 110,
+ "default": 11704,
+ "total": 11814
+ },
+ "targetTranslated": {
+ "tmMatch": 104,
+ "default": 11812,
+ "total": 11916
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 8941,
+ "total": 8945
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 110,
+ "default": 11704,
+ "total": 11814
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957477,
+ "username": "asdcBRA",
+ "fullName": "André Silva de Carvalho (asdcBRA)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957477/medium/4731034c4ad881ab8ce76389b7952162.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11094
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11094
+ },
+ "translated": {
+ "tmMatch": 218,
+ "default": 10876,
+ "total": 11094
+ },
+ "targetTranslated": {
+ "tmMatch": 221,
+ "default": 11564,
+ "total": 11785
+ },
+ "translatedByMt": {
+ "tmMatch": 26,
+ "default": 3270,
+ "total": 3296
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 218,
+ "default": 10876,
+ "total": 11094
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14328968,
+ "username": "Tortolala",
+ "fullName": "Angel Tórtola (Tortolala)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14328968/medium/1e363ca67b12939c95d5065425807ad0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951861,
+ "username": "bardierangelina6",
+ "fullName": "Angie Bardier (bardierangelina6)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951861/medium/d5a9304f836af504ad35d48759c700ed.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 234
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 234
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 230,
+ "total": 234
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 196,
+ "total": 226
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 230,
+ "total": 234
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14666112,
+ "username": "tramanhluong228",
+ "fullName": "Anh LNT (tramanhluong228)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666112/medium/36fe2b2f8de789d1a17fa3359e5bf0ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14851800,
+ "username": "chrisvu.wabash",
+ "fullName": "Anh Vu (chrisvu.wabash)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851800/medium/368f50b324d31a54a501da2837bceaad.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 92,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653996,
+ "username": "anhbaysgalan1",
+ "fullName": "Anhbaysgalan D (anhbaysgalan1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653996/medium/754e257601bf73ab683d21c3c7938b04.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 860
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mn",
+ "name": "Mongolian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 860
+ },
+ "translated": {
+ "tmMatch": 50,
+ "default": 810,
+ "total": 860
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 714,
+ "total": 759
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 50,
+ "default": 810,
+ "total": 860
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14336316,
+ "username": "nigel_aniban06",
+ "fullName": "Aniban Naigel (nigel_aniban06)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14336316/medium/2aa7fab2cfceee21a1f764951e940680.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 179
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 179
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 163,
+ "total": 179
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 207,
+ "total": 221
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 163,
+ "total": 179
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14797670,
+ "username": "stassizyakin45",
+ "fullName": "Ann Partovi (stassizyakin45)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797670/medium/9e08f4e6af0d5ea0617c0f3347c2701f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13607408,
+ "username": "P1X3L0V4",
+ "fullName": "Anna Karpińska (P1X3L0V4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/006df509781bf12e7a75c092a2b8d9c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3763
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3763
+ },
+ "translated": {
+ "tmMatch": 130,
+ "default": 3633,
+ "total": 3763
+ },
+ "targetTranslated": {
+ "tmMatch": 125,
+ "default": 3374,
+ "total": 3499
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 130,
+ "default": 3633,
+ "total": 3763
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949927,
+ "username": "ann_plkh09",
+ "fullName": "Anna Paliokha (ann_plkh09)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949927/medium/6763baa1c9a6e9b197303ab3672469ab.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1037
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1037
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 1032,
+ "total": 1037
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 764,
+ "total": 769
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 31,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 1032,
+ "total": 1037
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14614016,
+ "username": "Anonyma",
+ "fullName": "Anonyma_z (Anonyma)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614016/medium/447ae91eb97d464346003fe6532cda12.jpg",
+ "preTranslated": 0,
+ "totalCosts": 568
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 568
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 473,
+ "total": 568
+ },
+ "targetTranslated": {
+ "tmMatch": 98,
+ "default": 533,
+ "total": 631
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 473,
+ "total": 568
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14637046,
+ "username": "CryptoHamilton",
+ "fullName": "Anthony Albertorio (CryptoHamilton)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637046/medium/a9a1f4853292ee84465a8d90062f3b8f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956479,
+ "username": "akais315",
+ "fullName": "Anthony Kaiser (akais315)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956479/medium/342153a6e0540337ea2efae82b1b98d4.png",
+ "preTranslated": 0,
+ "totalCosts": 1496
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1496
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 1467,
+ "total": 1496
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 1706,
+ "total": 1732
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 835,
+ "total": 839
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 1467,
+ "total": 1496
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690552,
+ "username": "anthonymartinez702",
+ "fullName": "Anthony M. (anthonymartinez702)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690552/medium/bbecfc2cef2d9f264faa93ee61a2cbe1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14734966,
+ "username": "emih.antonijo",
+ "fullName": "Antonijo Emih (emih.antonijo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734966/medium/d8828625eab1f5da6826a88b8bb62b94.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14963383,
+ "username": "antoniobuttazzo23",
+ "fullName": "Antonio Buttazzo (antoniobuttazzo23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963383/medium/0478800a5b79d2b1dbff376396d3758d.png",
+ "preTranslated": 0,
+ "totalCosts": 2477
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2477
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 2430,
+ "total": 2477
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 2603,
+ "total": 2652
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 1094,
+ "total": 1105
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 2430,
+ "total": 2477
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13872871,
+ "username": "AntwnhsM.",
+ "fullName": "Antwnhs M. (AntwnhsM.)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b478b15a022566e1891c6ec6055af76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623194,
+ "username": "Arapuan",
+ "fullName": "Arapuan Celestino (Arapuan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623194/medium/d8d7edb7af635f68efa5791cee17aa63.png",
+ "preTranslated": 0,
+ "totalCosts": 605
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 605
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 601,
+ "total": 605
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 692,
+ "total": 697
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 601,
+ "total": 605
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14724498,
+ "username": "arashmo1990",
+ "fullName": "Arash Mo (arashmo1990)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724498/medium/23abcfc2a156b50d443e9e7eb65d3447.png",
+ "preTranslated": 0,
+ "totalCosts": 330
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 330
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 320,
+ "total": 330
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 524,
+ "total": 545
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 320,
+ "total": 330
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771770,
+ "username": "Archeb",
+ "fullName": "Archeb",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771770/medium/97595f39d34a57c19224c3cc05a73dd0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643482,
+ "username": "areejsalem30",
+ "fullName": "Areej Salem (areejsalem30)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643482/medium/2112012f11df09ad2e3390120c49fe0a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14770474,
+ "username": "AuliaRizky",
+ "fullName": "Arhking (AuliaRizky)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14770474/medium/514a9862bdf41eebf06c7e9bcefca2e9.png",
+ "preTranslated": 0,
+ "totalCosts": 311
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 311
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 306,
+ "total": 311
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 314,
+ "total": 318
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 306,
+ "total": 311
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14560930,
+ "username": "ariosto.ponterio",
+ "fullName": "Ariosto Ponterio (ariosto.ponterio)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560930/medium/4e55904d467702daf3ee6b7021afd8cc.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14892798,
+ "username": "Arkagedon",
+ "fullName": "Arkagam A (Arkagedon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892798/medium/1590db87626e9cee6310c63f9d72a16e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 662
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 662
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 619,
+ "total": 662
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 744,
+ "total": 791
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 619,
+ "total": 662
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14163185,
+ "username": "armedis1981",
+ "fullName": "ArmKristall (armedis1981)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14163185/medium/d8b46146293816408b627ebaf0784171.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989997,
+ "username": "Sirlupinwatson1",
+ "fullName": "Armand Brunelle (Sirlupinwatson1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989997/medium/58dac31cb4d977a29d3caf7d37e7cd45.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 562
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 562
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 561,
+ "total": 562
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 673,
+ "total": 676
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 561,
+ "total": 562
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566754,
+ "username": "asatzger",
+ "fullName": "Armin Satzger (asatzger)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566754/medium/788107353be234330a4067d7a51b7499.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1206
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1206
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 1178,
+ "total": 1206
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 1155,
+ "total": 1181
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 251,
+ "total": 251
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 1178,
+ "total": 1206
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14562612,
+ "username": "Arminmoradi",
+ "fullName": "Arminmoradi82 (Arminmoradi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5d573f037f2c3db85b73720a8a86b777?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14091321,
+ "username": "Huhh",
+ "fullName": "Arsentiy Falinskiy (Huhh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14091321/medium/d8e72289853200fb1dbef3a723ce209b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 818
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 818
+ },
+ "translated": {
+ "tmMatch": 99,
+ "default": 719,
+ "total": 818
+ },
+ "targetTranslated": {
+ "tmMatch": 98,
+ "default": 658,
+ "total": 756
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 119,
+ "total": 134
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 99,
+ "default": 719,
+ "total": 818
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14163925,
+ "username": "vorot93",
+ "fullName": "Artem Vorotnikov (vorot93)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14163925/medium/299883c7c1782433d71c6d983be9057c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 195
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 195
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 155,
+ "total": 195
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 133,
+ "total": 169
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 155,
+ "total": 195
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14604672,
+ "username": "Arthheo",
+ "fullName": "Arthur SCH (Arthheo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604672/medium/f0f0b5f0b1512c443dc8d91cf1036c9a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759220,
+ "username": "arturlesniewski",
+ "fullName": "Artur Leśniewski (arturlesniewski)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759220/medium/ce0dfc426c882d10a157bb152afe3a16.png",
+ "preTranslated": 0,
+ "totalCosts": 1451
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1451
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 1380,
+ "total": 1451
+ },
+ "targetTranslated": {
+ "tmMatch": 68,
+ "default": 1194,
+ "total": 1262
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 674,
+ "total": 682
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 1380,
+ "total": 1451
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14704100,
+ "username": "arturo.1997",
+ "fullName": "Arturo S. Medrano (arturo.1997)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704100/medium/4f0e3cede4545cf57be541ac12e0ab32.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 351
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 351
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 334,
+ "total": 351
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 305,
+ "total": 322
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 334,
+ "total": 351
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14705794,
+ "username": "arusatava",
+ "fullName": "Arusatava Diсokusay (arusatava)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705794/medium/7f35490773280819aaf885372c69589a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 772
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 772
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 758,
+ "total": 772
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 672,
+ "total": 688
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 758,
+ "total": 772
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000323,
+ "username": "aryoharris9a",
+ "fullName": "Aryo Haris Wirakusuma (aryoharris9a)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000323/medium/fffd3847d1ccffc61f4eeea7cab07f36.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 28,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 34,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 28,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14828792,
+ "username": "rioobudi",
+ "fullName": "Aryo Pambudi (rioobudi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828792/medium/f69fd14bd2aa648696bac9e1eab3f927.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1777
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1777
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 1743,
+ "total": 1777
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 1662,
+ "total": 1695
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 1743,
+ "total": 1777
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14583868,
+ "username": "7kamikaze7",
+ "fullName": "Asc Sedmosm (7kamikaze7)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14583868/medium/ad867635428b0cb1b6eb4f13b185a263.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13431261,
+ "username": "xenearz",
+ "fullName": "Ashe Hecarim (xenearz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13431261/medium/e33ad5f9e6387f73021064c1853950ec.jpg",
+ "preTranslated": 0,
+ "totalCosts": 295
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 295
+ },
+ "translated": {
+ "tmMatch": 53,
+ "default": 242,
+ "total": 295
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 206,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 156,
+ "total": 156
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 53,
+ "default": 242,
+ "total": 295
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14649288,
+ "username": "ashraf1",
+ "fullName": "Ashraf hasan (ashraf1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/41fbff92c62f3662bbd7b975ce9aeca8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978885,
+ "username": "asifmahmoud487g",
+ "fullName": "Asif Mahmoud (asifmahmoud487g)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978885/medium/cd29b6fbfc96248791192d32cf7335f6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14877478,
+ "username": "asrasaatchi1983",
+ "fullName": "Asra Saatchi (asrasaatchi1983)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877478/medium/2fe6df5e4ebe022459774a32ca100fd7.gif",
+ "preTranslated": 0,
+ "totalCosts": 220
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 220
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 212,
+ "total": 220
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 301,
+ "total": 326
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 212,
+ "total": 220
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688912,
+ "username": "03172358530",
+ "fullName": "Asrar Ahmed (03172358530)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688912/medium/725c7fac3e573d6ffe7e253c9e50ef90.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13831937,
+ "username": "atamerco23",
+ "fullName": "Ata Çağan Atamer (atamerco23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13831937/medium/e1a794be136eb53ee2ec1d58afe8f370.jpg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 12,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 12,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14032039,
+ "username": "atshn.gunduz",
+ "fullName": "Ateşhan Gündüz (atshn.gunduz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14032039/medium/c18e7d0f24b527c7dc5b01dc005cc5eb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 189
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 189
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 189,
+ "total": 189
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 189,
+ "total": 189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 189,
+ "total": 189
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14454330,
+ "username": "ahteewat123",
+ "fullName": "Athiwat Klauythong (ahteewat123)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14454330/medium/7b3646170a6320e44583d59e738f0db9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1473
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1473
+ },
+ "translated": {
+ "tmMatch": 132,
+ "default": 1341,
+ "total": 1473
+ },
+ "targetTranslated": {
+ "tmMatch": 61,
+ "default": 912,
+ "total": 973
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 132,
+ "default": 1341,
+ "total": 1473
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14014303,
+ "username": "aturX",
+ "fullName": "Atur (aturX)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14014303/medium/4abdce702cf667d98afe35be1e796b46.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 496
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 492
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 438,
+ "total": 492
+ },
+ "targetTranslated": {
+ "tmMatch": 118,
+ "default": 678,
+ "total": 796
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 438,
+ "total": 492
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14597374",
- "username": "monuripek94",
- "fullName": "M Onur Ipek (monuripek94)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597374/medium/a101542182c896d91d1fd9e876506de6.jpeg",
- "joined": "2021-01-27 17:13:23"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14760728,
+ "username": "amicod9r",
+ "fullName": "AwiR (amicod9r)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760728/medium/2905324afa04498f40bdcde399b96d47.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14340146,
+ "username": "axelrindle",
+ "fullName": "Axel Rindle (axelrindle)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/700121f3ea3d87e17a834e8b36fa2657?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 38,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 31,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 18,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 38,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546994,
+ "username": "axency",
+ "fullName": "Axency (axency)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546994/medium/3ebf66fb6f311d2e8188c54663f43c20.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 120
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 120
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 119,
+ "total": 120
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 123,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 119,
+ "total": 120
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14357214,
+ "username": "sensational.aziz",
+ "fullName": "Aziz Kenjaev (sensational.aziz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357214/medium/7618d3f6cc496443c61213b14c28b12d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14960713,
+ "username": "msfusionest",
+ "fullName": "BENLICE Emel (msfusionest)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960713/medium/a2568d9e7b70d7972a6e68de4e79ba71.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 88
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 88
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 88,
+ "total": 88
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 88,
+ "total": 88
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14965639,
+ "username": "bhavesh.maheshwari1947",
+ "fullName": "BHAVESH MAHESHWARI (bhavesh.maheshwari1947)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14965639/medium/56e25a1b7efda65d5fdd12f029d72ee4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748012,
+ "username": "bagetlincoln",
+ "fullName": "Baget 2024 (bagetlincoln)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748012/medium/ecacbbf86d5eaac6e3faa22da423d949.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973311,
+ "username": "BandarBasamh",
+ "fullName": "Bandar (BandarBasamh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973311/medium/cf3a913993d90ab591a8aacf4a07623f.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14869618,
+ "username": "msbarathi07",
+ "fullName": "Barathi M S (msbarathi07)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869618/medium/87fb1a90204c1d83ab5ff43906855789.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 155
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 155
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 151,
+ "total": 155
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 305,
+ "total": 312
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 151,
+ "total": 155
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14852154,
+ "username": "bartekbugajski",
+ "fullName": "Bartek Bugajski (bartekbugajski)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852154/medium/0039a82eff71b9ca0fe6a2d037273d3a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888938",
- "username": "kenyturpohuamani",
- "fullName": "keny turpo huamani (kenyturpohuamani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888938/medium/1ea749d5846031956e5fffe970e3ecb0.png",
- "joined": "2021-08-20 09:33:06"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14533144,
+ "username": "modhex",
+ "fullName": "Barış Batuhan (modhex)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14533144/medium/c83b31a984c6b2f5a80aa7a5ab027e6b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 112
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 112
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 88,
+ "total": 112
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 73,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 3,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 88,
+ "total": 112
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14972963,
+ "username": "basamg440",
+ "fullName": "Bastian Mertes (basamg440)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14972963/medium/fefc21eb6d8e484ee13a2d12e123b192.png",
+ "preTranslated": 0,
+ "totalCosts": 612
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 612
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 604,
+ "total": 612
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 593,
+ "total": 601
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 201,
+ "total": 203
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 604,
+ "total": 612
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13234426,
+ "username": "begiganellari1997",
+ "fullName": "Begi Ganellari (begiganellari1997)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13234426/medium/19bc1758cb75b7fef26996e15b3b23cc.jpg",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 46,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 53,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 46,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14043331,
+ "username": "Belkacem2015",
+ "fullName": "Belkacem (Belkacem2015)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14043331/medium/3a99fc80bf81b592af9a2b96767e3c9f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14729586,
+ "username": "hila1gt2",
+ "fullName": "Benjamin Mattmann (hila1gt2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729586/medium/b2148ad52e0bc29f3b569d164434a221.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 932
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 932
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 903,
+ "total": 932
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 817,
+ "total": 842
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 324,
+ "total": 326
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 903,
+ "total": 932
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996887,
+ "username": "berksukahramn",
+ "fullName": "Berksu Kahraman (berksukahramn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996887/medium/e27fe47548643527bf782f6881c5318b.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978829,
+ "username": "skarabhaa",
+ "fullName": "Bhaskar Kashyap (skarabhaa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978829/medium/3663a98d785554954dfd7008b7447181.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1001
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1001
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 981,
+ "total": 1001
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 1585,
+ "total": 1624
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 981,
+ "total": 1001
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14203984,
+ "username": "Bilal.Om",
+ "fullName": "Bilal AbuHayyah (Bilal.Om)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14203984/medium/d9e58bf028603bba15520fad91e0ab13.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 3,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13399779,
+ "username": "billchenchina",
+ "fullName": "Billchenchina (billchenchina)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13399779/medium/58bcd08752d9c90aadf0d369f9272cc9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 111
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 111
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 189,
+ "total": 189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14659742,
+ "username": "bintangnndhy",
+ "fullName": "Bintang Anandhiya (bintangnndhy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659742/medium/3f71a7bfcbef481a1a77f8f76bd66971.jpg",
+ "preTranslated": 0,
+ "totalCosts": 88
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 88
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 85,
+ "total": 88
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 78,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 85,
+ "total": 88
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786220,
+ "username": "AkumaAsuramaru",
+ "fullName": "Black Label (AkumaAsuramaru)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786220/medium/eecd1bcb00da5c64d5718883aa99466e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14940215,
+ "username": "Blaslaw",
+ "fullName": "Blaslaw",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940215/medium/8287f3ca1e766a45b1e013f430de367f.png",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 54,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 59,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 54,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959163,
+ "username": "bobjiang",
+ "fullName": "Bob Jiang (bobjiang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959163/medium/f0592e36e25621172a739a84f69d3099.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 892
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 892
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 864,
+ "total": 892
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 1368,
+ "total": 1404
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 864,
+ "total": 892
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029629,
+ "username": "Pirozok",
+ "fullName": "Bohdan Gluschak (Pirozok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029629/medium/55883d9f15e025e45decd9434a3a1c01.png",
+ "preTranslated": 0,
+ "totalCosts": 144
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 144
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 97,
+ "total": 144
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 87,
+ "total": 125
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 97,
+ "total": 144
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14591838,
+ "username": "BohusKrypto",
+ "fullName": "BohusKrypto",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591838/medium/10072388f5c8c36a68a3a573e671c583.jpg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 37,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 31,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 11,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 37,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14234914,
+ "username": "BonieC",
+ "fullName": "Bonie Jung (BonieC)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14234914/medium/2965f8f4a58a9c35331f578a5c787c07.jpg",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 71,
+ "total": 71
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732280,
+ "username": "Brandonly1000",
+ "fullName": "Brandon Ly (Brandonly1000)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732280/medium/ba8443c236c809ee8b2bf88d5da9706d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 301
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 301
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 256,
+ "total": 301
+ },
+ "targetTranslated": {
+ "tmMatch": 55,
+ "default": 369,
+ "total": 424
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 256,
+ "total": 301
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14753060,
+ "username": "sibelkya1985",
+ "fullName": "Brawl çoçuk (sibelkya1985)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753060/medium/14153a201ce927e2093b4d04f4934ada.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14663476,
+ "username": "bray_careto",
+ "fullName": "Bray Caréto (bray_careto)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663476/medium/f4de50be25f047d5dca157159471930f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14876952,
+ "username": "brayosimar",
+ "fullName": "Brayan GDesigner (brayosimar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876952/medium/2643e165c521aa4e9df368880d3f9e74.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 121
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 121
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 119,
+ "total": 121
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 102,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 119,
+ "total": 121
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842426,
+ "username": "Brijesh_GeetAshok",
+ "fullName": "Brijesh GeetAshok (Brijesh_GeetAshok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4332a3cb3ddb2f8f80400c9175924f19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815414,
+ "username": "KoelhoSec",
+ "fullName": "Bruno Coelho (KoelhoSec)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815414/medium/cc746b15dd6d2fa3bc01369caaef44ed.png",
+ "preTranslated": 0,
+ "totalCosts": 2022
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2022
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 1995,
+ "total": 2022
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 2101,
+ "total": 2130
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 670,
+ "total": 672
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 1995,
+ "total": 2022
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582822,
+ "username": "rbrunomarques",
+ "fullName": "Bruno Marques (rbrunomarques)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582822/medium/37460294a3c81cf5118924de20c06af2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 96,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896038,
+ "username": "brunoviniciusdepaularodrigues",
+ "fullName": "Bruno Rodrigues (brunoviniciusdepaularodrigues)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896038/medium/459cc98d3903c4055eba1c4c680adefa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13193338,
+ "username": "brunoviniciusrp",
+ "fullName": "Bruno Vinícius Veronez de Jesus (brunoviniciusrp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13193338/medium/9f0dcf40dbd88d79fb56251f14440d90.jpg",
+ "preTranslated": 0,
+ "totalCosts": 193
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 193
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 193,
+ "total": 193
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 198,
+ "total": 198
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 112,
+ "total": 112
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 193,
+ "total": 193
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14656562,
+ "username": "bryanalejandromedina",
+ "fullName": "Bryan Medina (bryanalejandromedina)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656562/medium/0750fe93463f7682ef9289e7d8fa3104.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855564,
+ "username": "Budenkinder",
+ "fullName": "Budenkinder",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855564/medium/18eaf43a19b5b5491d87b7e117eba1af.png",
+ "preTranslated": 0,
+ "totalCosts": 725
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 725
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 654,
+ "total": 725
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 629,
+ "total": 691
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 654,
+ "total": 725
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582912,
+ "username": "burak25",
+ "fullName": "Burak Kırdemir (burak25)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582912/medium/71f38d11cb85a8cacb6f82a4f9c9348b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978357,
+ "username": "burhan.khambati13",
+ "fullName": "Burhanuddin Khambati (burhan.khambati13)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978357/medium/24080cd625f74a46f2dc7bac7a31bf9a.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 0,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14564426,
+ "username": "bschorchit",
+ "fullName": "Bárbara Schorchit (bschorchit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564426/medium/85aa92771b96f81e3a10f1580a58e799.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1576
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1576
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 1544,
+ "total": 1576
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 1724,
+ "total": 1760
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 1544,
+ "total": 1576
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14734944,
+ "username": "cringkamp020",
+ "fullName": "C FR (cringkamp020)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734944/medium/e7472a21cad9c623f91536e9daeb41a2.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688390,
+ "username": "cloakedmania",
+ "fullName": "C3M (cloakedmania)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688390/medium/a2d8746c16953b008d19ee3273593bce.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 226
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 226
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 226,
+ "total": 226
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 175,
+ "total": 175
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 226,
+ "total": 226
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14874054,
+ "username": "work.research.closil",
+ "fullName": "CLOTILDE SILVA (work.research.closil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14874054/medium/b8c468681861135296f108ae592b801d.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 24,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873046,
+ "username": "ycad",
+ "fullName": "Cady Zhou (ycad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873046/medium/d0c199ae81e6f1e4778b04692c599483.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 11,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14586012,
+ "username": "ceasar.solucoes",
+ "fullName": "Caio Cesar de O. Pereira (ceasar.solucoes)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586012/medium/c4b345883e6638d7f10a70447369b2f5.png",
+ "preTranslated": 0,
+ "totalCosts": 673
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 673
+ },
+ "translated": {
+ "tmMatch": 141,
+ "default": 532,
+ "total": 673
+ },
+ "targetTranslated": {
+ "tmMatch": 159,
+ "default": 567,
+ "total": 726
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 231,
+ "total": 235
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 141,
+ "default": 532,
+ "total": 673
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581500,
+ "username": "hayat_diye_1_sey",
+ "fullName": "Can Karataş (hayat_diye_1_sey)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581500/medium/88fa54d8d612b9c26335b3a89b57da2e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 513
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 513
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 506,
+ "total": 513
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 475,
+ "total": 482
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 506,
+ "total": 513
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13869145,
+ "username": "cnpltdncsln",
+ "fullName": "Canpolat Dinçaslan (cnpltdncsln)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5b6f1971e37ccb9eebf449270971ca7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 19793,
+ "username": "cadu",
+ "fullName": "Carlos Pires (cadu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5dab29d0374c56ade27013e06d8e5db3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 94,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 84,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 94,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14886730,
+ "username": "charlyzona",
+ "fullName": "Carlos Rodríguez (charlyzona)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6539
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6539
+ },
+ "translated": {
+ "tmMatch": 78,
+ "default": 6461,
+ "total": 6539
+ },
+ "targetTranslated": {
+ "tmMatch": 84,
+ "default": 6239,
+ "total": 6323
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 358,
+ "total": 358
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 78,
+ "default": 6461,
+ "total": 6539
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14695818,
+ "username": "ngcarlos038",
+ "fullName": "Carlos Vargas (ngcarlos038)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695818/medium/5640f56c3c28e95a63f763e3b5eacbf3.png",
+ "preTranslated": 0,
+ "totalCosts": 137
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 137
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 93,
+ "total": 137
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 102,
+ "total": 149
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 25,
+ "total": 26
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 93,
+ "total": 137
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582052,
+ "username": "carolinebleckert",
+ "fullName": "Caroline Bleckert (carolinebleckert)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582052/medium/639d35605da557cab673b57cceb938e1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 208,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 190,
+ "total": 192
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 205,
+ "total": 205
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 208,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14804410,
+ "username": "cartneywong",
+ "fullName": "Cartney Wong (cartneywong)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804410/medium/cba5413607865ca4efcda74f37ba418c.png",
+ "preTranslated": 0,
+ "totalCosts": 3421
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3421
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 3405,
+ "total": 3421
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 4295,
+ "total": 4332
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 166,
+ "total": 166
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 3405,
+ "total": 3421
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730856,
+ "username": "incio_chca",
+ "fullName": "Cesar Incio (incio_chca)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730856/medium/814f97b84cb2c46e7a0262db09698a11.jpg",
+ "preTranslated": 0,
+ "totalCosts": 53
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 53
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 61,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14158645,
+ "username": "cevdetzgr",
+ "fullName": "Cevdet Özgür (cevdetzgr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158645/medium/023c48f1718bd7e044d1c71eb8d47983.jpg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14997595,
+ "username": "decentra1ized",
+ "fullName": "Chaerin Kim (decentra1ized)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14997595/medium/6b4e74c0fca0d1518f52a865ceec865a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1142
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 1136,
+ "total": 1142
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 868,
+ "total": 875
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 1136,
+ "total": 1142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660054,
+ "username": "chandraciek",
+ "fullName": "Chandra Brahmana (chandraciek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660054/medium/d5d65ffbc12b004ac94eeea2312811c0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 815
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 815
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 798,
+ "total": 815
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 655,
+ "total": 670
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 798,
+ "total": 815
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830280,
+ "username": "songnchant",
+ "fullName": "Changdles K (songnchant)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830280/medium/e544df6876b73ceedb0049774e96c599.png",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 103,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 83,
+ "total": 91
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 103,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14821378,
+ "username": "charan2929292003",
+ "fullName": "Charan (charan2929292003)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821378/medium/9b52b0efa05bb35de0a6d2c15372fdb6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 51,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 95,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 51,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14964031,
+ "username": "Charlongolo",
+ "fullName": "Charlie (Charlongolo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964031/medium/1fcad8b23307ba5ad33dac76e91ee6a3.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14554002,
+ "username": "AmonVJhin",
+ "fullName": "Charon Jhin (AmonVJhin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554002/medium/5059d0c39f37b1ce70dad969feec5f2b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14577256,
+ "username": "chem.imp",
+ "fullName": "Chem (chem.imp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577256/medium/a0d54ab2947a76ac750b32aab4ad324c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2787
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2787
+ },
+ "translated": {
+ "tmMatch": 110,
+ "default": 2677,
+ "total": 2787
+ },
+ "targetTranslated": {
+ "tmMatch": 123,
+ "default": 2557,
+ "total": 2680
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 110,
+ "default": 2677,
+ "total": 2787
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14375966,
+ "username": "tigger_ik_thai",
+ "fullName": "Chicken Alone (tigger_ik_thai)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14375966/medium/0ff66585f092e7bf690ff8fcbc2af4b7.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 29,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 16,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 29,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14220392,
+ "username": "ChihChengLiang",
+ "fullName": "Chih Cheng Liang (ChihChengLiang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220392/medium/bc9a0361c42eb9f4e64fb8b05b8df8b5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 160
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 160
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 155,
+ "total": 160
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 245,
+ "total": 257
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 155,
+ "total": 160
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14538368,
+ "username": "chitrongnick06",
+ "fullName": "Chitnarong Yapho (chitrongnick06)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14538368/medium/5ab3cc50cf7c04f652dc29303cacfec8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 184
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 184
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 182,
+ "total": 184
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 183,
+ "total": 185
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 182,
+ "total": 184
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687158,
+ "username": "st.elmo",
+ "fullName": "Chopper Kim (st.elmo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687158/medium/34ab22fe56d737571b05b2f91d304062.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984185,
+ "username": "0xiguana",
+ "fullName": "Chris Lee (0xiguana)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984185/medium/262b7d8ef8c2b3a21a0d7e9f992acf7a.png",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13994103,
+ "username": "Alphaaa",
+ "fullName": "Christian Mazzola (Alphaaa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994103/medium/8fada44cb640c9f08080ce6ff2955f65.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951147,
+ "username": "ChristinaTomaschuk",
+ "fullName": "Christina Tomaschuk (ChristinaTomaschuk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/266d65118bfebbf56dec2e3321f2c99b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2885
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2885
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 2882,
+ "total": 2885
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 2550,
+ "total": 2553
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 2882,
+ "total": 2885
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14723736,
+ "username": "CDrosos",
+ "fullName": "Christopher Drosos (CDrosos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723736/medium/9ed57e05be46fff5a97dba4af259a3ea.jpg",
+ "preTranslated": 0,
+ "totalCosts": 672
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 672
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 658,
+ "total": 672
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 694,
+ "total": 702
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 658,
+ "total": 672
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14010359,
+ "username": "enochmbaebie",
+ "fullName": "Chukwuemeka Mbaebie (enochmbaebie)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14010359/medium/6009911d59d161eee816cb0694c5b8b7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4556
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ha",
+ "name": "Hausa",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684672",
- "username": "maksatsoltanmyradow76",
- "fullName": "onbir Man (maksatsoltanmyradow76)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684672/medium/617edb3bef1d7d165525185f33c3df54.jpg",
- "joined": "2021-03-26 11:24:40"
- },
- "languages": [
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4555
+ },
+ "translated": {
+ "tmMatch": 135,
+ "default": 4420,
+ "total": 4555
+ },
+ "targetTranslated": {
+ "tmMatch": 148,
+ "default": 4723,
+ "total": 4871
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 135,
+ "default": 4420,
+ "total": 4555
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14983447,
+ "username": "vincentlaucy",
+ "fullName": "Chun Yin Vincent Lau (vincentlaucy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983447/medium/209213ddd4e53e7b0996911c0436f71d.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 2,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 5,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 2,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989121,
+ "username": "sylvianvanbemmel",
+ "fullName": "Chyllvian (sylvianvanbemmel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989121/medium/1507b0b8f93626fb0c0c36cbc12b378d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 560
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 560
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 538,
+ "total": 560
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 521,
+ "total": 539
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 529,
+ "total": 532
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 538,
+ "total": 560
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907227,
+ "username": "CivicLee",
+ "fullName": "Civic Lee (CivicLee)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907227/medium/1f411053836d29859329adf9d2dc3e8b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 150
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 150
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 140,
+ "total": 150
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 209,
+ "total": 231
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 140,
+ "total": 150
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14075861,
+ "username": "ClaireBeydon",
+ "fullName": "Claire Beydon (ClaireBeydon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/91c39f2896fb48bdd42c5cc53e42d2ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18537
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18537
+ },
+ "translated": {
+ "tmMatch": 1445,
+ "default": 17092,
+ "total": 18537
+ },
+ "targetTranslated": {
+ "tmMatch": 1646,
+ "default": 17902,
+ "total": 19548
+ },
+ "translatedByMt": {
+ "tmMatch": 22,
+ "default": 590,
+ "total": 612
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1445,
+ "default": 17092,
+ "total": 18537
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14601556,
+ "username": "lucas.claudiu",
+ "fullName": "Claudiu Lucas (lucas.claudiu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601556/medium/4c77e661505b2e30c25574b9a4ec4e57.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 63,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 63,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 63,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982589,
+ "username": "cleber07.gab",
+ "fullName": "Cleberson Gabriel (cleber07.gab)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982589/medium/0e324ff9259147b8e782e9545f17bbb4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 47,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 51,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 47,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14619736,
+ "username": "ClementLvx",
+ "fullName": "ClementLvx",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619736/medium/84e61bc70bd5bb78a8efd91db2fe8a3a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712008,
+ "username": "clembappe",
+ "fullName": "Clemzer (clembappe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712008/medium/14474686f1dfa0b727f91acf51f46d8e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14220136,
+ "username": "Colinh",
+ "fullName": "Colinhl8 (Colinh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220136/medium/e54405e5092398ddcabc9e6c84c757cf.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1046
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1046
+ },
+ "translated": {
+ "tmMatch": 280,
+ "default": 766,
+ "total": 1046
+ },
+ "targetTranslated": {
+ "tmMatch": 551,
+ "default": 1185,
+ "total": 1736
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 280,
+ "default": 766,
+ "total": 1046
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14816306,
+ "username": "Coppka",
+ "fullName": "Copkka Doktor (Coppka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816306/medium/e6b16332c695ea9e29db0e5aa83b9331.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959409,
+ "username": "Crnls",
+ "fullName": "Cornelius Ihle (Crnls)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959409/medium/6dd1d0fc14e003674c159aa9e911c4cb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1526
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1526
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 1488,
+ "total": 1526
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 1467,
+ "total": 1511
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 1488,
+ "total": 1526
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14580278,
+ "username": "yo_comy",
+ "fullName": "Cosmin Isaila (yo_comy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14580278/medium/4e8c695bee635a7caf9aa6117688f9bd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 143,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 156,
+ "total": 162
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 143,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572568,
+ "username": "costablas",
+ "fullName": "Costantino De Blasiis (costablas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572568/medium/3cbbfc1e2665ea1113e46481e65a3cb8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13558846,
+ "username": "danielwoo394",
+ "fullName": "CrazyBirdie1 (danielwoo394)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13558846/medium/8190d85641d5001ee3ac3766b1dc5896.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14060807,
+ "username": "cristianalexjoy",
+ "fullName": "Cristian Alex-joy (cristianalexjoy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14060807/medium/f563053fbece6f9b5e4d3f8c11989b1e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14594114,
+ "username": "ccbtm83",
+ "fullName": "Cristian Bejinariu (ccbtm83)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594114/medium/450d04d1ebe724824b4927a7d5a958be.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 0,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 72,
+ "default": 0,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 0,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12406629,
+ "username": "cristianolima",
+ "fullName": "Cristiano Lima (cristianolima)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/50c2f3d8215ab743f053fe1fc1107222?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14424588,
+ "username": "crowdsourcekurdi",
+ "fullName": "Crowdsource Kurdish (crowdsourcekurdi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14424588/medium/f5640057ffa61f6c90deb847b4c2b622.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1239
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ku",
+ "name": "Kurdish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1239
+ },
+ "translated": {
+ "tmMatch": 184,
+ "default": 1055,
+ "total": 1239
+ },
+ "targetTranslated": {
+ "tmMatch": 210,
+ "default": 998,
+ "total": 1208
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 184,
+ "default": 1055,
+ "total": 1239
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958973,
+ "username": "cryptobull",
+ "fullName": "Crypto Bull (cryptobull)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2b07e9d536f4e7644986d9dc17d31753?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10070
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10070
+ },
+ "translated": {
+ "tmMatch": 81,
+ "default": 9989,
+ "total": 10070
+ },
+ "targetTranslated": {
+ "tmMatch": 83,
+ "default": 10926,
+ "total": 11009
+ },
+ "translatedByMt": {
+ "tmMatch": 35,
+ "default": 6004,
+ "total": 6039
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 81,
+ "default": 9989,
+ "total": 10070
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558188,
+ "username": "crypto.scout.ita",
+ "fullName": "Crypto Scout (crypto.scout.ita)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558188/medium/20deedb6f30a90a346f62cd892d22330.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1447
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1447
+ },
+ "translated": {
+ "tmMatch": 82,
+ "default": 1365,
+ "total": 1447
+ },
+ "targetTranslated": {
+ "tmMatch": 85,
+ "default": 1465,
+ "total": 1550
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 328,
+ "total": 330
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 82,
+ "default": 1365,
+ "total": 1447
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14726596,
+ "username": "cp_leonardo",
+ "fullName": "César Pineda (cp_leonardo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726596/medium/cae3d03e9fe8e133b699b393d72c87f4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 665
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 665
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 663,
+ "total": 665
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 718,
+ "total": 720
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 663,
+ "total": 665
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950847,
+ "username": "sofiaobal",
+ "fullName": "Cоня Обаль (sofiaobal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950847/medium/6be3834830841526542ebc644307b15a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1037
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1037
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 1027,
+ "total": 1037
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 840,
+ "total": 849
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 1027,
+ "total": 1037
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14970965,
+ "username": "djtouc",
+ "fullName": "DEE JAY TOUC (djtouc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970965/medium/8311d9d4eb154006e92427aab50c1392.png",
+ "preTranslated": 0,
+ "totalCosts": 298
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 298
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 298,
+ "total": 298
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 340,
+ "total": 340
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 271,
+ "total": 271
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 298,
+ "total": 298
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982575,
+ "username": "Dhirajnyse",
+ "fullName": "DJ (Dhirajnyse)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982575/medium/da7bc8b41720e10df6e46a4a76d78bb2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13442389,
+ "username": "dnse",
+ "fullName": "DNSE (dnse)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13442389/medium/a6e71d4e535abf3b6d5c954658a93c70.jpg",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 15,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 14,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 15,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14590264,
+ "username": "sofienedami",
+ "fullName": "Dami Sofien (sofienedami)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14590264/medium/65f1182ca70fe1e101775da0d722d0e5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14717710,
+ "username": "damianmartelletti",
+ "fullName": "Damian Martelletti (damianmartelletti)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717710/medium/519dad3fb3793a299c0c24f5e9ec46f6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035449,
+ "username": "Dan_Landry",
+ "fullName": "Dan Landry (Dan_Landry)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035449/medium/81bf040c3f1fbfe99386b2f003522680.png",
+ "preTranslated": 0,
+ "totalCosts": 195
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 195
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 147,
+ "total": 195
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 171,
+ "total": 220
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 147,
+ "total": 195
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14697500,
+ "username": "rbmilch",
+ "fullName": "Daniel B. (rbmilch)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697500/medium/e8102876603e29ba276175e300c93704.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 168
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 168
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 166,
+ "total": 168
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 142,
+ "total": 144
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 166,
+ "total": 168
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14578222,
+ "username": "Marstwan",
+ "fullName": "Daniel Marcos (Marstwan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578222/medium/5a281f6a007e4d718b2fc857892f54d7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 143
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 123
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 119,
+ "total": 123
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 112,
+ "total": 116
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 119,
+ "total": 123
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817482",
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 19,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 19,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814206,
+ "username": "novoadaniel2",
+ "fullName": "Daniel Novoa (novoadaniel2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814206/medium/67568f30eb32fc4106e9e34eeba4f794.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581548,
+ "username": "danielpg2106",
+ "fullName": "Daniel Pedraza G (danielpg2106)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581548/medium/15cfd2d3d8015efbcfbc20c47deeb5be.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7476
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7476
+ },
+ "translated": {
+ "tmMatch": 278,
+ "default": 7198,
+ "total": 7476
+ },
+ "targetTranslated": {
+ "tmMatch": 301,
+ "default": 7596,
+ "total": 7897
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 3781,
+ "total": 3799
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 278,
+ "default": 7198,
+ "total": 7476
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14767956,
+ "username": "Taigan",
+ "fullName": "Daniel Van mosnenck (Taigan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767956/medium/a72b13affbab7771e971c11783374b34.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14620388,
+ "username": "danielthewolf93",
+ "fullName": "Daniel White (danielthewolf93)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620388/medium/8d1224ce00c0cb29a835ea393629e5f9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 160
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 160
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 160,
+ "total": 160
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 178,
+ "total": 178
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 160,
+ "total": 160
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708720,
+ "username": "DanielLopezSainz",
+ "fullName": "DanielLopezSainz",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708720/medium/61502a29fddc4e6ceca1e731a593dfc3.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14549250,
+ "username": "brizzo1982",
+ "fullName": "Daniele Brizzolari (brizzo1982)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549250/medium/f498eb35d5a5c6213f6a5aff97ae3c73.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780488,
+ "username": "daniil.khyzhniak",
+ "fullName": "Daniil Khyzhniak (daniil.khyzhniak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780488/medium/3cfbd9dab620e021904c163e614199e3.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14962531,
+ "username": "danteivanelizondo",
+ "fullName": "Dante Elizondo (danteivanelizondo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962531/medium/7a7bc42a3b25637aa087669e3e151de3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 428
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 428
+ },
+ "translated": {
+ "tmMatch": 65,
+ "default": 363,
+ "total": 428
+ },
+ "targetTranslated": {
+ "tmMatch": 72,
+ "default": 384,
+ "total": 456
+ },
+ "translatedByMt": {
+ "tmMatch": 34,
+ "default": 53,
+ "total": 87
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 65,
+ "default": 363,
+ "total": 428
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002741,
+ "username": "dariusheslamipor",
+ "fullName": "Dariush Eslami (dariusheslamipor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002741/medium/368ee2e7888434a922e5781aa2c194bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 475
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 475
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 472,
+ "total": 475
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 574,
+ "total": 581
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 472,
+ "total": 475
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14817482,
"username": "daorrcls",
"fullName": "Dark Side (daorrcls)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817482/medium/bf8cead9c35e4c45173b6c616e87b238.jpeg",
- "joined": "2021-06-27 07:24:34"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588140",
- "username": "tang5113",
- "fullName": "唐辉 (tang5113)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588140/medium/5d6d40cda58a566c5d84dd30203463e6.jpg",
- "joined": "2021-01-21 14:10:12"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952299,
+ "username": "casperbgd",
+ "fullName": "Darko (casperbgd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/adffb958eb89911a20d0898bd87550eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 177
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 177
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 175,
+ "total": 177
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 170,
+ "total": 172
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 175,
+ "total": 177
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14599906,
+ "username": "Darnai.Sara",
+ "fullName": "Darnai Sára (Darnai.Sara)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599906/medium/34114c1d1c05de93d9805846e9ae1ffc.jpg",
+ "preTranslated": 0,
+ "totalCosts": 78
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 78
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14606028,
+ "username": "Redii",
+ "fullName": "David (Redii)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606028/medium/5e304c22276ea2aefbc6f8c816f0b750.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 17,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 19,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 17,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13559470,
+ "username": "DavidCai1993",
+ "fullName": "David Cai (DavidCai1993)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559470/medium/1e2b0d1a56fd808a6ae2f7ac6bc45075.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786760,
+ "username": "Christiadarma",
+ "fullName": "David Christiadarma Setiawan (Christiadarma)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786760/medium/0a9de74a9a0f585ec24105d566a0170b.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14265902,
+ "username": "347720",
+ "fullName": "David Husák (347720)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14265902/medium/134ecdbceb81b461a0de9212b6d361e5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 30,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 20,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 30,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14456614,
+ "username": "matousch",
+ "fullName": "David Matoušek (matousch)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14456614/medium/36397004003e01786ac8e254a78c6e74.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14570122,
+ "username": "omraidav",
+ "fullName": "David Omrai (omraidav)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570122/medium/dc6f25765906f624c1e434839c08b03a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780050,
+ "username": "davidsard",
+ "fullName": "David Sardinha (davidsard)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780050/medium/a71a50629c8f17bbc5648dfc208157f8.png",
+ "preTranslated": 0,
+ "totalCosts": 51
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 45,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 46,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 45,
+ "total": 51
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14714636,
+ "username": "dvincent157",
+ "fullName": "David Vincent (dvincent157)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714636/medium/9f04d33ad23f86ccf3a50ed2ef84e3ef.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 25,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 49,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 25,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667186,
+ "username": "dawidthur",
+ "fullName": "Dawid Mateusz Zimoń (dawidthur)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667186/medium/1a4ed5be4891a763568337ffde5b57c9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14136073,
+ "username": "daylimate",
+ "fullName": "Daylimate r (daylimate)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136073/medium/fcebc001e053aae55f2f3c871907003d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 51
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 51,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 51,
+ "total": 51
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784414,
+ "username": "Gregory.Scalet",
+ "fullName": "DeFiGregg (Gregory.Scalet)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784414/medium/3c33d392c019608a477744d2c30ee357.jpg",
+ "preTranslated": 0,
+ "totalCosts": 327
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 327
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 309,
+ "total": 327
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 332,
+ "total": 351
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 89,
+ "total": 90
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 309,
+ "total": 327
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735952,
+ "username": "DeMmAge",
+ "fullName": "DeMmAge",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735952/medium/e04b2e75d4d0e43ccd1b6ee12e0c14a4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14180479,
+ "username": "LQS_BN_linguist",
+ "fullName": "Debjit Sarkar (LQS_BN_linguist)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b5cc2b3a1a09f2b31913f407846d0f9f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12933
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12933
+ },
+ "translated": {
+ "tmMatch": 3851,
+ "default": 9082,
+ "total": 12933
+ },
+ "targetTranslated": {
+ "tmMatch": 6797,
+ "default": 16507,
+ "total": 23304
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13498
+ },
+ "translationCosts": {
+ "tmMatch": 3851,
+ "default": 9082,
+ "total": 12933
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966275,
+ "username": "zer0knowledge",
+ "fullName": "Demir (zer0knowledge)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966275/medium/dead80d7c0e54990ad4fee448e0aacaa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11758
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11758
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 11744,
+ "total": 11758
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 9779,
+ "total": 9796
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 3,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 11744,
+ "total": 11758
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005325,
+ "username": "dmrdemircioglu08",
+ "fullName": "Demir Demircioglu (dmrdemircioglu08)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005325/medium/07bdd1addeecac3fa5c9d1c4469fcdd3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14853674,
+ "username": "fixprogram",
+ "fullName": "Denis (fixprogram)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853674/medium/bcb233640afd14d2584ebedb9347d249.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 73,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 70,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 73,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957025,
+ "username": "denisplaku05",
+ "fullName": "Denis Plaku (denisplaku05)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957025/medium/155eeb9074ad5cc6f16d1c281f019944.png",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 322,
+ "total": 322
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982037,
+ "username": "denyirawan",
+ "fullName": "Deny Anggi Irawan (denyirawan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982037/medium/2c440d6ee2460ca805d18915e7fd58b0.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14242780,
+ "username": "ddp101",
+ "fullName": "Desh Deepak (ddp101)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14242780/medium/c4de74d741a45d01bf651d6b8c5960c2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 293
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 293
+ },
+ "translated": {
+ "tmMatch": 190,
+ "default": 103,
+ "total": 293
+ },
+ "targetTranslated": {
+ "tmMatch": 291,
+ "default": 193,
+ "total": 484
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 190,
+ "default": 103,
+ "total": 293
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990899,
+ "username": "juan.baranowa",
+ "fullName": "Diego Baranowski (juan.baranowa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990899/medium/c7ef51465c9acf0f30c989ec42d6d5d2.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 12,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 16,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 12,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992673,
+ "username": "dmars300",
+ "fullName": "Diego Mares (dmars300)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992673/medium/4add4365ba4bd588ffc2988d4d7966fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14850742,
+ "username": "diegordsx",
+ "fullName": "Diego Rodrigues (diegordsx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850742/medium/aff2ed82538d1337e6edc75ed81bd679.png",
+ "preTranslated": 0,
+ "totalCosts": 190
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 190
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 185,
+ "total": 190
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 183,
+ "total": 189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 185,
+ "total": 190
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563954,
+ "username": "diego-salgado",
+ "fullName": "Diego Salgado (diego-salgado)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563954/medium/4a1788a9cc959a9db35ac60f737b83a9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 55,
+ "total": 58
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 59,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 55,
+ "total": 58
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778910,
+ "username": "dilian.nalbantov",
+ "fullName": "Dilyan Nalbantov (dilian.nalbantov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778910/medium/00559aa3f79533afbbb0eee1b5be29f1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 811
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 811
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 788,
+ "total": 811
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 800,
+ "total": 825
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 788,
+ "total": 811
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844054,
+ "username": "Dimitar1512",
+ "fullName": "Dimitar Ivanov (Dimitar1512)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/21544dd242a11c209c548dd3889e9759?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 714
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 714
+ },
+ "translated": {
+ "tmMatch": 190,
+ "default": 524,
+ "total": 714
+ },
+ "targetTranslated": {
+ "tmMatch": 189,
+ "default": 463,
+ "total": 652
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 190,
+ "default": 524,
+ "total": 714
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13983627,
+ "username": "dina24samir",
+ "fullName": "Dina Samir (dina24samir)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13983627/medium/dc15713cc63793d033ad768808783f1f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 170
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 170
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 164,
+ "total": 170
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 144,
+ "total": 151
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 164,
+ "total": 170
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884086,
+ "username": "491415x",
+ "fullName": "Dino Kralj (491415x)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884086/medium/eefd2b974d2e5b296cc406dc3065fba0.png",
+ "preTranslated": 0,
+ "totalCosts": 2566
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2566
+ },
+ "translated": {
+ "tmMatch": 337,
+ "default": 2229,
+ "total": 2566
+ },
+ "targetTranslated": {
+ "tmMatch": 280,
+ "default": 1714,
+ "total": 1994
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 337,
+ "default": 2229,
+ "total": 2566
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14283374,
+ "username": "diogojpina",
+ "fullName": "Diogo Pina (diogojpina)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14283374/medium/bb727596b30fbd278195918b065cb209.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 26,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992061,
+ "username": "Divanny",
+ "fullName": "Divanny",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992061/medium/932dae148005c8671a50691ac97b7ddc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 362
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 362,
+ "total": 362
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 403,
+ "total": 403
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 275,
+ "total": 275
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 362,
+ "total": 362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14805836,
+ "username": "dmitriydamaru",
+ "fullName": "Dmitriy Damaru (dmitriydamaru)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805836/medium/1fb2a40c0c75451f65b0324c4e66762f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14578658,
+ "username": "soldi",
+ "fullName": "Dmitriy Didovich (soldi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578658/medium/cf09d1f26146717047e03e181ac79b16.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 289
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 289
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 285,
+ "total": 289
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 285,
+ "total": 289
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 285,
+ "total": 289
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973999,
+ "username": "deadinside",
+ "fullName": "Dmytro (deadinside)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973999/medium/e78028a33f442fd5ef071b87b758a415.png",
+ "preTranslated": 0,
+ "totalCosts": 239
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 239
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 237,
+ "total": 239
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 215,
+ "total": 217
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 237,
+ "total": 239
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632436,
+ "username": "dkoval",
+ "fullName": "Dmytro Koval (dkoval)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632436/medium/99039f1fbb13f12187c9f08d10cbd50a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 3,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 2,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 3,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14125983,
+ "username": "doanhlv",
+ "fullName": "Doanh Văn Lương (doanhlv)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125983/medium/f7bd2cd492ff0799dba4bd3b5850f97d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 16,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 28,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 16,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14063663,
+ "username": "lapointed338",
+ "fullName": "Dominic Lapointe (lapointed338)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14063663/medium/f827847f36281a560fbcb6d06773c58e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1049
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1049
+ },
+ "translated": {
+ "tmMatch": 461,
+ "default": 588,
+ "total": 1049
+ },
+ "targetTranslated": {
+ "tmMatch": 516,
+ "default": 672,
+ "total": 1188
+ },
+ "translatedByMt": {
+ "tmMatch": 242,
+ "default": 559,
+ "total": 801
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 461,
+ "default": 588,
+ "total": 1049
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779894,
+ "username": "willemringnalda",
+ "fullName": "Don Willy (willemringnalda)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779894/medium/b053311fee67d8e8d1bb6a197022979b.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14498178,
+ "username": "3kqgt0cl",
+ "fullName": "Donald Iljazi (3kqgt0cl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498178/medium/17a52dd71aa2eb0f27fae7203510d233.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14651796,
+ "username": "iveseenawayout",
+ "fullName": "Donatella Delpiano (iveseenawayout)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14651796/medium/8ad9e4453e2f50fb5c230cc227f4da1a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 99
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 99
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 47,
+ "total": 99
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 55,
+ "total": 105
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 47,
+ "total": 99
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937349,
+ "username": "doritbenvakil",
+ "fullName": "Dorit Ben Vakil (doritbenvakil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937349/medium/d94e0fb70b144ad3e88293dd5538a58e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14967909,
+ "username": "douglasgj",
+ "fullName": "Douglas Galisteo (douglasgj)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967909/medium/6dc4ca79a5d03006f0f73089101bbd1d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759682",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/b93e7425aa8f14a9be4e163b0dc1d651?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 13:20:23"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14147269,
+ "username": "OnoDK",
+ "fullName": "Douglas Ono (OnoDK)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14147269/medium/1944bd766c80e354ec3810fd4fb86115.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 0,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 0,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 0,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861994,
+ "username": "DougPimentel",
+ "fullName": "Douglas Pimentel (DougPimentel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2bb137811df634f2bebf5519f13d0313?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 97
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 97
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 95,
+ "total": 97
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 114,
+ "total": 116
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 95,
+ "total": 97
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786426,
+ "username": "Drmasoudrezaei",
+ "fullName": "Dr Masoud Rezaei (Drmasoudrezaei)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786426/medium/655a2e23f8fe6400cf5260b7ebd6f504.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 43,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 102,
+ "default": 455,
+ "total": 557
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 43,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14808924,
+ "username": "DreamerM",
+ "fullName": "Dreamer-M (DreamerM)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808924/medium/46e29fd1040a6e72e30c12277beb89fd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 139
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 139
+ },
+ "translated": {
+ "tmMatch": 61,
+ "default": 78,
+ "total": 139
+ },
+ "targetTranslated": {
+ "tmMatch": 89,
+ "default": 101,
+ "total": 190
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 23,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 61,
+ "default": 78,
+ "total": 139
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030799,
+ "username": "DushicaU",
+ "fullName": "Dusica Udovicki (DushicaU)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030799/medium/a5b101b66042af522070c34cf65d7805.jpg",
+ "preTranslated": 0,
+ "totalCosts": 244
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 244
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 197,
+ "total": 244
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 193,
+ "total": 240
+ },
+ "translatedByMt": {
+ "tmMatch": 36,
+ "default": 0,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 197,
+ "total": 244
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14621776,
+ "username": "fatmaladwi540",
+ "fullName": "Dwi Fatmala (fatmaladwi540)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621776/medium/902dabf9ccab0ee2726f67ca5d7b810f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13842283,
+ "username": "Dzenan",
+ "fullName": "Dženan (Dzenan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13842283/medium/bbfb9ef4136417577f368ab059d20644.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 13,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 9,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 13,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14364086,
+ "username": "elenasapnit",
+ "fullName": "ELENA SAPNIT (elenasapnit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364086/medium/593b8599802ba4ca6aeecbdb4bb11966.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 61
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 61
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 61,
+ "total": 61
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 61,
+ "total": 61
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959105,
+ "username": "emmtnnx",
+ "fullName": "EMMTNNX (emmtnnx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959105/medium/e2785b9e5fd171ccf129563a19844fd9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14852734,
+ "username": "0xEthDuzIt",
+ "fullName": "ETHY-E (0xEthDuzIt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852734/medium/da1e9138c30b0fbcfd54f987a7e55328.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3184
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3184
+ },
+ "translated": {
+ "tmMatch": 199,
+ "default": 2985,
+ "total": 3184
+ },
+ "targetTranslated": {
+ "tmMatch": 522,
+ "default": 5586,
+ "total": 6108
+ },
+ "translatedByMt": {
+ "tmMatch": 24,
+ "default": 344,
+ "total": 368
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 199,
+ "default": 2985,
+ "total": 3184
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771472,
+ "username": "Eason_Wang",
+ "fullName": "Eason Wang (Eason_Wang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771472/medium/af427b7ae2024d379e57f6324179e0ad.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 870
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 870
+ },
+ "translated": {
+ "tmMatch": 41,
+ "default": 829,
+ "total": 870
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 1141,
+ "total": 1193
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 124,
+ "total": 124
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 41,
+ "default": 829,
+ "total": 870
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771650,
+ "username": "EasonWW",
+ "fullName": "EasonWW",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771650/medium/bdfc60c7672791687a1ad086f1690ae3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14076463,
+ "username": "EceBelgin",
+ "fullName": "EceBelgin",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14076463/medium/0f9f99426f4b3be4a7b50b719686556d.png",
+ "preTranslated": 0,
+ "totalCosts": 1716
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1716
+ },
+ "translated": {
+ "tmMatch": 556,
+ "default": 1160,
+ "total": 1716
+ },
+ "targetTranslated": {
+ "tmMatch": 515,
+ "default": 1204,
+ "total": 1719
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 556,
+ "default": 1160,
+ "total": 1716
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14128555,
+ "username": "ed.eyon",
+ "fullName": "Edan-David Eyon (ed.eyon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14128555/medium/ad9a529567c40b155006d2beff4593fb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14560234,
+ "username": "edd34",
+ "fullName": "Eddine OMAR (edd34)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560234/medium/0534091c65c2a4c5949ac664e467447a.png",
+ "preTranslated": 0,
+ "totalCosts": 189
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 189
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 164,
+ "total": 189
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 186,
+ "total": 215
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 144,
+ "total": 144
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 164,
+ "total": 189
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14945275,
+ "username": "orellana.edgardo8901",
+ "fullName": "Edgardo Yanez (orellana.edgardo8901)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945275/medium/b1d4c6e48bf2de4b9bbfd1cae7585cd5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958819,
+ "username": "C91F37",
+ "fullName": "Edmund Sze (C91F37)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958819/medium/969ab87657bee77450e67bd3a62c709e.png",
+ "preTranslated": 0,
+ "totalCosts": 11924
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8383
+ },
+ "translated": {
+ "tmMatch": 64,
+ "default": 8319,
+ "total": 8383
+ },
+ "targetTranslated": {
+ "tmMatch": 107,
+ "default": 8879,
+ "total": 8986
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 386,
+ "total": 392
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 64,
+ "default": 8319,
+ "total": 8383
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587244",
- "username": "Firman_Nur",
- "fullName": "Firman_Nur",
- "avatarUrl": "https://www.gravatar.com/avatar/7101c7e5e10c284f76eea77e3f0cf494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 09:36:31"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3541
+ },
+ "translated": {
+ "tmMatch": 75,
+ "default": 3466,
+ "total": 3541
+ },
+ "targetTranslated": {
+ "tmMatch": 109,
+ "default": 4851,
+ "total": 4960
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 75,
+ "default": 3466,
+ "total": 3541
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14777840,
+ "username": "educordobac",
+ "fullName": "Edu Córdoba (educordobac)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777840/medium/28e0c7c5a9b9377a04173c40e52eb5f2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 165
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 116,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 111,
+ "total": 115
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 116,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686748",
- "username": "Zerr0z",
- "fullName": "Zerr0z",
- "avatarUrl": "https://www.gravatar.com/avatar/29d7001f6ce7c3f647f7f5e552b5a435?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 04:39:40"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 34,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 36,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 34,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14911889,
+ "username": "Doria98",
+ "fullName": "Eduardo Doria (Doria98)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911889/medium/6a8c99b54c65c2c66efadaa47f227bb0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 660
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 660
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 604,
+ "total": 660
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 604,
+ "total": 660
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 604,
+ "total": 660
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643068,
+ "username": "egelizo",
+ "fullName": "Eduardo Gelizo (egelizo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643068/medium/f6f25b4f0e429a11e235ade8d866b314.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10699
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10266
+ },
+ "translated": {
+ "tmMatch": 242,
+ "default": 10024,
+ "total": 10266
+ },
+ "targetTranslated": {
+ "tmMatch": 294,
+ "default": 11085,
+ "total": 11379
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 242,
+ "default": 10024,
+ "total": 10266
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14404560",
- "username": "servanozel",
- "fullName": "Şerwan Özel (servanozel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14404560/medium/cf09192f96468b012ef35a77df993095.jpeg",
- "joined": "2020-09-30 11:16:47"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 433
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 432,
+ "total": 433
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 574,
+ "total": 576
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 432,
+ "total": 433
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14648500,
+ "username": "eduardogomes",
+ "fullName": "Eduardo Gomes (eduardogomes)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/98a2e53c0794848fe2b91451ff46c150?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 128
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 128
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 124,
+ "total": 128
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 118,
+ "total": 123
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 35,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 124,
+ "total": 128
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14289592,
+ "username": "justaspauser",
+ "fullName": "Eduardo Gutierrez (justaspauser)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289592/medium/7d255374ccf7df84b6367ee880659fc7.png",
+ "preTranslated": 0,
+ "totalCosts": 15010
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15010
+ },
+ "translated": {
+ "tmMatch": 61,
+ "default": 14949,
+ "total": 15010
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 15821,
+ "total": 15872
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 794,
+ "total": 794
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 61,
+ "default": 14949,
+ "total": 15010
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14699938,
+ "username": "Depolice",
+ "fullName": "Edvardas Dervis (Depolice)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699938/medium/279d2e40a8a6d6481ec1110aa6bfe95b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 5,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 5,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 5,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14980407,
+ "username": "effy.yin",
+ "fullName": "Effy Yin (effy.yin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14980407/medium/5d9e6f53ff114ccf4f721d700110ee13.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12926776,
+ "username": "mejlus",
+ "fullName": "Egidijus Griešnovas (mejlus)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8ec6a8da77fd961397b9919437b50e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 70
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 70
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 54,
+ "total": 70
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 54,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 54,
+ "total": 70
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14331852,
+ "username": "keepsmile9735",
+ "fullName": "Ehh BpakKau Hott (keepsmile9735)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14331852/medium/35e819d1e0f4934f8a96f32b0cda738c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 817
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 817
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 765,
+ "total": 817
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 765,
+ "total": 817
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 765,
+ "total": 817
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814690,
+ "username": "khodaarahmi",
+ "fullName": "Ehsan Khodaarahmi (khodaarahmi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814690/medium/22dbf1e43823e76cb094bff3fdcca212.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 184
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 184
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 183,
+ "total": 184
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 230,
+ "total": 232
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 183,
+ "total": 184
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14868458,
+ "username": "EiriniGearkidou",
+ "fullName": "Eirini Gerakidou (EiriniGearkidou)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0473f289979b00a0ee2670e7337eabb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1820
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eo",
+ "name": "Esperanto",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581570",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/71c03118449e25c8b1ce50800433d1b5?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 16:03:20"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1786
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 1769,
+ "total": 1786
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 1909,
+ "total": 1937
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 203,
+ "total": 204
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 1769,
+ "total": 1786
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778992,
+ "username": "IsmaelRC",
+ "fullName": "El Gato (IsmaelRC)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778992/medium/646865835d4b959bf3bfca67b66ef04f.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 12,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14270636,
+ "username": "elijose55",
+ "fullName": "Eli Jose (elijose55)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14270636/medium/8c730bd4a4b8b15141241de2b42b1b96.png",
+ "preTranslated": 0,
+ "totalCosts": 3477
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3477
+ },
+ "translated": {
+ "tmMatch": 1096,
+ "default": 2381,
+ "total": 3477
+ },
+ "targetTranslated": {
+ "tmMatch": 1132,
+ "default": 2567,
+ "total": 3699
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1096,
+ "default": 2381,
+ "total": 3477
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14146191,
+ "username": "elias12",
+ "fullName": "Elias Buchwald (elias12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146191/medium/76dbc4894257123acf27ea9ad87b1ed3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14587890,
+ "username": "Elikill58",
+ "fullName": "Elikill58",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587890/medium/1d5b3a9de8a7b7f6082357f1fe99d654.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1203
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1203
+ },
+ "translated": {
+ "tmMatch": 230,
+ "default": 973,
+ "total": 1203
+ },
+ "targetTranslated": {
+ "tmMatch": 261,
+ "default": 1127,
+ "total": 1388
+ },
+ "translatedByMt": {
+ "tmMatch": 21,
+ "default": 647,
+ "total": 668
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 230,
+ "default": 973,
+ "total": 1203
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14339720,
+ "username": "eltonbsousa",
+ "fullName": "Elton Sousa (eltonbsousa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14339720/medium/bc7ec6601a6f1d6e011eb064d31520dc.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2005
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2005
+ },
+ "translated": {
+ "tmMatch": 276,
+ "default": 1729,
+ "total": 2005
+ },
+ "targetTranslated": {
+ "tmMatch": 291,
+ "default": 1869,
+ "total": 2160
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 276,
+ "default": 1729,
+ "total": 2005
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14663688,
+ "username": "Elvis339",
+ "fullName": "Elvis (Elvis339)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663688/medium/ee99bf7167513672a05a4bda2ee9e428.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13965277,
+ "username": "eman.herawy",
+ "fullName": "Eman Herawy (eman.herawy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13965277/medium/72ad97786d19f2619fc1b273b1a834ee.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3494
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3494
+ },
+ "translated": {
+ "tmMatch": 117,
+ "default": 3377,
+ "total": 3494
+ },
+ "targetTranslated": {
+ "tmMatch": 119,
+ "default": 3300,
+ "total": 3419
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 117,
+ "default": 3377,
+ "total": 3494
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14544944,
+ "username": "emersonlaurentino",
+ "fullName": "Emerson Laurentino (emersonlaurentino)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544944/medium/307497c490b2c0b11fd011f5f1938cf8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730618,
+ "username": "emilnachev69",
+ "fullName": "Emil Nachev (emilnachev69)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730618/medium/4cb6f96ea43b40aeabd58221e4ced361.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 28,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 28,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12658643,
+ "username": "dirt3009",
+ "fullName": "Emir (dirt3009)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/55605080b2490591262896be930bed38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14040513,
+ "username": "emmafritzberg",
+ "fullName": "Emma Fritzberg (emmafritzberg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14040513/medium/074733460ae8d667fd66deb589df2991.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 102
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 102
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 100,
+ "total": 102
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 101,
+ "total": 103
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 100,
+ "total": 102
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14559932,
+ "username": "emanu.ti",
+ "fullName": "Emmanuel de Carvalho Garcia (emanu.ti)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559932/medium/b031ab210c0b9edc01dcea8f4825f8ad.png",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 81,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 89,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 24,
+ "total": 31
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 81,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14038506,
+ "username": "ceynh212121",
+ "fullName": "Emrah Basbug (ceynh212121)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14038506/medium/56c0c675c69229e868983b232d07edf7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 41,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 27,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 41,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14570934,
+ "username": "emrekurt713",
+ "fullName": "Emre Kurt (emrekurt713)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570934/medium/a0723a0b910f0080d55afbc1c234a8ec.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14414268,
+ "username": "enricserra90",
+ "fullName": "Enric Serra (enricserra90)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14414268/medium/e35a7a7c2b65ad37a36cc01551c392b0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 905
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 905
+ },
+ "translated": {
+ "tmMatch": 708,
+ "default": 197,
+ "total": 905
+ },
+ "targetTranslated": {
+ "tmMatch": 762,
+ "default": 216,
+ "total": 978
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 708,
+ "default": 197,
+ "total": 905
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14584972,
+ "username": "EnsarYusuf",
+ "fullName": "Ensar Yusuf YILMAZ (EnsarYusuf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584972/medium/c24e039f3f95bea52a0f8742c23615c6.png",
+ "preTranslated": 0,
+ "totalCosts": 1860
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1860
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 1825,
+ "total": 1860
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 1665,
+ "total": 1706
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 1825,
+ "total": 1860
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14877334,
+ "username": "Ergi18",
+ "fullName": "Ergi (Ergi18)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877334/medium/4c61f13d89fbae72ff61c0bc2071b6fe.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14554170,
+ "username": "eriknoronha",
+ "fullName": "Erik Noronha (eriknoronha)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554170/medium/b6bf26ec67d0187f0829c5a6256d68b2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14035594,
+ "username": "essame.samman",
+ "fullName": "Essame Samman (essame.samman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035594/medium/7bed72a4e8e6db4496fcd670c99575c2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677802,
+ "username": "Esteban_Piedrah",
+ "fullName": "Esteban_Piedrah",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677802/medium/407d37cc5288c7db6ff35ae7d6791aa8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13897487,
+ "username": "ethdotorg",
+ "fullName": "Ethereum.org Team (ethdotorg)",
+ "userRole": "Owner",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13897487/medium/246e50d7e9ccde07088ed892b07a0efd.png",
+ "preTranslated": 294737,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 704,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 110,
+ "default": 0,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 0,
+ "total": 110
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 108
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14408684",
- "username": "sadanaitongnun",
- "fullName": "SGTDANAITONGNUN TH# แม๊กเหนือเมฆ (sadanaitongnun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14408684/medium/2f40952af4e1418b6c27bfe6b919a705.jpeg",
- "joined": "2020-09-09 00:46:20"
- },
- "languages": [
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 103,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 699,
+ "default": 4,
+ "total": 703
+ },
+ "targetTranslated": {
+ "tmMatch": 540,
+ "default": 4,
+ "total": 544
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14011385",
- "username": "CAG07",
- "fullName": "CAG07",
- "avatarUrl": "https://www.gravatar.com/avatar/e30ead2a487194217aa228315238634a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-12 10:32:31"
- },
- "languages": [
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 3571,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10142,
+ "default": 14,
+ "total": 10156
+ },
+ "targetTranslated": {
+ "tmMatch": 9828,
+ "default": 15,
+ "total": 9843
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1877
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14008739",
- "username": "amusfq",
- "fullName": "amusfq",
- "avatarUrl": "https://www.gravatar.com/avatar/43507a8d5cd23a2ed4a21a44b4416a1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-09 18:59:25"
- },
- "languages": [
+ "language": {
+ "id": "az",
+ "name": "Azerbaijani",
+ "tmSavings": 0,
+ "preTranslate": 53,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595752",
- "username": "furkannnn400",
- "fullName": "furkan öztürk (furkannnn400)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595752/medium/5b27fe969246c5c11131aaf3820a75f1.jpeg",
- "joined": "2021-01-26 17:51:07"
- },
- "languages": [
+ "language": {
+ "id": "eu",
+ "name": "Basque",
+ "tmSavings": 0,
+ "preTranslate": 314,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713486",
- "username": "Mr.sajad_shirazi",
- "fullName": "Sajad Shirazi (Mr.sajad_shirazi)",
- "avatarUrl": "https://www.gravatar.com/avatar/998b7b85f1a4c127a0d1d0e7257320a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 17:01:41"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 751,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9381,
+ "default": 39,
+ "total": 9420
+ },
+ "targetTranslated": {
+ "tmMatch": 16494,
+ "default": 61,
+ "total": 16555
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1696
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878450",
- "username": "mehdiag",
- "fullName": "mehdiag",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878450/medium/8f0956ecbb3970e1855a5dbc85de7525.jpeg",
- "joined": "2021-10-05 15:56:52"
- },
- "languages": [
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 17,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 924,
+ "default": 3,
+ "total": 927
+ },
+ "targetTranslated": {
+ "tmMatch": 1190,
+ "default": 5,
+ "total": 1195
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 299
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14598938",
- "username": "galal12345",
- "fullName": "galal12345",
- "avatarUrl": "https://www.gravatar.com/avatar/eb205cb8e35658c41eae439ab4f542b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-28 13:07:49"
- },
- "languages": [
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 120,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 233,
+ "default": 0,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 236,
+ "default": 0,
+ "total": 236
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 110
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13985383",
- "username": "xxmrmemedroidxx",
- "fullName": "xXMr MemeXx (xxmrmemedroidxx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13985383/medium/5f88fcd17dee6d833bcb95594bedd4ee.jpeg",
- "joined": "2021-01-08 08:14:44"
- },
- "languages": [
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 6456,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1183,
+ "default": 4,
+ "total": 1187
+ },
+ "targetTranslated": {
+ "tmMatch": 1222,
+ "default": 6,
+ "total": 1228
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 193
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14359710",
- "username": "faww",
- "fullName": "faww",
- "avatarUrl": "https://www.gravatar.com/avatar/a6efe428b003f14e2a9a4397a736a08d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-29 06:45:27"
- },
- "languages": [
+ "language": {
+ "id": "my",
+ "name": "Burmese",
+ "tmSavings": 0,
+ "preTranslate": 56,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 1,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14517778",
- "username": "leekarmeng5",
- "fullName": "leekarmeng5",
- "avatarUrl": "https://www.gravatar.com/avatar/16cb72d90659a7b114b33b3ee36751d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 02:42:03"
- },
- "languages": [
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 2622,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5240,
+ "default": 0,
+ "total": 5240
+ },
+ "targetTranslated": {
+ "tmMatch": 5840,
+ "default": 0,
+ "total": 5840
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 580
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768694",
- "username": "ricardo85x",
- "fullName": "Ricardo T (ricardo85x)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14768694/medium/e63f9b8d3d789dc08be178d569abef0d.jpeg",
- "joined": "2021-05-22 19:09:58"
- },
- "languages": [
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 20275,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10446,
+ "default": 72,
+ "total": 10518
+ },
+ "targetTranslated": {
+ "tmMatch": 16561,
+ "default": 155,
+ "total": 16716
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1792
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034542",
- "username": "kukkaimangpor",
- "fullName": "Kai Suriyont (kukkaimangpor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034542/medium/42c138f8b0633dc37c653cc9d6157f3b.jpeg",
- "joined": "2019-11-11 13:36:30"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 20295,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9777,
+ "default": 4843,
+ "total": 14620
+ },
+ "targetTranslated": {
+ "tmMatch": 14296,
+ "default": 7542,
+ "total": 21838
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1383
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934237",
- "username": "sajjadishaqi",
- "fullName": "Sajjad Is-Haqi Nasrabadi (sajjadishaqi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934237/medium/e459d70115f623d3e60249597fcb6a74.jpeg",
- "joined": "2021-09-23 03:04:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933753",
- "username": "15manson84",
- "fullName": "Александр Никитин (15manson84)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14933753/medium/7ec26e18c0da6e1027f4201c28938a7f.png",
- "joined": "2021-09-22 16:21:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550742",
- "username": "Mischa555",
- "fullName": "Mischa555",
- "avatarUrl": "https://www.gravatar.com/avatar/5b550c4cab3d22fd3ba47c95c0a857ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 03:44:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14456878",
- "username": "Osama210",
- "fullName": "Osama ma (Osama210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14456878/medium/f1044b2a8cc01db820b77f89b4d9d8c6.jpg",
- "joined": "2020-10-14 21:47:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13322598",
- "username": "hunikal",
- "fullName": "Eslam Mahmoud (hunikal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13322598/medium/87163ed4a6dc5c7f9e34cc1591cc099c.jpg",
- "joined": "2021-05-07 18:52:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14529066",
- "username": "glaucomaximo",
- "fullName": "Glauco Maximo (glaucomaximo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14529066/medium/c6590d401123402ad52bc09065ae4ecc.jpeg",
- "joined": "2021-05-23 22:05:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13029232",
- "username": "radium83",
- "fullName": "radium83",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13029232/medium/a5a0acf5bbd820d36d120bf38dab0b0f.png",
- "joined": "2021-03-23 09:37:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14518542",
- "username": "romankharcenko42",
- "fullName": "Роман Харченко (romankharcenko42)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14518542/medium/a8f30f5ce27a9e8dae9b22f385a4bed9.jpeg",
- "joined": "2020-12-02 05:47:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553338",
- "username": "User20202",
- "fullName": "User20202",
- "avatarUrl": "https://www.gravatar.com/avatar/bb4b9b33d356e7b17db4b2c866996add?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 05:30:34"
- },
- "languages": [
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 3274,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 287,
+ "default": 0,
+ "total": 287
+ },
+ "targetTranslated": {
+ "tmMatch": 291,
+ "default": 0,
+ "total": 291
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 184
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023035",
- "username": "marastrada_47",
- "fullName": "Marcela Astrada (marastrada_47)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023035/medium/6a4b89be3013667de635b3150aace872.jpeg",
- "joined": "2021-11-19 13:30:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549776",
- "username": "Nerimax",
- "fullName": "Massimo Neri (Nerimax)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549776/medium/cca0133c143af94806c140d861b4b0d4.jpeg",
- "joined": "2020-12-25 07:15:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14533158",
- "username": "bnistor4",
- "fullName": "Bogdan (bnistor4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14533158/medium/79ef99c918c14854db8225f6ca79cf11.jpeg",
- "joined": "2021-02-01 03:52:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14461372",
- "username": "hayalet35",
- "fullName": "hayalet35",
- "avatarUrl": "https://www.gravatar.com/avatar/839adfbf4335b6e32461620ee01902c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 12:56:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14535854",
- "username": "LeKritk",
- "fullName": "LeKritk",
- "avatarUrl": "https://www.gravatar.com/avatar/4328bc9d968b39e815f742c4b979c35b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-14 10:40:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934855",
- "username": "andrea.barp",
- "fullName": "Andrea Barp (andrea.barp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934855/medium/05fb687333d6e0795b70fd3b696451a3.jpeg",
- "joined": "2021-09-23 11:42:30"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 3852,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10173,
+ "default": 9,
+ "total": 10182
+ },
+ "targetTranslated": {
+ "tmMatch": 10124,
+ "default": 10,
+ "total": 10134
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1672
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023179",
- "username": "marcocai",
- "fullName": "MX C (marcocai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023179/medium/ed669b07ab737c476faf64de043d7262.png",
- "joined": "2021-11-19 16:12:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935043",
- "username": "Cryptotranslator34",
- "fullName": "Mauricio Streicher (Cryptotranslator34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935043/medium/7a0c6527dd41d0221a3ef016afac09df.jpg",
- "joined": "2021-09-23 13:53:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14463136",
- "username": "RLlane2126",
- "fullName": "Lane rashaad (RLlane2126)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14463136/medium/c1181368fcbb1e6baf3e64eaab8227e1.jpeg",
- "joined": "2020-10-19 17:53:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026867",
- "username": "shunkakinoki",
- "fullName": "Shun Kakinoki (shunkakinoki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026867/medium/35fac03c88fd81a65efd2c22cb71d2c3.jpeg",
- "joined": "2021-11-22 17:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026729",
- "username": "csxHiker",
- "fullName": "csxHiker",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026729/medium/ce6cce4b0805785c77d7557f108807c0.jpeg",
- "joined": "2021-11-22 15:22:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935191",
- "username": "omrfrktarhn",
- "fullName": "omrfrktarhn",
- "avatarUrl": "https://www.gravatar.com/avatar/73385c684d92f5d0c558879b1281cb5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 16:35:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14470932",
- "username": "vinbrain.test",
- "fullName": "VinBrain Test (vinbrain.test)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14470932/medium/1c937ed466dea6312c65aedda9cee500.jpg",
- "joined": "2020-10-26 04:21:07"
- },
- "languages": [
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 842,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 109,
+ "default": 0,
+ "total": 109
+ },
+ "targetTranslated": {
+ "tmMatch": 111,
+ "default": 0,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 9
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13128387",
- "username": "hamzafirat",
- "fullName": "hamzafirat",
- "avatarUrl": "https://www.gravatar.com/avatar/d4289ccee9cb36820af69804368abfd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 12:50:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935269",
- "username": "medsemo334",
- "fullName": "Semo Med (medsemo334)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935269/medium/a19bc3c2b95ffb85db430baeba1e249d.png",
- "joined": "2021-09-23 18:02:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553490",
- "username": "ferranrego",
- "fullName": "Ferran (ferranrego)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553490/medium/3d8c83e08bf6efa11a2c16d1a30d8106.jpeg",
- "joined": "2020-12-28 08:08:12"
- },
- "languages": [
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 878,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9194,
+ "default": 9,
+ "total": 9203
+ },
+ "targetTranslated": {
+ "tmMatch": 9139,
+ "default": 10,
+ "total": 9149
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1855
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13015456",
- "username": "padila50",
- "fullName": "Padila Yakub (padila50)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13015456/medium/eecd637c95c792b732531362bdfc5eca.jpg",
- "joined": "2021-04-11 21:27:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14456286",
- "username": "k0s",
- "fullName": "k0s",
- "avatarUrl": "https://www.gravatar.com/avatar/1319ba80f7b88aa379b5b0265e116238?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-10-17 13:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14930681",
- "username": "margikbaxi",
- "fullName": "Margik Baxi (margikbaxi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14930681/medium/578857ac3d0937c31b79d62a6188ceaf.jpeg",
- "joined": "2021-09-20 11:29:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022697",
- "username": "juanri",
- "fullName": "juanri",
- "avatarUrl": "https://www.gravatar.com/avatar/8364006c1c853ce35a365dfb1e1b15ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 08:39:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950715",
- "username": "Zeldron",
- "fullName": "Zeldron",
- "avatarUrl": "https://www.gravatar.com/avatar/a04f05f2c43fecdb3f81fcf4b9bf629a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 05:22:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028143",
- "username": "javadka",
- "fullName": "javadka",
- "avatarUrl": "https://www.gravatar.com/avatar/cdcfff48448ded799b6ca950991d5173?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 13:56:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022831",
- "username": "youyibai",
- "fullName": "waitkeeper (youyibai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022831/medium/2570dd20ed530c035d7736830f7d1dd0.png",
- "joined": "2021-11-19 10:37:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947215",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/d14eb0d8654651a8823553657b6fb4e8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 09:59:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929425",
- "username": "Azuregold242",
- "fullName": "Azuregold242",
- "avatarUrl": "https://www.gravatar.com/avatar/0cd25f4f98cb1f276feca5301d6e76f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 12:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027697",
- "username": "Faneitedgar",
- "fullName": "Faneitedgar",
- "avatarUrl": "https://www.gravatar.com/avatar/fd4a8c156f48bb513c6696e7cf6a038b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 08:17:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557890",
- "username": "Saswatisb28",
- "fullName": "Saswatisb28",
- "avatarUrl": "https://www.gravatar.com/avatar/9ae67b079b177bc3bfe5679fffe9f8a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-31 23:43:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929863",
- "username": "LizGarcia",
- "fullName": "LizGarcia",
- "avatarUrl": "https://www.gravatar.com/avatar/115c037791bf7a44dc52221a59bf3aff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 20:43:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022841",
- "username": "7766to",
- "fullName": "7766to",
- "avatarUrl": "https://www.gravatar.com/avatar/1dee8b91e42c4fdead08492f70fda6a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 10:44:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557368",
- "username": "jacknjones561",
- "fullName": "V. A. (jacknjones561)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14557368/medium/3b8101c4982e72b3678f0ec668d2b7d6.jpg",
- "joined": "2020-12-31 10:05:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024013",
- "username": "simonedelpopolo",
- "fullName": "simonedelpopolo",
- "avatarUrl": "https://www.gravatar.com/avatar/7284d2f17a7f3f77319b01dc75ed3ad2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 10:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14438822",
- "username": "radidetrove24393",
- "fullName": "fix Antakara (radidetrove24393)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14438822/medium/c936e3a14b873f9790b81e9a55f56126.jpeg",
- "joined": "2021-01-09 01:37:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949877",
- "username": "danangtomo",
- "fullName": "Danang Estutomoaji (danangtomo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949877/medium/7cd6fbee384ca4fceaaf30e5cd5bb210.png",
- "joined": "2021-10-04 13:00:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556966",
- "username": "Yu-s",
- "fullName": "Yusuke Ishizuka (Yu-s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14556966/medium/ab7ff2a88c2b228fee9fe42519d0f916.jpeg",
- "joined": "2020-12-31 00:51:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931363",
- "username": "laiyenju",
- "fullName": "Lai Yen Ju (laiyenju)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931363/medium/2cc7c7128f51729fd201b84aa4f376f2.jpeg",
- "joined": "2021-09-20 23:41:06"
- },
- "languages": [
+ "language": {
+ "id": "eo",
+ "name": "Esperanto",
+ "tmSavings": 0,
+ "preTranslate": 74,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 272,
+ "default": 3,
+ "total": 275
+ },
+ "targetTranslated": {
+ "tmMatch": 251,
+ "default": 3,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 102
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027289",
- "username": "Ether_acha",
- "fullName": "Rosa Charrys (Ether_acha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027289/medium/3c812dcc53b5f6f88356d5162eca6c2f.png",
- "joined": "2021-11-23 03:22:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12960135",
- "username": "feamcor",
- "fullName": "Fábio Corrêa (feamcor)",
- "avatarUrl": "https://www.gravatar.com/avatar/5a9aba8ef994ea1690e4dcd0ba5530ce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 06:52:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556540",
- "username": "Elgavvaa26",
- "fullName": "Elgavvaa26",
- "avatarUrl": "https://www.gravatar.com/avatar/c860b4f4c620c46b909216378299c3f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-30 14:22:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931899",
- "username": "SestoChakra",
- "fullName": "SestoChakra",
- "avatarUrl": "https://www.gravatar.com/avatar/c5aaebd05ff86356f859cf6a9524e8a9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-21 09:04:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023763",
- "username": "katsura-yamanouchi",
- "fullName": "katsura-yamanouchi",
- "avatarUrl": "https://www.gravatar.com/avatar/a7c9f679db1ce91416fed1d6c1198390?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 05:52:16"
- },
- "languages": [
+ "language": {
+ "id": "et",
+ "name": "Estonian",
+ "tmSavings": 0,
+ "preTranslate": 8,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932377",
- "username": "nasr96153",
- "fullName": "نصرالدين سيد (nasr96153)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932377/medium/e397d60e78c6c2e335654c3a9ae05851.jpeg",
- "joined": "2021-09-21 16:13:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14445396",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/7e280a0a542ba9750dd699afb03db9a2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 14:04:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14526304",
- "username": "luboparil",
- "fullName": "Lubomír Pařil (luboparil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14526304/medium/5b37635575f3e9b51e590dfc9b0c7136.jpeg",
- "joined": "2021-04-02 15:55:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14449392",
- "username": "ssggg2015",
- "fullName": "غادة الذياب (ssggg2015)",
- "avatarUrl": "https://www.gravatar.com/avatar/01a678cb8914f292f088fb3b3fe28af8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-24 01:34:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13300379",
- "username": "roblox.alek009",
- "fullName": "Alexander M.S (roblox.alek009)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13300379/medium/a1413f12e1b7a6a4d631fd71c61e71c8.png",
- "joined": "2021-01-31 06:11:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549078",
- "username": "Begram75",
- "fullName": "Begram75",
- "avatarUrl": "https://www.gravatar.com/avatar/90d4875066b032666ef0e499658f4fda?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-24 14:18:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026521",
- "username": "abdelali_abouelhassan",
- "fullName": "abdelali abouelhassan (abdelali_abouelhassan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026521/medium/6562f337816721c82074835aaeef875e.png",
- "joined": "2021-11-22 12:21:12"
- },
- "languages": [
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 268,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 620,
+ "default": 6,
+ "total": 626
+ },
+ "targetTranslated": {
+ "tmMatch": 1057,
+ "default": 92,
+ "total": 1149
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 227
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949839",
- "username": "giant_rubber_duck",
- "fullName": "GiantRubberDuck (giant_rubber_duck)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949839/medium/c7b3e28de76d6913516f65b5fee33361.png",
- "joined": "2021-10-04 12:36:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545694",
- "username": "dadabosade",
- "fullName": "dadabosade",
- "avatarUrl": "https://www.gravatar.com/avatar/a8c1904ef00ca5a6c97c44407ad82488?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 00:01:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949295",
- "username": "k0er",
- "fullName": "k0er",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949295/medium/70ff4652eae292556019faebcbd2988e.png",
- "joined": "2021-10-04 04:59:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13208056",
- "username": "apradoc",
- "fullName": "Adrián Prado (apradoc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13208056/medium/a89cc9560a1d3adc243bd48f65bafa64.jpeg",
- "joined": "2021-02-07 06:10:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547346",
- "username": "sionhegye777",
- "fullName": "János Fülöp (sionhegye777)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547346/medium/ceb5ba2533b3c90326286baf4b0d997e.jpeg",
- "joined": "2020-12-23 07:05:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546698",
- "username": "7wupsii7",
- "fullName": "7wupsii7",
- "avatarUrl": "https://www.gravatar.com/avatar/cc6734d2b9e0c7329551b522ccf1b47f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-22 15:56:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498322",
- "username": "OhRobin",
- "fullName": "Robin Oh (OhRobin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498322/medium/ecb2956497edc80f84f3eca39b6e0057.jpeg",
- "joined": "2020-11-16 09:43:27"
- },
- "languages": [
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 900,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 4889,
+ "default": 0,
+ "total": 4889
+ },
+ "targetTranslated": {
+ "tmMatch": 4014,
+ "default": 0,
+ "total": 4014
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 68
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940227",
- "username": "nikniknikccc",
- "fullName": "nikniknikccc",
- "avatarUrl": "https://www.gravatar.com/avatar/762da2ece85130c561907eed7ca9b215?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-27 10:11:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546254",
- "username": "amimaro",
- "fullName": "Amir Zahlan (amimaro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546254/medium/73a29952d54f5deafce7f54bd13688b1.jpeg",
- "joined": "2020-12-22 09:25:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948181",
- "username": "sandyfffeng",
- "fullName": "Jiahui Feng (sandyfffeng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948181/medium/8137c840c395b47f5fcb46cfd3cce1db.JPG",
- "joined": "2021-10-03 05:54:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14507362",
- "username": "Luigi21",
- "fullName": "Lu191 (Luigi21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14507362/medium/676880005d29829fb599f68ee2556813.png",
- "joined": "2020-11-23 10:30:43"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 19169,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10743,
+ "default": 20,
+ "total": 10763
+ },
+ "targetTranslated": {
+ "tmMatch": 11899,
+ "default": 22,
+ "total": 11921
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2155
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14507958",
- "username": "decentralcoin2.0",
- "fullName": "Decentral Coin (decentralcoin2.0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14507958/medium/6c1dbee2d4e6eeb7d5a807dffca112b8.jpg",
- "joined": "2021-05-14 04:47:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940739",
- "username": "badroseghir99",
- "fullName": "badro / zs (badroseghir99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940739/medium/5a02af588f2979c5231d2cec59f0a0bc.jpeg",
- "joined": "2021-09-27 16:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942147",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c93e712cbe2ebc1f11cb9b83aa50675a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-28 15:33:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14939049",
- "username": "poolelifts5715",
- "fullName": "Randall Poole (poolelifts5715)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939049/medium/13143e20e988e4850fe7dcbe3caddf62.png",
- "joined": "2021-09-26 13:56:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13324263",
- "username": "kevin_zheng",
- "fullName": "Kevin Zheng (kevin_zheng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13324263/medium/87c9fca618ec71f19fab40c6d4fec84d.jpg",
- "joined": "2021-01-09 11:58:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948353",
- "username": "cevher06",
- "fullName": "cevher06",
- "avatarUrl": "https://www.gravatar.com/avatar/588cc5e0e3471fe53b640f9d975c51cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-03 09:31:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14514456",
- "username": "k2m5t2",
- "fullName": "k2m5t2",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514456/medium/2036a82ec0ad5142bcb922750d92c7bd.png",
- "joined": "2021-01-19 13:57:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942827",
- "username": "zhujunchen2007",
- "fullName": "JC Z (zhujunchen2007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942827/medium/320ed27a0fe0d27777522d4009a74de8.png",
- "joined": "2021-09-29 04:40:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942875",
- "username": "tikafblanc3",
- "fullName": "tikafblanc3",
- "avatarUrl": "https://www.gravatar.com/avatar/cad9494dda51d417d83cd7de1c7e427a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-29 05:19:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948811",
- "username": "cema",
- "fullName": "Iracema Brochado (cema)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948811/medium/2cb46b98e778477d6926f91e1e2f21d9.jpeg",
- "joined": "2021-10-03 18:15:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14943373",
- "username": "catnapper_mar",
- "fullName": "catnapper_mar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943373/medium/23dab6a83d3edaa5ed517251c0b68f16.png",
- "joined": "2021-09-29 13:11:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945021",
- "username": "giancarlol",
- "fullName": "giancarlol",
- "avatarUrl": "https://www.gravatar.com/avatar/e5eb0031e63140c4d8c6ef03ad89f86b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-30 17:43:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12824112",
- "username": "MaksymZhykharyev",
- "fullName": "Максим Жихарев (MaksymZhykharyev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12824112/medium/c1e9e0ad6f560f3d3d17c8db3433988e.png",
- "joined": "2021-02-17 02:27:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14944463",
- "username": "aniketp166",
- "fullName": "aniketp166",
- "avatarUrl": "https://www.gravatar.com/avatar/7fc2b851e37801236c8ea9dcd7a2a264?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-30 08:30:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948515",
- "username": "Datura",
- "fullName": "Datura",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948515/medium/679caf1735ce950a6c77906653a03d97.jpg",
- "joined": "2021-11-03 00:26:45"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 16407,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9307,
+ "default": 20,
+ "total": 9327
+ },
+ "targetTranslated": {
+ "tmMatch": 9040,
+ "default": 20,
+ "total": 9060
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1815
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13279693",
- "username": "bioloniks",
- "fullName": "Сергей Радионов (bioloniks)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13279693/medium/3a7f9c2d097ddbfe4036fae40aed2efb.jpg",
- "joined": "2020-07-21 05:45:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14939093",
- "username": "v33nx",
- "fullName": "v33nx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939093/medium/7cc3d88ffc58a811f1e2e7768d759b17.png",
- "joined": "2021-09-26 14:45:53"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 7693,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 7548,
+ "default": 9,
+ "total": 7557
+ },
+ "targetTranslated": {
+ "tmMatch": 8100,
+ "default": 9,
+ "total": 8109
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2257
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937971",
- "username": "Khaledfrd",
- "fullName": "Khaledfrd",
- "avatarUrl": "https://www.gravatar.com/avatar/ffdf0718e536dfdd4d01e3870045658b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-26 15:27:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023677",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/fb3dd331633276784a82c35b1481188c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 04:18:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14486942",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/16268ea60e2e299c2435880d14652dcc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-07 09:37:43"
- },
- "languages": [
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 473,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935715",
- "username": "Dimi33",
- "fullName": "Dimi33",
- "avatarUrl": "https://www.gravatar.com/avatar/c2bc2446989c7dde0242251c66d023f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-24 03:21:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14543206",
- "username": "Hbz830",
- "fullName": "Hbz830",
- "avatarUrl": "https://www.gravatar.com/avatar/0f3f5ce36675fcf127a3cbca1409779e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 13:42:26"
- },
- "languages": [
+ "language": {
+ "id": "ha",
+ "name": "Hausa",
+ "tmSavings": 0,
+ "preTranslate": 6,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 50,
+ "default": 1,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 1,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 8
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14480842",
- "username": "Jtaylor89015",
- "fullName": "Jtaylor89015",
- "avatarUrl": "https://www.gravatar.com/avatar/7b9f3366ecd39a7b54e1d62e107fd0d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-02 14:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14481706",
- "username": "dimateos",
- "fullName": "dimateos",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14481706/medium/989c3f3f12d3763446738367b2d40c0e.jpeg",
- "joined": "2020-11-17 04:34:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949577",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/3b6c9a3dcb49e884cafab9f550d2d0ef?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 06:40:21"
- },
- "languages": [
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 410,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2424,
+ "default": 4,
+ "total": 2428
+ },
+ "targetTranslated": {
+ "tmMatch": 2175,
+ "default": 7,
+ "total": 2182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 547
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 50,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935879",
- "username": "Romzango",
- "fullName": "Romzango",
- "avatarUrl": "https://www.gravatar.com/avatar/f72025d25aacf2d1787ce88915560562?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-24 06:11:54"
- },
- "languages": [
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 2007,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5618,
+ "default": 3,
+ "total": 5621
+ },
+ "targetTranslated": {
+ "tmMatch": 9055,
+ "default": 5,
+ "total": 9060
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 576
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14515446",
- "username": "huy0975050100",
- "fullName": "Huy Quoc (huy0975050100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515446/medium/57d3927c3aedd38a6775f630bad0de3e.jpeg",
- "joined": "2020-11-29 10:32:33"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 16672,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5311,
+ "default": 4,
+ "total": 5315
+ },
+ "targetTranslated": {
+ "tmMatch": 5052,
+ "default": 4,
+ "total": 5056
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 245
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13132415",
- "username": "ahmetsencift",
- "fullName": "Ahmet Şençift (ahmetsencift)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13132415/medium/08e3bdf19ef0e1cf313e9d6c5c82c0e5.jpg",
- "joined": "2021-06-28 09:16:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945817",
- "username": "FoolProtestant",
- "fullName": "FoolProtestant",
- "avatarUrl": "https://www.gravatar.com/avatar/8fa17e5e68830c7ad88f44e39f36237a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 02:19:57"
- },
- "languages": [
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 268,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6453,
+ "default": 11,
+ "total": 6464
+ },
+ "targetTranslated": {
+ "tmMatch": 7410,
+ "default": 16,
+ "total": 7426
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2982
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026273",
- "username": "frkn-aydn",
- "fullName": "Furkan Aydın (frkn-aydn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026273/medium/22fe088dc05463753e6f37a728aae2d3.jpeg",
- "joined": "2021-11-22 09:24:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13146447",
- "username": "Inlingo",
- "fullName": "Inlingo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13146447/medium/fde97b6d11b8b8a7b220291df3911ac6.png",
- "joined": "2020-06-30 05:53:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13167683",
- "username": "pabloogando5",
- "fullName": "Pablo Ogando Ferreira (pabloogando5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13167683/medium/f00513535821bd2c4b7abf3380a51be0.jpeg",
- "joined": "2021-11-25 04:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936157",
- "username": "daGscheid",
- "fullName": "daGscheid",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936157/medium/b50f1fb711bb518fda6892de4a667a4c.jpeg",
- "joined": "2021-09-24 08:53:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547614",
- "username": "vazgecenlerkulubu1",
- "fullName": "Vazgeçenler Kulübü (vazgecenlerkulubu1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547614/medium/27f23116b4ff555960b412569349579d.png",
- "joined": "2020-12-23 11:04:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13308304",
- "username": "Gus0918",
- "fullName": "Gus0918",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13308304/medium/6b8d3da2ad1b424fe0b9b5c8b9656990.jpeg",
- "joined": "2021-08-27 23:39:11"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 14571,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9743,
+ "default": 9,
+ "total": 9752
+ },
+ "targetTranslated": {
+ "tmMatch": 9827,
+ "default": 12,
+ "total": 9839
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1711
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 20111,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 11904,
+ "default": 10,
+ "total": 11914
+ },
+ "targetTranslated": {
+ "tmMatch": 12658,
+ "default": 11,
+ "total": 12669
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2550
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 10938,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10301,
+ "default": 10,
+ "total": 10311
+ },
+ "targetTranslated": {
+ "tmMatch": 24894,
+ "default": 52,
+ "total": 24946
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1901
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 270,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 391,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 2948,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10860,
+ "default": 2787,
+ "total": 13647
+ },
+ "targetTranslated": {
+ "tmMatch": 10177,
+ "default": 2562,
+ "total": 12739
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 6422
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ku",
+ "name": "Kurdish",
+ "tmSavings": 0,
+ "preTranslate": 226,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ky",
+ "name": "Kyrgyz",
+ "tmSavings": 0,
+ "preTranslate": 174,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 150,
+ "default": 0,
+ "total": 150
+ },
+ "targetTranslated": {
+ "tmMatch": 155,
+ "default": 0,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 36
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 827,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5915,
+ "default": 5,
+ "total": 5920
+ },
+ "targetTranslated": {
+ "tmMatch": 5639,
+ "default": 5,
+ "total": 5644
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 493
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 506,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 164,
+ "default": 0,
+ "total": 164
+ },
+ "targetTranslated": {
+ "tmMatch": 163,
+ "default": 0,
+ "total": 163
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 1063,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1243,
+ "default": 0,
+ "total": 1243
+ },
+ "targetTranslated": {
+ "tmMatch": 1271,
+ "default": 0,
+ "total": 1271
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 254
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945717",
- "username": "diziukova",
- "fullName": "diziukova",
- "avatarUrl": "https://www.gravatar.com/avatar/691eb0e934ee483534eda7cbdeceb355?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-01 06:32:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023525",
- "username": "vanillacoffee",
- "fullName": "vanillacoffee",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023525/medium/ea0850187bb79eceeaac49b40b7fc7bb.png",
- "joined": "2021-11-20 01:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945455",
- "username": "KenyHe",
- "fullName": "贺大庆 (KenyHe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945455/medium/83dfdc9b8c46bcfd6e16d9ec4afcdc16.jpeg",
- "joined": "2021-10-01 02:44:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548994",
- "username": "fathymahmou",
- "fullName": "Mahmoud Fathy (fathymahmou)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548994/medium/92dcf85432b5c86ec374332aa919645e.jpeg",
- "joined": "2020-12-24 12:46:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14494918",
- "username": "Scmars",
- "fullName": "Scmars",
- "avatarUrl": "https://www.gravatar.com/avatar/ccfcfbcbe6827510871a1c9c5524d450?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-13 11:24:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13205115",
- "username": "ttrasto",
- "fullName": "ttrasto",
- "avatarUrl": "https://www.gravatar.com/avatar/d6887059146f9374ee746ba3489ec9cb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-22 11:10:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937089",
- "username": "1085970422",
- "fullName": "吴佩孚 (1085970422)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937089/medium/b1bf3f12b933a8fc12ca3084657e51a8.png",
- "joined": "2021-09-25 03:42:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548516",
- "username": "Armsombon",
- "fullName": "เจตต์ธนาพงษ์ สมบูรณ์ (Armsombon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548516/medium/b41391ee6ee26e5f671c1c331b3eecfe.jpeg",
- "joined": "2021-11-27 02:54:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548424",
- "username": "Umka88",
- "fullName": "Umka88",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548424/medium/85348454f5761688ba8fe6a37aef2e68.jpeg",
- "joined": "2020-12-24 01:46:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024985",
- "username": "Rafff5_dev",
- "fullName": "Rafff5_dev",
- "avatarUrl": "https://www.gravatar.com/avatar/3103781eddc0dfe3a4723d5ff4315424?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 08:02:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937603",
- "username": "yangbin942566",
- "fullName": "yangbin942566",
- "avatarUrl": "https://www.gravatar.com/avatar/d061374d482b9a04deb424a8bfe3b1c0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-25 13:12:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14490312",
- "username": "karocyt",
- "fullName": "Kévin Azoulay (karocyt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14490312/medium/992555240c2c722030165bf182e80e76.jpeg",
- "joined": "2020-11-10 02:10:23"
- },
- "languages": [
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 1403,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 4760,
+ "default": 0,
+ "total": 4760
+ },
+ "targetTranslated": {
+ "tmMatch": 8289,
+ "default": 0,
+ "total": 8289
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 224
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14002947",
- "username": "Danielagb",
- "fullName": "Daniela Gonzalez (Danielagb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14002947/medium/c439b706e38441fced4aa89b523c61e0.jpg",
- "joined": "2019-10-04 09:37:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558386",
- "username": "dzhondrov",
- "fullName": "Тодор Джондров (dzhondrov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558386/medium/0e0cdc590e7bfaf44fbde5088fb82284.jpeg",
- "joined": "2021-01-01 11:08:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031955",
- "username": "liina380",
- "fullName": "liina380",
- "avatarUrl": "https://www.gravatar.com/avatar/1d5dfd81b07902ec1ceef1e235daa4a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 13:34:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903848",
- "username": "titolucho",
- "fullName": "titolucho",
- "avatarUrl": "https://www.gravatar.com/avatar/88b3e2170d7887adbbff6bf8ce5781de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 17:33:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903774",
- "username": "rafeed.derhem",
- "fullName": "Rafeed Derhem (rafeed.derhem)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903774/medium/76ff8a5db9cc9c1c4e1cce96c9f20937.jpeg",
- "joined": "2021-08-31 16:32:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903758",
- "username": "Cristescu.mario17",
- "fullName": "Mario Cristescuv (Cristescu.mario17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903758/medium/46602a4d189ff766191cf8ca302d44b2.png",
- "joined": "2021-08-31 16:01:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12441550",
- "username": "cgural",
- "fullName": "Caner Güral (cgural)",
- "avatarUrl": "https://www.gravatar.com/avatar/22d0b52ded4edd015db826b1b723f6f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 14:22:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571762",
- "username": "pkladaline",
- "fullName": "pkladaline",
- "avatarUrl": "https://www.gravatar.com/avatar/9134de365dcdcab411192965a29515f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 01:17:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903184",
- "username": "ryosan-470",
- "fullName": "ryosan-470",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903184/medium/86d4a833f979cd1b865073f61faea0f4.png",
- "joined": "2021-08-31 07:32:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573170",
- "username": "Dany0805",
- "fullName": "Dany0805",
- "avatarUrl": "https://www.gravatar.com/avatar/61b38770cff21827d7c8cb489a689136?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 22:30:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904220",
- "username": "crypdove",
- "fullName": "crypdove",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904220/medium/71eb3c509c5148518edd558da2a75c11.jpeg",
- "joined": "2021-09-01 02:42:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031993",
- "username": "Horsewater",
- "fullName": "Horsewater",
- "avatarUrl": "https://www.gravatar.com/avatar/37db00c8d0df1105408cb61e88b61340?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 14:00:03"
- },
- "languages": [
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 114,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032055",
- "username": "edeco",
- "fullName": "edeco",
- "avatarUrl": "https://www.gravatar.com/avatar/397f9b7e490d9ff25b3aa41c7cead78f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 15:10:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14574084",
- "username": "Diegoooo3",
- "fullName": "Diegoooo3",
- "avatarUrl": "https://www.gravatar.com/avatar/a26407b9ef214ec82b6675337f0deb90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-12 12:51:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902778",
- "username": "funny.khaihoan",
- "fullName": "Vũ Hoàn (funny.khaihoan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902778/medium/0a4a1f58a12af3d323e4f1b8e26674c5.jpeg",
- "joined": "2021-08-31 01:42:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902722",
- "username": "Bahmanshiravi",
- "fullName": "Bahmanshiravi",
- "avatarUrl": "https://www.gravatar.com/avatar/544f79ede97fcc5059d151fd5b3a8d93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 00:08:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902574",
- "username": "binsta",
- "fullName": "Binston Sukhael Cardoza (binsta)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902574/medium/51a1aa8b2c3b2dc0cb7d3120355eaf36.png",
- "joined": "2021-08-30 21:11:25"
- },
- "languages": [
+ "language": {
+ "id": "mn",
+ "name": "Mongolian",
+ "tmSavings": 0,
+ "preTranslate": 13,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032139",
- "username": "stellar0430",
- "fullName": "stellar0430",
- "avatarUrl": "https://www.gravatar.com/avatar/7a9d30753f119746da75512a99464b4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 16:52:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903964",
- "username": "fujihara_gin",
- "fullName": "Alex H Li (fujihara_gin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903964/medium/26421e3efe6bb9c4b1724f2f31905e13.png",
- "joined": "2021-08-31 20:22:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12461334",
- "username": "nirankoon",
- "fullName": "nirankoon.singpraseuth (nirankoon)",
- "avatarUrl": "https://www.gravatar.com/avatar/421b149b57fe0309019147a3d409b3c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 03:10:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575936",
- "username": "Mhmtysl",
- "fullName": "Mhmtysl",
- "avatarUrl": "https://www.gravatar.com/avatar/56c5cf02c434c87da45328022a69eecc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 17:03:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906669",
- "username": "snt9",
- "fullName": "Santiago Tranchida (snt9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14906669/medium/b2d81e05c56069f9f6106fda93744faf.jpeg",
- "joined": "2021-09-03 10:29:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12462699",
- "username": "oaxacagold",
- "fullName": "oaxacagold",
- "avatarUrl": "https://www.gravatar.com/avatar/2b185181d30d3072fb8fac8dc22ed8ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 23:57:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907087",
- "username": "mortaza.gh",
- "fullName": "mortaza montazery (mortaza.gh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907087/medium/e631317f5c351a9d0440dbbc3ad920e2.jpeg",
- "joined": "2021-09-03 03:48:13"
- },
- "languages": [
+ "language": {
+ "id": "ne-NP",
+ "name": "Nepali",
+ "tmSavings": 0,
+ "preTranslate": 61,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568780",
- "username": "STEVEN922",
- "fullName": "STEVEN922",
- "avatarUrl": "https://www.gravatar.com/avatar/4bfe4315f65a8bf0720c2e6601e8c5b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 20:27:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569706",
- "username": "suTheodor",
- "fullName": "Matteo Cardillo (suTheodor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569706/medium/0339b63213a8ab33bb6d46442a0f8368.png",
- "joined": "2021-01-09 13:06:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906965",
- "username": "icsense",
- "fullName": "icsense",
- "avatarUrl": "https://www.gravatar.com/avatar/7f92ded79700e4899fd52ef6fdc3d215?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 01:32:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906957",
- "username": "Ezhiee",
- "fullName": "Ezhiee",
- "avatarUrl": "https://www.gravatar.com/avatar/cb51d549c5c45a84862a20fe6f5062d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 01:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906765",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/0f77609d8f48c1b372d9f512d7c96f33?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 21:14:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906575",
- "username": "calniski",
- "fullName": "PAULO TIAGO (calniski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14906575/medium/ae89509290e0b36fcdcb54e09012252e.jpeg",
- "joined": "2021-09-02 16:22:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031019",
- "username": "Kassiaoliveira",
- "fullName": "Kassiaoliveira",
- "avatarUrl": "https://www.gravatar.com/avatar/3efb6a545818b8dc0c6797ec03acec28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 20:23:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906361",
- "username": "ejpro",
- "fullName": "ejpro",
- "avatarUrl": "https://www.gravatar.com/avatar/f7bd5fcb092763bc4cd3ccb6450e5395?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 13:05:58"
- },
- "languages": [
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 877,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 4997,
+ "default": 0,
+ "total": 4997
+ },
+ "targetTranslated": {
+ "tmMatch": 4829,
+ "default": 0,
+ "total": 4829
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 181
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905418",
- "username": "MaxZh1999",
- "fullName": "Max Zheng (MaxZh1999)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14905418/medium/9da232b3ff0b36e5bf47924e0618b290.jpeg",
- "joined": "2021-09-01 22:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030637",
- "username": "Kricccc",
- "fullName": "Kristijan Stevanovic (Kricccc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030637/medium/4405dbe12df8bb9d5159d49d1da910a4.jpeg",
- "joined": "2021-11-25 12:08:09"
- },
- "languages": [
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 2441,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6259,
+ "default": 46,
+ "total": 6305
+ },
+ "targetTranslated": {
+ "tmMatch": 7404,
+ "default": 48,
+ "total": 7452
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1844
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12461843",
- "username": "zafer2071",
- "fullName": "Zafer DÜNDAR (zafer2071)",
- "avatarUrl": "https://www.gravatar.com/avatar/270c4203069bf7f54759d3e467525234?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 16:03:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571354",
- "username": "Bossbaby",
- "fullName": "Bossbaby",
- "avatarUrl": "https://www.gravatar.com/avatar/17ff6d3556f5249d73b9857273f5becf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 16:31:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030823",
- "username": "jamalinu",
- "fullName": "jamalinu",
- "avatarUrl": "https://www.gravatar.com/avatar/d8090766a85c94dc03dd8b99c95b2883?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 15:10:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571572",
- "username": "abogado.medinarobles",
- "fullName": "Álvaro Medina Robles (abogado.medinarobles)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571572/medium/ffe77276894cdd89ed93105c727e2443.jpeg",
- "joined": "2021-01-10 21:03:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032187",
- "username": "sofialameiro",
- "fullName": "sofialameiro",
- "avatarUrl": "https://www.gravatar.com/avatar/bb917020daad76ccdd604f820085767f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 18:16:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575966",
- "username": "wackerow",
- "fullName": "Paul Wackerow (wackerow)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575966/medium/a0e229e923c0fe196a564f0289da3ec3.png",
- "joined": "2021-01-13 17:40:15"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 20243,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6685,
+ "default": 17,
+ "total": 6702
+ },
+ "targetTranslated": {
+ "tmMatch": 6332,
+ "default": 19,
+ "total": 6351
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1511
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12555329",
- "username": "felirami",
- "fullName": "felirami",
- "avatarUrl": "https://www.gravatar.com/avatar/c69b9b1cb5ed82229c4c58e97f84f3d4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 03:47:40"
- },
- "languages": [
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 1494,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 7382,
+ "default": 1266,
+ "total": 8648
+ },
+ "targetTranslated": {
+ "tmMatch": 7934,
+ "default": 1311,
+ "total": 9245
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1594
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896336",
- "username": "MattF",
- "fullName": "Matthias Fortin (MattF)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896336/medium/791408bd83317053f067e812d5c937c4.jpeg",
- "joined": "2021-08-26 02:23:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579712",
- "username": "young.laww",
- "fullName": "young.laww",
- "avatarUrl": "https://www.gravatar.com/avatar/4c5612285eabbdf86d569c25c92cee9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 08:16:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896676",
- "username": "ro_ma",
- "fullName": "ro_ma",
- "avatarUrl": "https://www.gravatar.com/avatar/36da58f68d0e68a1f663dfcda4db1540?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 07:54:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581102",
- "username": "marakhov.andrey",
- "fullName": "uniqboyz (marakhov.andrey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581102/medium/0f6dc55536c5970137eba1cacce8d05e.jpeg",
- "joined": "2021-01-17 09:12:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "25420",
- "username": "Ryo567",
- "fullName": "Eugenio \"Ryo567\" Martínez Seguín (Ryo567)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/25420/medium/c407ca20cecfad35ba1bc9ef42232137.png",
- "joined": "2021-08-08 11:28:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033759",
- "username": "alex.lyust",
- "fullName": "Александр Люст (alex.lyust)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033759/medium/affbf0e1bd71a0ce0daef1d288f7bc71.jpeg",
- "joined": "2021-11-28 04:18:37"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 14036,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10467,
+ "default": 113,
+ "total": 10580
+ },
+ "targetTranslated": {
+ "tmMatch": 11156,
+ "default": 127,
+ "total": 11283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1672
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896364",
- "username": "iifjanek",
- "fullName": "iifjanek",
- "avatarUrl": "https://www.gravatar.com/avatar/fe7f57f092bae06c6152fbbdcea3e978?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 03:17:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "25293",
- "username": "shayanbahal",
- "fullName": "Shayan Eskandari (shayanbahal)",
- "avatarUrl": "https://www.gravatar.com/avatar/c5f8ce766436d59f7a4f0ac793265775?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-06 00:35:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581368",
- "username": "DeadShot_KOSS",
- "fullName": "DeadShot_KOSS",
- "avatarUrl": "https://www.gravatar.com/avatar/5657ddc29ee5c9bf7f8bfeee4c96db43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 12:55:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579214",
- "username": "Egart1488",
- "fullName": "Egart1488",
- "avatarUrl": "https://www.gravatar.com/avatar/99996287ebedfd2dbb18f03dd5f439e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 00:02:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033955",
- "username": "vitor_aug",
- "fullName": "vitor_aug",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8419c6b996b4608cd5a9dde16ba250?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 08:27:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581748",
- "username": "voltronic",
- "fullName": "voltronic",
- "avatarUrl": "https://www.gravatar.com/avatar/6030fb56e908dd86d96e42911368e953?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 19:33:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034059",
- "username": "Luixsin",
- "fullName": "Luixsin",
- "avatarUrl": "https://www.gravatar.com/avatar/89d192b43a60576f6570589d3b9a3457?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 09:57:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034109",
- "username": "Cest-moi-Felipe",
- "fullName": "Felipe Aza (Cest-moi-Felipe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034109/medium/aae9b00063f57cc1e91aae633f87e546.png",
- "joined": "2021-11-28 10:50:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582114",
- "username": "reza8071",
- "fullName": "reza8071",
- "avatarUrl": "https://www.gravatar.com/avatar/2913b355ea3ef0ded5ada2c438886589?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 03:13:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582828",
- "username": "Salavat",
- "fullName": "Salavat",
- "avatarUrl": "https://www.gravatar.com/avatar/350bc53f7d7b76727aa1cba9cfb91ce6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 11:41:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "8975",
- "username": "applingua",
- "fullName": "applingua",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/8975/medium/cea91d511b0d0f620f3204b59526e175.jpg",
- "joined": "2020-06-30 05:54:28"
- },
- "languages": [
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 45,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 513,
+ "default": 5,
+ "total": 518
+ },
+ "targetTranslated": {
+ "tmMatch": 863,
+ "default": 12,
+ "total": 875
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 12
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 14,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579222",
- "username": "mydoto",
- "fullName": "mydoto",
- "avatarUrl": "https://www.gravatar.com/avatar/62b4bf26d17952baae6674b37a99fc32?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 00:11:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578738",
- "username": "arq_douglas_morillo_ve",
- "fullName": "Douglas Morillo (arq_douglas_morillo_ve)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578738/medium/93fd854b378ab8345a869295394e003a.jpeg",
- "joined": "2021-01-15 14:54:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576056",
- "username": "inguskartins4",
- "fullName": "Ingus Kartins (inguskartins4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576056/medium/af752a069a5ce0e106e438f953c9bb0f.jpg",
- "joined": "2021-01-13 20:17:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899254",
- "username": "shouki",
- "fullName": "shouki",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14899254/medium/68c57b6a2745f9ffc60fab8463011d87.jpeg",
- "joined": "2021-08-28 08:35:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032415",
- "username": "khanhrg007",
- "fullName": "khanhrg007",
- "avatarUrl": "https://www.gravatar.com/avatar/61bc8bc41d9f2ae38b77c223e6ac250a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 00:13:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576444",
- "username": "jemigard",
- "fullName": "Максим Якимашко (jemigard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576444/medium/374c93642ab332f1a63442f67d0fb2fe.jpg",
- "joined": "2021-01-14 04:01:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900096",
- "username": "Glaprea",
- "fullName": "Glaprea",
- "avatarUrl": "https://www.gravatar.com/avatar/a5cdaab3fc6fa52ccc10c3fd204b8834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-29 02:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "34625",
- "username": "mazi",
- "fullName": "Matija Mazi (mazi)",
- "avatarUrl": "https://www.gravatar.com/avatar/67f64e2f93176cc0b469607a2b0d2450?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-30 15:34:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576524",
- "username": "Behzz",
- "fullName": "Behzz",
- "avatarUrl": "https://www.gravatar.com/avatar/3a1ab24c7c6200d02d06b1b003756f81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 05:10:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899734",
- "username": "a.souza",
- "fullName": "a.souza",
- "avatarUrl": "https://www.gravatar.com/avatar/7e49420b4a5dc7c8ba83e341fbaf42f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 17:42:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576776",
- "username": "gong22",
- "fullName": "gong22",
- "avatarUrl": "https://www.gravatar.com/avatar/7c5487ead66acb9d9701e5f40a0bf97b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 08:22:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14898500",
- "username": "zapper",
- "fullName": "zapper",
- "avatarUrl": "https://www.gravatar.com/avatar/d666ce9e572a0aafbbc14089115e30ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 15:15:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897458",
- "username": "JayU-ML",
- "fullName": "Jay U. (JayU-ML)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14897458/medium/704d24e957b20ff08f8ec0d7360f463d.png",
- "joined": "2021-08-26 20:58:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577218",
- "username": "RahaJS",
- "fullName": "Рахымжан Серикбаев (RahaJS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577218/medium/b86341ba8c1fc12f8e42d72f07aa4c52.jpeg",
- "joined": "2021-01-14 13:15:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "32128",
- "username": "alconost",
- "fullName": "Alconost Inc. (alconost)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/32128/medium/2905cc1653d55b6a5d65b6d2dbce525e.png",
- "joined": "2020-06-30 05:52:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033007",
- "username": "xisper",
- "fullName": "xisper",
- "avatarUrl": "https://www.gravatar.com/avatar/b214f727ae0a36e26c4ed099a783c3e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 11:42:05"
- },
- "languages": [
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 19619,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6886,
+ "default": 127,
+ "total": 7013
+ },
+ "targetTranslated": {
+ "tmMatch": 7246,
+ "default": 147,
+ "total": 7393
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 158
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "29120",
- "username": "Kleindberg",
- "fullName": "Bogdan (Kleindberg)",
- "avatarUrl": "https://www.gravatar.com/avatar/e40ca423ce7ab38671e676346bc6bf5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 11:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577448",
- "username": "germanllop",
- "fullName": "German Llop (germanllop)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577448/medium/353197ad36c8b759451426c2968aa829.jpeg",
- "joined": "2021-07-19 19:15:33"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 10051,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9053,
+ "default": 13,
+ "total": 9066
+ },
+ "targetTranslated": {
+ "tmMatch": 8788,
+ "default": 14,
+ "total": 8802
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2168
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577616",
- "username": "valak",
- "fullName": "valak",
- "avatarUrl": "https://www.gravatar.com/avatar/a293534db9ef2e4f4d0d27dcca2cccac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 20:14:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578338",
- "username": "feeji",
- "fullName": "feeji",
- "avatarUrl": "https://www.gravatar.com/avatar/4b802d76452eb70225fb9cc0bdc003c9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-15 09:03:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907293",
- "username": "jlabardy54",
- "fullName": "James LABARDY (jlabardy54)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907293/medium/c07857d2b995f1e85afc6ffeeb68ca0b.png",
- "joined": "2021-09-03 05:50:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907393",
- "username": "duchoa",
- "fullName": "duchoa",
- "avatarUrl": "https://www.gravatar.com/avatar/d1afd4800fb40064e1b8b1f401db2d93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 07:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558526",
- "username": "bskrksyp9",
- "fullName": "Bhaskar Kashyap (bskrksyp9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558526/medium/7af7d9f64aea4b324cd8b35b37fa78c8.png",
- "joined": "2021-01-01 13:22:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918861",
- "username": "ellizii",
- "fullName": "Vitaly Dodonov (ellizii)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918861/medium/486515df3a6f851da0696085093d3dfd.jpeg",
- "joined": "2021-09-12 01:24:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14921013",
- "username": "eva01",
- "fullName": "eva01",
- "avatarUrl": "https://www.gravatar.com/avatar/756b418e120eb17887951d2af11fc4e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-13 15:03:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560986",
- "username": "KingKitN",
- "fullName": "KingKitN",
- "avatarUrl": "https://www.gravatar.com/avatar/a1692002b50c4325f6e0d586048ce1ec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 11:51:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561108",
- "username": "gokhan.calt",
- "fullName": "Gökhan Çalt (gokhan.calt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561108/medium/ee7224baf12d2f3de7c5793fd15248cf.jpeg",
- "joined": "2021-01-03 13:41:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920027",
- "username": "destroyerr_",
- "fullName": "destroyerr_",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920027/medium/15024db4a55881fa76c482d44f5d61ac.jpg",
- "joined": "2021-09-13 12:40:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14424634",
- "username": "Salak",
- "fullName": "Salak",
- "avatarUrl": "https://www.gravatar.com/avatar/150f8f7be10596a7463c0a32a0f7f28f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-20 16:25:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919277",
- "username": "sam_z2916",
- "fullName": "sam_z2916",
- "avatarUrl": "https://www.gravatar.com/avatar/4642bdccc44c9a9ee33d79f072f297d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-20 09:27:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919011",
- "username": "Happyjam",
- "fullName": "Happyjam",
- "avatarUrl": "https://www.gravatar.com/avatar/bc9ecb53c188bca1e034b3af518001ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 05:35:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12692614",
- "username": "panxiuqing",
- "fullName": "panxiuqing",
- "avatarUrl": "https://www.gravatar.com/avatar/60f6cf954ccbfc9bc0d26281ebcf540b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 12:52:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12724708",
- "username": "nunovilhenasantos",
- "fullName": "Nuno Filipe Vilhena Santos (nunovilhenasantos)",
- "avatarUrl": "https://www.gravatar.com/avatar/bb2901991414cfaa74f427e945f89db4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-21 11:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029057",
- "username": "impixelthec",
- "fullName": "Jozsef Joo (impixelthec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029057/medium/562f5112e6ade8f1e8a684ea3e033beb.png",
- "joined": "2021-11-24 07:34:30"
- },
- "languages": [
+ "language": {
+ "id": "ru-UA",
+ "name": "Russian, Ukraine",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 109,
+ "default": 2,
+ "total": 111
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 2,
+ "total": 112
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 84
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918807",
- "username": "ndehhason",
- "fullName": "Emmanuel nde (ndehhason)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918807/medium/b007a42dd06d2ff93a9a08632eaa4fd8.jpeg",
- "joined": "2021-09-11 23:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918183",
- "username": "daniel.granuzzo",
- "fullName": "daniel rocha (daniel.granuzzo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918183/medium/1be9d90ff5dd884c6fd0cb1733d5bb04.png",
- "joined": "2021-09-11 09:56:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12691038",
- "username": "iwtp",
- "fullName": "iwtp",
- "avatarUrl": "https://www.gravatar.com/avatar/ba86d5d7df4e1ba52f2405116c6afeea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 19:53:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918011",
- "username": "Fnx777",
- "fullName": "Fnx777",
- "avatarUrl": "https://www.gravatar.com/avatar/eadbd4b0e96b4dced0299a3ef54bac60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-11 06:50:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561182",
- "username": "evrencan",
- "fullName": "Evren Can (evrencan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561182/medium/d14fd94226b3fa8b4e5027c38adf3788.jpeg",
- "joined": "2021-01-03 14:42:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029207",
- "username": "mohammedouahman",
- "fullName": "Mohammed Ouahman (mohammedouahman)",
- "avatarUrl": "https://www.gravatar.com/avatar/c612b12d4129de091c227a6ac1080f37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 09:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14921553",
- "username": "bebosihavong69",
- "fullName": "คําแสง สีหาวง (bebosihavong69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14921553/medium/306eedc99ff4d83fe9f5f7ab8967497e.jpeg",
- "joined": "2021-09-14 09:29:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922505",
- "username": "Poena",
- "fullName": "Poena",
- "avatarUrl": "https://www.gravatar.com/avatar/93d62a7919878f5aec4bcb7b96d4b7ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 12:28:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561764",
- "username": "Jonathanzy",
- "fullName": "Jonathanzy",
- "avatarUrl": "https://www.gravatar.com/avatar/04e602b47b697cc5702ec8e469368d9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 02:20:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559010",
- "username": "rvasatyam9",
- "fullName": "rvasatyam9",
- "avatarUrl": "https://www.gravatar.com/avatar/e45887dc560a72c40615ded7a6f6197a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 23:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928457",
- "username": "korobchuk",
- "fullName": "Павло Коробчук (korobchuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928457/medium/df246d6918e815aef62684c5aab7fcc3.jpeg",
- "joined": "2021-09-18 16:24:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028305",
- "username": "sfati1177",
- "fullName": "sfati1177",
- "avatarUrl": "https://www.gravatar.com/avatar/e050ddf71ec9d0b6ac03e1f29e2ca1f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 16:59:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928023",
- "username": "buja",
- "fullName": "buja",
- "avatarUrl": "https://www.gravatar.com/avatar/e4617896a67a983f82bd964f44fad545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-18 10:03:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12766214",
- "username": "Gelesztaa",
- "fullName": "Szabolcsi Attila (Gelesztaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12766214/medium/52bf3bd85db3027d98cd771139ea7a00.gif",
- "joined": "2021-03-08 13:06:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558584",
- "username": "Tioma",
- "fullName": "Tioma",
- "avatarUrl": "https://www.gravatar.com/avatar/279ab5cb47362bcad5d14fb876c44a9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 14:25:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12751112",
- "username": "Tomedes",
- "fullName": "Tomedes",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12751112/medium/b3745def024cf8f1b86720ce503f84b2.png",
- "joined": "2020-06-30 05:55:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14927081",
- "username": "rdelgadohernandez98",
- "fullName": "romer angel delgado hernandez (rdelgadohernandez98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927081/medium/177bbdf6f048920520fe9168499a0340.jpeg",
- "joined": "2021-09-17 16:06:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926537",
- "username": "Ogion",
- "fullName": "Ogion",
- "avatarUrl": "https://www.gravatar.com/avatar/6a66cc7158847741cd67da67079b6619?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-17 08:42:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12743610",
- "username": "sandivisi",
- "fullName": "Sandivisi Aditya (sandivisi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12743610/medium/fb25e01cb06466273111be3eec0cdd6a.png",
- "joined": "2021-08-28 10:54:28"
- },
- "languages": [
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 1430,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1090,
+ "default": 0,
+ "total": 1090
+ },
+ "targetTranslated": {
+ "tmMatch": 1057,
+ "default": 0,
+ "total": 1057
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 410
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "si-LK",
+ "name": "Sinhala",
+ "tmSavings": 0,
+ "preTranslate": 31,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559282",
- "username": "Aronia",
- "fullName": "Aronia",
- "avatarUrl": "https://www.gravatar.com/avatar/cde72b554f3f1f67b2abc443614961a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 06:44:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559684",
- "username": "Tristantsch0987",
- "fullName": "Tristantsch0987",
- "avatarUrl": "https://www.gravatar.com/avatar/bcdbf659bc67af95f1ff1723b7d4597c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 12:42:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14924253",
- "username": "Ernestiko",
- "fullName": "Ernesto Henriquez (Ernestiko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14924253/medium/55a18124dd6da8e74a464035a724349a.jpeg",
- "joined": "2021-09-15 18:44:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559918",
- "username": "Muzaffer015",
- "fullName": "Muzaffer015",
- "avatarUrl": "https://www.gravatar.com/avatar/10fc47d130e88df48935e3745d46a0ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 16:28:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12747218",
- "username": "pawelpz3",
- "fullName": "Pezet Pz (pawelpz3)",
- "avatarUrl": "https://www.gravatar.com/avatar/5792fadcae2059fa64a2e4ffa3f8046b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 17:22:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560192",
- "username": "Mistra",
- "fullName": "Giulio M. (Mistra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560192/medium/4ec7e927ebc53f584831f621c9cdf99b.png",
- "joined": "2021-01-02 21:36:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560410",
- "username": "xadaley17",
- "fullName": "Bl9kyla (xadaley17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560410/medium/ddad66517a1efc282d33f1ffde8bc4ea.png",
- "joined": "2021-01-03 03:06:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12664938",
- "username": "andibing",
- "fullName": "Andi Chandler (andibing)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12664938/medium/b8be63e4dcb2e791ced1ffc9e3a049a5.jpg",
- "joined": "2020-10-06 21:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916379",
- "username": "tairov2007",
- "fullName": "tairov2007",
- "avatarUrl": "https://www.gravatar.com/avatar/0f2b48e8bc00c368f5cf7ba77fc2a1e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 23:02:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907463",
- "username": "MiloWang2048",
- "fullName": "MiloWang (MiloWang2048)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907463/medium/e29974c348a5bf4d5041aaf7123c9125.jpeg",
- "joined": "2021-09-03 08:13:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566368",
- "username": "mrtkck",
- "fullName": "mrtkck",
- "avatarUrl": "https://www.gravatar.com/avatar/b2e97c013c7c249016b3fa12f38e6b8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-07 04:00:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14910467",
- "username": "Lamrish",
- "fullName": "Lamrish",
- "avatarUrl": "https://www.gravatar.com/avatar/8d4d080145190e6bef22fb909fbef5f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 20:27:16"
- },
- "languages": [
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 1117,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9077,
+ "default": 20,
+ "total": 9097
+ },
+ "targetTranslated": {
+ "tmMatch": 9093,
+ "default": 23,
+ "total": 9116
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1528
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565526",
- "username": "hoon5773",
- "fullName": "hoon5773",
- "avatarUrl": "https://www.gravatar.com/avatar/f853cc8fb39aed2cd5deeb241d968518?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-06 12:21:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14910103",
- "username": "AFSASFG",
- "fullName": "AFSASFG",
- "avatarUrl": "https://www.gravatar.com/avatar/24c21489483cc163fd495ddc28236c2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 11:46:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909973",
- "username": "Alexandros_Anthoulias-Topas",
- "fullName": "Alexandros_Anthoulias-Topas",
- "avatarUrl": "https://www.gravatar.com/avatar/c3fb487f75153cefbe97dd4623e14deb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 09:11:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909943",
- "username": "unique78",
- "fullName": "luis suatrez (unique78)",
- "avatarUrl": "https://www.gravatar.com/avatar/48b57b9bf7922a6079e6812991978db3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 08:38:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566028",
- "username": "cheon",
- "fullName": "cheon",
- "avatarUrl": "https://www.gravatar.com/avatar/606782dcdad24ba4a784b34e30817374?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-06 20:32:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566254",
- "username": "asjwilliams",
- "fullName": "William Christober (asjwilliams)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566254/medium/fa74305e6a4b6e705814ae66b3b45441.jpeg",
- "joined": "2021-01-07 03:29:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12582943",
- "username": "sorumfactory",
- "fullName": "shlv2001 (sorumfactory)",
- "avatarUrl": "https://www.gravatar.com/avatar/b4ac638295a8e37fc67b5b5a5bc3df2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-01 22:59:38"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 1577,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6462,
+ "default": 9,
+ "total": 6471
+ },
+ "targetTranslated": {
+ "tmMatch": 6481,
+ "default": 10,
+ "total": 6491
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1652
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 19308,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 10694,
+ "default": 13,
+ "total": 10707
+ },
+ "targetTranslated": {
+ "tmMatch": 11953,
+ "default": 14,
+ "total": 11967
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2421
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "de",
- "name": "German"
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 198,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 6
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "it",
- "name": "Italian"
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 902,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 9179,
+ "default": 20,
+ "total": 9199
+ },
+ "targetTranslated": {
+ "tmMatch": 8965,
+ "default": 19,
+ "total": 8984
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1420
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 17,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565366",
- "username": "brahumm.tzulao",
- "fullName": "Владислав Панченко (brahumm.tzulao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14565366/medium/fa54b5476ef1134bb2209a6c13ba85b3.jpg",
- "joined": "2021-01-06 10:32:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909119",
- "username": "hiroproto",
- "fullName": "hiroproto",
- "avatarUrl": "https://www.gravatar.com/avatar/0c57750d440709808bbd9dea1fc8567b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-04 14:57:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908643",
- "username": "babakghf",
- "fullName": "Babak GHF (babakghf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908643/medium/6cdce7510251fb86ad4a1acede92948e.png",
- "joined": "2021-09-04 07:09:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567326",
- "username": "MaYbe08",
- "fullName": "San Nad (MaYbe08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567326/medium/17ce7255f1ae78b889baaff301d01c78.jpg",
- "joined": "2021-01-07 19:00:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567566",
- "username": "kennywong",
- "fullName": "Wong Kenny (kennywong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567566/medium/decb2eeb8330bd3c667a86e5a709b0df.jpg",
- "joined": "2021-01-08 01:32:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907925",
- "username": "Aguidi",
- "fullName": "Aguidi",
- "avatarUrl": "https://www.gravatar.com/avatar/bc4858f7c9aaca560986ec21c82e98e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 14:55:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12582189",
- "username": "flaan4me",
- "fullName": "Sufian Rassam (flaan4me)",
- "avatarUrl": "https://www.gravatar.com/avatar/b61f24358881ca908f1f3d418d45b10d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 14:23:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567604",
- "username": "rootdminsql",
- "fullName": "In Effect (rootdminsql)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567604/medium/f7ce293419a5b432f311537dbba76099.jpeg",
- "joined": "2021-01-08 02:06:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911441",
- "username": "ameliemorandini",
- "fullName": "Amelie Morandi (ameliemorandini)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911441/medium/b2d0252725ffc62075031e7416bbc5ce.png",
- "joined": "2021-09-06 11:47:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564964",
- "username": "muhammadichsan200",
- "fullName": "Mhmdxchsn (muhammadichsan200)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564964/medium/100cdf956fef498b8ceb4c751f6bb089.jpeg",
- "joined": "2021-01-06 05:24:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916243",
- "username": "Cryptoloewe",
- "fullName": "Sebastian Weber (Cryptoloewe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916243/medium/567fd33456a8b1928e3e000622bdee84.jpeg",
- "joined": "2021-09-09 20:05:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029933",
- "username": "igoravilareis",
- "fullName": "igao 21 (igoravilareis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029933/medium/707857fac6a042632007b0b4d311a120.png",
- "joined": "2021-11-24 23:31:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562154",
- "username": "nahatnahat",
- "fullName": "nahatnahat",
- "avatarUrl": "https://www.gravatar.com/avatar/381e1f7a6be0beeafbbf98d7d6b87b29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 13:52:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916187",
- "username": "sergiodl",
- "fullName": "Sergio DL (sergiodl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916187/medium/8afc79ecace7f8dffd0c22bd777e4563.jpeg",
- "joined": "2021-09-09 18:58:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916007",
- "username": "clacholoton",
- "fullName": "jose miguel diaz (clacholoton)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916007/medium/ed6d1db6e505a8c896250ae520acabe1.jpeg",
- "joined": "2021-09-09 15:27:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562258",
- "username": "amiciandrea98",
- "fullName": "Andrea amici (amiciandrea98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562258/medium/6f0f37d30bbcca619be0cc2c4a7822b2.jpg",
- "joined": "2021-01-04 08:59:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562496",
- "username": "Jesus_Vallejo",
- "fullName": "Jesus Vallejo (Jesus_Vallejo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562496/medium/ca413111b2a571185f9f0fe9d11a0e08.jpeg",
- "joined": "2021-01-04 11:47:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029915",
- "username": "nesoron89",
- "fullName": "Nestor Orona (nesoron89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029915/medium/885c6475df43c505be374b74bb39313e.jpeg",
- "joined": "2021-11-24 23:07:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915191",
- "username": "Jack_Lemmon",
- "fullName": "Jack_Lemmon",
- "avatarUrl": "https://www.gravatar.com/avatar/a02b97ccff9c3cd916ef3f631f27e10e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 06:02:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562818",
- "username": "katerina510",
- "fullName": "katerina510",
- "avatarUrl": "https://www.gravatar.com/avatar/48755dfcb583a527c823d95498281bbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 16:28:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911915",
- "username": "mefis_1964",
- "fullName": "mefis_1964",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911915/medium/28cdea1d85b7d18d045cf9510584d9eb.jpg",
- "joined": "2021-09-06 19:53:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563048",
- "username": "gitano.santos20",
- "fullName": "gitano.santos20",
- "avatarUrl": "https://www.gravatar.com/avatar/20537f65e574d3e578c13e0ef5a29603?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 21:24:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563652",
- "username": "threeAndTwo",
- "fullName": "kailizhang (threeAndTwo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563652/medium/fe7cf56d7807101da10f0951c9c36b48.jpg",
- "joined": "2021-02-24 03:51:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564278",
- "username": "koba1t6",
- "fullName": "koba1t6",
- "avatarUrl": "https://www.gravatar.com/avatar/252f496f7b142a6b346671ebecc604ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-05 16:46:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14913319",
- "username": "Endovelicus",
- "fullName": "Endovelicus",
- "avatarUrl": "https://www.gravatar.com/avatar/9372b57e0c923ff6ac66200870b83719?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 20:12:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14913083",
- "username": "mrivero1981",
- "fullName": "hidroponia y varios (mrivero1981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14913083/medium/fd631c12b7b58d5e48a49b93f4c40ddb.jpeg",
- "joined": "2021-09-07 15:16:08"
- },
- "languages": [
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 269,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 236,
+ "default": 2,
+ "total": 238
+ },
+ "targetTranslated": {
+ "tmMatch": 243,
+ "default": 2,
+ "total": 245
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 83
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 183,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1669,
+ "default": 7,
+ "total": 1676
+ },
+ "targetTranslated": {
+ "tmMatch": 3159,
+ "default": 16,
+ "total": 3175
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 203
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 38,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564508",
- "username": "burh871",
- "fullName": "M Burhanudin (burh871)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564508/medium/cf1201726669fc1c5ea2b83338590930.jpeg",
- "joined": "2021-01-05 21:27:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14912261",
- "username": "longsirisiri",
- "fullName": "Siri Long (longsirisiri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14912261/medium/8fd57dba42b01d7033191a4939aa57fa.jpeg",
- "joined": "2021-09-07 03:14:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14428746",
- "username": "phfives55",
- "fullName": "phil Fives (phfives55)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14428746/medium/afd1cf532b731c5e2173ab126d03c880.jpg",
- "joined": "2020-09-23 11:18:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14368838",
- "username": "emrecan001",
- "fullName": "EmreCan Ayas (emrecan001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14368838/medium/6b54a909cde1ed991887e4625ccd2a4e.jpeg",
- "joined": "2020-08-06 03:01:31"
- },
- "languages": [
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 129,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2079,
+ "default": 2,
+ "total": 2081
+ },
+ "targetTranslated": {
+ "tmMatch": 2493,
+ "default": 3,
+ "total": 2496
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 814
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14422568",
- "username": "twenty1pi",
- "fullName": "twenty1pi",
- "avatarUrl": "https://www.gravatar.com/avatar/a10ab863f67b2e78f9da77550bf2e6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-19 11:15:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974589",
- "username": "Tschentsch",
- "fullName": "Uta Tschentscher (Tschentsch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974589/medium/a2ebc3f083603003e48ea80ad66492af.jpeg",
- "joined": "2021-10-24 11:04:40"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 1068,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5477,
+ "default": 7,
+ "total": 5484
+ },
+ "targetTranslated": {
+ "tmMatch": 3265,
+ "default": 6,
+ "total": 3271
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1380
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960747",
- "username": "Tsunade69",
- "fullName": "Tsunade69",
- "avatarUrl": "https://www.gravatar.com/avatar/9d9c77c3394212390e6a22f581610b56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 21:51:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975409",
- "username": "lovettisfantastic",
- "fullName": "Data Visualization (lovettisfantastic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14975409/medium/6cfb6b0708e0e3fef3a8ec1d3649a4a6.png",
- "joined": "2021-10-25 06:56:25"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 3969,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 8790,
+ "default": 14,
+ "total": 8804
+ },
+ "targetTranslated": {
+ "tmMatch": 8222,
+ "default": 16,
+ "total": 8238
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1391
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960093",
- "username": "mkalinin",
- "fullName": "mkalinin",
- "avatarUrl": "https://www.gravatar.com/avatar/de1acbd374d8e50125e39afbc744e387?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 05:33:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14064533",
- "username": "m11ad",
- "fullName": "m11ad",
- "avatarUrl": "https://www.gravatar.com/avatar/b516ad50e176b56ff745f84e8778ae19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-04 16:05:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997177",
- "username": "Aleksey_Peregudov",
- "fullName": "Aleksey_Peregudov",
- "avatarUrl": "https://www.gravatar.com/avatar/cc66100e1595c290d831122dd04b3a02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 09:45:24"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 8584,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5726,
+ "default": 6,
+ "total": 5732
+ },
+ "targetTranslated": {
+ "tmMatch": 5805,
+ "default": 15,
+ "total": 5820
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 427
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959935",
- "username": "JaneK96",
- "fullName": "JaneK96",
- "avatarUrl": "https://www.gravatar.com/avatar/24a54d61c9dce4433e96434fc85902dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 01:50:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959263",
- "username": "quantumfranci",
- "fullName": "quantumfranci",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959263/medium/630a8a52fde725ae1cc684e056bff44f.jpg",
- "joined": "2019-08-22 09:30:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975911",
- "username": "SQ911",
- "fullName": "SQ911",
- "avatarUrl": "https://www.gravatar.com/avatar/49f909cb01992f7bf367a8c20a7f12d4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 15:06:58"
- },
- "languages": [
+ "language": {
+ "id": "ur-IN",
+ "name": "Urdu (India)",
+ "tmSavings": 0,
+ "preTranslate": 6,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 0,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 0,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997603",
- "username": "xmasyx",
- "fullName": "xmasyx",
- "avatarUrl": "https://www.gravatar.com/avatar/0506305791b75f669c796d107218825f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 08:27:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13957651",
- "username": "souptacular",
- "fullName": "souptacular",
- "avatarUrl": "https://www.gravatar.com/avatar/8e5665155922ace7efbb4907f8d88d53?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-20 23:39:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998001",
- "username": "davidliath",
- "fullName": "David Rosas (davidliath)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998001/medium/4287172e67f944930e8f091bed072d08.png",
- "joined": "2021-11-10 13:58:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14073727",
- "username": "vartotoja",
- "fullName": "Greta Bartuševičiūtė (vartotoja)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14073727/medium/09866073873ac38e81712006f7f1b43e.jpg",
- "joined": "2020-01-13 04:38:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14075673",
- "username": "CryptoRose",
- "fullName": "CryptoRose",
- "avatarUrl": "https://www.gravatar.com/avatar/a239a889a6916f9579747e0c6168a5d3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-14 01:55:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13951877",
- "username": "oht-test",
- "fullName": "oht-test",
- "avatarUrl": "https://www.gravatar.com/avatar/9a42762d92c2e4ed876198ca878178d9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-24 07:10:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973967",
- "username": "thisismax",
- "fullName": "Maximilian M. (thisismax)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973967/medium/d92acb11a389b172597b85de97d344c5.png",
- "joined": "2021-10-23 19:22:33"
- },
- "languages": [
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 164,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975853",
- "username": "TanyaLuk",
- "fullName": "TanyaLuk",
- "avatarUrl": "https://www.gravatar.com/avatar/f730cbbf5608f1b399895926fdd6a752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 05:31:56"
- },
- "languages": [
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 2485,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2838,
+ "default": 0,
+ "total": 2838
+ },
+ "targetTranslated": {
+ "tmMatch": 2664,
+ "default": 0,
+ "total": 2664
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1221
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 128,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13961683",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/bd6a79f6c41caeb962a065c9e4b593d6?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-25 01:50:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998241",
- "username": "Mohamadrezashahneshin",
- "fullName": "Mohamadrezashahneshin",
- "avatarUrl": "https://www.gravatar.com/avatar/640879f880a2b11c51a992f9b7410cea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 18:15:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13967479",
- "username": "grzegorczykadam9",
- "fullName": "Adam Grzegorczyk (grzegorczykadam9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13967479/medium/cf2e85a4c91c0f31ec7d371c7fa10da4.jpg",
- "joined": "2021-06-18 12:28:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13979995",
- "username": "Mohamedwaly015",
- "fullName": "Mohamedwaly015",
- "avatarUrl": "https://www.gravatar.com/avatar/30352d56de0ac0d5dee42ea36bf6a1d4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-11 12:12:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14050095",
- "username": "gepko",
- "fullName": "Global Ekoloji Projeleri Katılım Ortaklığı (gepko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14050095/medium/a07765f2d598879838406e3d1fed2684.png",
- "joined": "2019-12-09 18:54:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995701",
- "username": "GridsMicro",
- "fullName": "GridsMicro",
- "avatarUrl": "https://www.gravatar.com/avatar/45e2a758a03628a929f80757f3224484?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 23:20:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995715",
- "username": "hung1186",
- "fullName": "hung1186",
- "avatarUrl": "https://www.gravatar.com/avatar/b8d2313434c406c7a49a8278d8c93ece?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 23:46:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14053629",
- "username": "erick.taszo",
- "fullName": "erick.taszo",
- "avatarUrl": "https://www.gravatar.com/avatar/a5869612f0ea3d90e3d8e2f336acbc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-16 20:55:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996021",
- "username": "AnsellMaximilian",
- "fullName": "Ansell Maximilian (AnsellMaximilian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996021/medium/aae8697c284d63bdafeca3e65d1a0198.png",
- "joined": "2021-11-09 05:02:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978111",
- "username": "guilhermecapitao",
- "fullName": "guilhermecapitao",
- "avatarUrl": "https://www.gravatar.com/avatar/2d6f972845c76f2070aa942ac795c353?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-27 09:22:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977845",
- "username": "yuwei.yubuzhi",
- "fullName": "wei yu (yuwei.yubuzhi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977845/medium/b42d0d4cafb6c07fa57394ea5779ccc1.jpeg",
- "joined": "2021-10-27 05:29:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14976459",
- "username": "sautermarcel2",
- "fullName": "Marcel Sauter (sautermarcel2)",
- "avatarUrl": "https://www.gravatar.com/avatar/2fba66f2f46eb49faeee1b8484310b24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-26 03:54:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13966789",
- "username": "melazouny9",
- "fullName": "Mahmoud (melazouny9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13966789/medium/1a4e6090e25cf850490420c21485aef3.png",
- "joined": "2019-08-30 05:05:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13966413",
- "username": "miltonwilson",
- "fullName": "miltonwilson",
- "avatarUrl": "https://www.gravatar.com/avatar/ce22174e90d2311116f19d084ac38b6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-29 16:19:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977437",
- "username": "kmtc241",
- "fullName": "Kim Mark (kmtc241)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977437/medium/c346bca2f389dfe7371351a4fe34ed26.png",
- "joined": "2021-10-26 21:24:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977301",
- "username": "mines1974",
- "fullName": "María Inés (mines1974)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977301/medium/ad69c202e75a23c6ff17fbe82d11b6dc.jpeg",
- "joined": "2021-10-26 17:32:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13961685",
- "username": "MasaUno",
- "fullName": "MasaUno",
- "avatarUrl": "https://www.gravatar.com/avatar/4509de031e55cd15aa8242d0e2569d0a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-25 01:52:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14058516",
- "username": "iamsagar012",
- "fullName": "Md. Appel Mahmud Sagar (iamsagar012)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058516/medium/c931da6c67f952f3dec5f76a6f8cb35d.jpeg",
- "joined": "2019-12-26 17:15:16"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 2238,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5275,
+ "default": 8,
+ "total": 5283
+ },
+ "targetTranslated": {
+ "tmMatch": 7392,
+ "default": 19,
+ "total": 7411
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 352
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14060128",
- "username": "duythanhvn",
- "fullName": "Duy–Thanh Doan (duythanhvn)",
- "avatarUrl": "https://www.gravatar.com/avatar/ab1686ddd5d865251df3333e9e4aa7f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 11:17:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973821",
- "username": "isaialcantar",
- "fullName": "isaialcantar",
- "avatarUrl": "https://www.gravatar.com/avatar/a0077ab14604370bce0d87ee9bc0efc0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 15:49:17"
- },
- "languages": [
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 119,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 513,
+ "default": 10,
+ "total": 523
+ },
+ "targetTranslated": {
+ "tmMatch": 728,
+ "default": 19,
+ "total": 747
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 80
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14691960,
+ "username": "evilever",
+ "fullName": "Ever Lavén (evilever)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691960/medium/8f7a197d1400926e916428a4179b1864.jpg",
+ "preTranslated": 0,
+ "totalCosts": 140
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 140
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 140,
+ "total": 140
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 131,
+ "total": 131
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 140,
+ "total": 140
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995351,
+ "username": "jora535",
+ "fullName": "Evgeniy (jora535)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995351/medium/5edba64a00e991d7176c8a1d6fe5cb27.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 78
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 78
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779146,
+ "username": "Ewen190402",
+ "fullName": "Ewen (Ewen190402)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779146/medium/9b4d550ef47412c053101f91995038c5.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14674186,
+ "username": "yan.ex10si0n",
+ "fullName": "Ex10si0n Yan (yan.ex10si0n)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674186/medium/54d9df12345cb68993f1227afde2e10e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14565950,
+ "username": "fabricioparramaldonado",
+ "fullName": "Fabricio Parra (fabricioparramaldonado)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14565950/medium/6bfbe7ea0c369386965c196fd15e0905.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14262736,
+ "username": "Fabricoepe3",
+ "fullName": "Fabrizio Coello Perez (Fabricoepe3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14262736/medium/e0f3439d3cb27b607e68182245fc92ca.jpg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 15,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 17,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 15,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775032,
+ "username": "fadeltd",
+ "fullName": "Fadel Trivandi Dipantara (fadeltd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775032/medium/6055b8485797870254f6f76e17aafd3c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 236
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 236
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 233,
+ "total": 236
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 211,
+ "total": 213
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 233,
+ "total": 236
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14657340,
+ "username": "FadyZarief",
+ "fullName": "Fady Zarief (FadyZarief)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/916820c2307b32d337d9e04d9b485ecb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14878484,
+ "username": "FahadOsaimi",
+ "fullName": "Fahad Osaimi (FahadOsaimi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878484/medium/a1b78f9090f604c464b910d59796731a.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 114,
+ "total": 118
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14401162,
+ "username": "ftorresbriseno",
+ "fullName": "Fanny Alejandra Torres Briseño (ftorresbriseno)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14401162/medium/34f1aeea92bcd02c05235bf486354148.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 626
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 626
+ },
+ "translated": {
+ "tmMatch": 173,
+ "default": 453,
+ "total": 626
+ },
+ "targetTranslated": {
+ "tmMatch": 210,
+ "default": 493,
+ "total": 703
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 233,
+ "total": 233
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 173,
+ "default": 453,
+ "total": 626
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737838,
+ "username": "farukre",
+ "fullName": "Faruk Urer (farukre)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737838/medium/7121319a2b515e6170c50820f96538c9.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 61,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737506,
+ "username": "Fatorin",
+ "fullName": "Fatorin",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737506/medium/2d0f76b581d1fef9ebf6e3a26f0faee2.png",
+ "preTranslated": 0,
+ "totalCosts": 153
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 153
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 149,
+ "total": 153
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 247,
+ "total": 258
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 149,
+ "total": 153
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778796,
+ "username": "Tiara19",
+ "fullName": "Fauzi Rahman (Tiara19)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778796/medium/78468d88b1f5701e8d8aefa5c6272c4d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1148
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 1130,
+ "total": 1148
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 906,
+ "total": 924
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 1130,
+ "total": 1148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14717614,
+ "username": "juniorphb",
+ "fullName": "Fco Veras Jr (juniorphb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717614/medium/7a7c2429a4f8c7d13e760203abc0a708.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 526
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 526
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 509,
+ "total": 526
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 490,
+ "total": 511
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 509,
+ "total": 526
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959455,
+ "username": "fede.viar",
+ "fullName": "Fede Viarnés (fede.viar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959455/medium/c26b345de3294b71a14505b3fb93b412.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 859
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 859
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 839,
+ "total": 859
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 871,
+ "total": 891
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 839,
+ "total": 859
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844630,
+ "username": "federossotto",
+ "fullName": "Federico Rossotto (federossotto)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844630/medium/d45be4767bd1a7607afefb86919b908c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 487
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 487
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 456,
+ "total": 487
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 545,
+ "total": 583
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 456,
+ "total": 487
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14548736,
+ "username": "rojasafelipe91",
+ "fullName": "Felipe Alfonso Rojas Araya (rojasafelipe91)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548736/medium/eeb1f188ab9959eddb3275ae693664b2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 55
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 55
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712840,
+ "username": "FelipeMaitan",
+ "fullName": "FelipeMaitan",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712840/medium/cfd99eb4dba39d60d3f78be48724cebe.png",
+ "preTranslated": 0,
+ "totalCosts": 390
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 390
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 368,
+ "total": 390
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 369,
+ "total": 392
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 125,
+ "total": 125
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 368,
+ "total": 390
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969101,
+ "username": "FernandoAriel",
+ "fullName": "Fernando Ariel Rodriguez (FernandoAriel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969101/medium/d7de9a5c295620ca49956106bb6938d0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14642902,
+ "username": "kfern",
+ "fullName": "Fernando Navarro (kfern)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642902/medium/75be12c06ec6e9a77bd4ef4ed3582c3d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 646
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 646
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 642,
+ "total": 646
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 583,
+ "total": 589
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 642,
+ "total": 646
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14185873,
+ "username": "fgorczynski",
+ "fullName": "Filip Górczyński (fgorczynski)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14185873/medium/39e4bd835fb01f6fa0682a374c26044a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14594126,
+ "username": "firas.abu.zarad",
+ "fullName": "Firas Abu Zarad (firas.abu.zarad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594126/medium/50207aa5b92b67c5b216a12ca49fdeab.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 203
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 142,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 122,
+ "total": 122
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 142,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 61
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 52,
+ "total": 61
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 27,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 52,
+ "total": 61
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14798702,
+ "username": "FlorentLef",
+ "fullName": "Florent Lefebvre (FlorentLef)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798702/medium/b7d6ed1d69505955e065e3518df312b0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 129
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14026590,
+ "username": "florijan.kocbek",
+ "fullName": "Florijan Kocbek (florijan.kocbek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14026590/medium/303298c7b37fc4252b47f87fa21f2825.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732012,
+ "username": "FlavioEPimentel",
+ "fullName": "Flávio E Pimentel (FlavioEPimentel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732012/medium/202a93142c6959ff5855813a8735d10a.png",
+ "preTranslated": 0,
+ "totalCosts": 490
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 490
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 477,
+ "total": 490
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 517,
+ "total": 532
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 210,
+ "total": 211
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 477,
+ "total": 490
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748222,
+ "username": "ffmpp",
+ "fullName": "Flávio FM (ffmpp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748222/medium/38294fc1a0e915f0f021ffb221e8573b.png",
+ "preTranslated": 0,
+ "totalCosts": 81
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 81
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 81,
+ "total": 81
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 86,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 81,
+ "total": 81
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14562648,
+ "username": "Secozzi",
+ "fullName": "Folke Ishii (Secozzi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562648/medium/d3df1bcfe4433e62dae6ece380be6503.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14649550,
+ "username": "forty.cat1997",
+ "fullName": "Fortunato Catania (forty.cat1997)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14649550/medium/363188cca21ef93a6e9e7578a8ef65f9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 23,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 22,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 23,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14773990,
+ "username": "franrungo",
+ "fullName": "Fran Rungo (franrungo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773990/medium/47a7bdb594a935a135b55d6fd938ff41.png",
+ "preTranslated": 0,
+ "totalCosts": 441
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 441
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 435,
+ "total": 441
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 380,
+ "total": 389
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 435,
+ "total": 441
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966559,
+ "username": "anacapito",
+ "fullName": "Franc Monroe (anacapito)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966559/medium/0562cb42f70b521e24bfd625b8dce4b9.png",
+ "preTranslated": 0,
+ "totalCosts": 647
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 647
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 619,
+ "total": 647
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 646,
+ "total": 676
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 619,
+ "total": 647
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14728816,
+ "username": "scaliotifrancesco",
+ "fullName": "Francesco Scalioti (scaliotifrancesco)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728816/medium/44402c6a7b9e61f79ebcfc9f7afb14c4.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14621154,
+ "username": "farnfarn",
+ "fullName": "Francisco Bacete Menchón (farnfarn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621154/medium/a58730d4f97aa60c31331e2a2de6aa35.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 119
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 134,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14710538,
+ "username": "StayCoolDK",
+ "fullName": "Frankieboy93 (StayCoolDK)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710538/medium/43522513b3c357f3de6b6e0e0be597aa.jpg",
+ "preTranslated": 0,
+ "totalCosts": 450
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 450
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 444,
+ "total": 450
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 444,
+ "total": 450
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 444,
+ "total": 450
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553432,
+ "username": "franzihei",
+ "fullName": "Franziska Heintel (franzihei)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553432/medium/1f1a5fa4da0d90d1c7853118ebe80f22.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 741
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 741
+ },
+ "translated": {
+ "tmMatch": 41,
+ "default": 700,
+ "total": 741
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 708,
+ "total": 744
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 41,
+ "default": 700,
+ "total": 741
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030627,
+ "username": "developerfred",
+ "fullName": "Fred @codingsh (developerfred)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14030627/medium/03ffd8e59b3a41cd97571d840f1789c7.png",
+ "preTranslated": 0,
+ "totalCosts": 143
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 36,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 40,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 36,
+ "total": 51
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14077391",
- "username": "dreikronen84",
- "fullName": "Anatoliy Wenzel (dreikronen84)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14077391/medium/32ee13f98c3481415326327342926328.png",
- "joined": "2020-01-15 09:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14049843",
- "username": "baby636",
- "fullName": "baby636",
- "avatarUrl": "https://www.gravatar.com/avatar/04c44f48fdbdc2be0897d0be8a52bcff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 01:03:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970305",
- "username": "jimmysmith.oliveira",
- "fullName": "JM Smith Uchiha (jimmysmith.oliveira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970305/medium/af571c3b068e8d39e447250174ba3c17.jpeg",
- "joined": "2021-10-20 15:51:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903145",
- "username": "gjwjdangod",
- "fullName": "gjwjdangod",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903145/medium/4b79af04dc03c8bcbae79a1ed64a907b.jpeg",
- "joined": "2019-07-02 04:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13872587",
- "username": "n1clud3",
- "fullName": "Mykola Malovanyi (n1clud3)",
- "avatarUrl": "https://www.gravatar.com/avatar/4bf74ea2c06025b594062f699550ccc8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 12:51:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14134879",
- "username": "admin34",
- "fullName": "admin34",
- "avatarUrl": "https://www.gravatar.com/avatar/0f683cfbd927d4187262173a2f7808c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-25 19:58:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14139371",
- "username": "dturkanovic",
- "fullName": "dturkanovic",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14139371/medium/b38582d09aad672fc0c59465414948da.png",
- "joined": "2020-02-29 07:52:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970819",
- "username": "NONAME699",
- "fullName": "NONAME699",
- "avatarUrl": "https://www.gravatar.com/avatar/71bac83ba11dff65ea1b136469e8a474?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-21 03:42:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14145365",
- "username": "dariocast",
- "fullName": "Dario Castellano (dariocast)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14145365/medium/03f0aa483437cb1c83d02ca29036c317.jpeg",
- "joined": "2021-02-28 11:10:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000527",
- "username": "CristianCB",
- "fullName": "CristianCB",
- "avatarUrl": "https://www.gravatar.com/avatar/85a5f1003aa2b096a6b857a2dba41f63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 10:16:05"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 40,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 55,
+ "default": 40,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 10,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 40,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14078043,
+ "username": "sdfabiosilva",
+ "fullName": "Fábio Silva (sdfabiosilva)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14078043/medium/224ecf881424870b23a4517c55f6ba95.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 60,
+ "default": 0,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 0,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 60,
+ "default": 0,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952033,
+ "username": "GalPe",
+ "fullName": "G Koleva (GalPe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952033/medium/b5cd61c1c84411584d7f95a0293006e4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 237
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 237
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 237,
+ "total": 237
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 213,
+ "total": 213
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 237,
+ "total": 237
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14917615,
+ "username": "G3Bp2ONcJAJ03zq",
+ "fullName": "G3Bp2ONcJAJ03zq",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917615/medium/c2f490d143480e70240b34aa48ec6f76.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880826,
+ "username": "igenekim",
+ "fullName": "GENE KIM (igenekim)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880826/medium/321dd4c0081b9a2246cd14956dd1c36a.png",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771528,
+ "username": "gsonicsad",
+ "fullName": "GSS Germanstreetstyle (gsonicsad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771528/medium/c51abef9fc773d08735d7b7445d524c4.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14028051,
+ "username": "angaisdev",
+ "fullName": "Gabriel Almeida (angaisdev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14028051/medium/674e6659cafc0e431650100a34b6ea58.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 225
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 225
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 215,
+ "total": 225
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 240,
+ "total": 252
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 215,
+ "total": 225
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14594278,
+ "username": "murray_rothbard",
+ "fullName": "Gabriel Mendes (murray_rothbard)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594278/medium/2db3f31d8f58c858123958b1d8988312.jpg",
+ "preTranslated": 0,
+ "totalCosts": 140
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 140
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 140,
+ "total": 140
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 158,
+ "total": 158
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 140,
+ "total": 140
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959485,
+ "username": "gabrocheleau",
+ "fullName": "Gabriel Rocheleau (gabrocheleau)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959485/medium/c03b8e7ceadf394bdc3dfcf4e04b29ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891780,
+ "username": "GabrielaAndere",
+ "fullName": "Gabriela Andere (GabrielaAndere)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891780/medium/27acbd59c98271b2bbb592ad38bc5f87.jpg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 58,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 64,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 38,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 58,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14591102,
+ "username": "Gamer_top_13",
+ "fullName": "Gamer 13 (Gamer_top_13)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591102/medium/2b42c26cd428975962a463206e80a523.png",
+ "preTranslated": 0,
+ "totalCosts": 165
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 165
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 155,
+ "total": 165
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 160,
+ "total": 169
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 155,
+ "total": 165
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572278,
+ "username": "rarar13524",
+ "fullName": "Gaming with XRamyX (rarar13524)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572278/medium/2dd70d77260fb974186e5a1d6864b830.jpg",
+ "preTranslated": 0,
+ "totalCosts": 192
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 192
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 189,
+ "total": 192
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 189,
+ "total": 190
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 189,
+ "total": 192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024245,
+ "username": "gayathri.ramanujam.2021",
+ "fullName": "Gayathri Ramanujam (gayathri.ramanujam.2021)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024245/medium/334a06e375b4e1726f745adff19eadb3.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 8,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969731",
- "username": "fencuku",
- "fullName": "Юлія Фенчук (fencuku)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969731/medium/c09162590c2bce9c83b4e6e5ce6e9324.png",
- "joined": "2021-10-20 08:52:21"
- },
- "languages": [
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14635054,
+ "username": "GourmelonGaetan",
+ "fullName": "Gaëtan Gourmelon (GourmelonGaetan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635054/medium/92dc7e601ce7911daafcfaecb875e0cd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12804952,
+ "username": "imgelu",
+ "fullName": "Gelu Ungur (imgelu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12804952/medium/59d5d165d5b422c57908e7797d3b83ee.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8530
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8530
+ },
+ "translated": {
+ "tmMatch": 1001,
+ "default": 7529,
+ "total": 8530
+ },
+ "targetTranslated": {
+ "tmMatch": 1048,
+ "default": 8093,
+ "total": 9141
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 5,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1001,
+ "default": 7529,
+ "total": 8530
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778994,
+ "username": "george_madikas",
+ "fullName": "George Madikas (george_madikas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778994/medium/4cfe80680f967a77cf11d702460efc46.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14766056,
+ "username": "george.vslv",
+ "fullName": "George V (george.vslv)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766056/medium/154d4f8776f49bc3b56ac57c0c2b02c9.png",
+ "preTranslated": 0,
+ "totalCosts": 667
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 667
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 655,
+ "total": 667
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 601,
+ "total": 614
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 655,
+ "total": 667
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14626994,
+ "username": "Ggilb3rt",
+ "fullName": "Ggilb3rt",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14626994/medium/a2e1466127b12576ff9890b35189de58.png",
+ "preTranslated": 0,
+ "totalCosts": 297
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 297
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 293,
+ "total": 297
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 317,
+ "total": 320
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 293,
+ "total": 297
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846468,
+ "username": "khanh30125",
+ "fullName": "Gia Khánh Phạm (khanh30125)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846468/medium/3749044fc47f1a5aa666bfcc50f7af1d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 72,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 118,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 72,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14704914,
+ "username": "Gian-Lorenzo",
+ "fullName": "Gian-Lorenzo",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704914/medium/4a90eb0bb07d82f11b122198ee8c47ab.png",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 84,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 100,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 84,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669508,
+ "username": "Gianmarcodev",
+ "fullName": "Gianmarco Venerito (Gianmarcodev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669508/medium/a8a764af2fe9af958a410c723fbd2167.png",
+ "preTranslated": 0,
+ "totalCosts": 427
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 427
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 400,
+ "total": 427
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 351,
+ "total": 364
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 400,
+ "total": 427
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673606,
+ "username": "ginaborgiani",
+ "fullName": "Gina Borgiani (ginaborgiani)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673606/medium/2d654f00b5f5bedb8a4692815772641f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633114,
+ "username": "gea1981",
+ "fullName": "Giovanni Antonio Montalto (gea1981)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633114/medium/7725c7f09d7fa1fb382faf515cef1508.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 146,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 161,
+ "total": 163
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 146,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14703186,
+ "username": "giovanni.campagnoli",
+ "fullName": "Giovanni Campagnoli (giovanni.campagnoli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703186/medium/44ae9c0792ba94297253ea6cebe4445d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682572,
+ "username": "giovanni.lagunaolaya",
+ "fullName": "Giovanni Laguna (giovanni.lagunaolaya)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682572/medium/f7aa3e4eb0e844db0db1d6b00951bb82.jpg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14841924,
+ "username": "giulia29",
+ "fullName": "Giulia Iuppa (giulia29)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14841924/medium/8491c59d47fdaf576a34ff07a9808c5c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677210,
+ "username": "giu27seppe",
+ "fullName": "Giuseppe Basile (giu27seppe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677210/medium/8199dcb64c9e0a06393c8d4d3f55dd62.jpg",
+ "preTranslated": 0,
+ "totalCosts": 215
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 215
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 213,
+ "total": 215
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 180,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 213,
+ "total": 215
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13330091,
+ "username": "Neurone",
+ "fullName": "Giuseppe Bertone (Neurone)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13330091/medium/3b845ffc974bc9d909b60d7ed4ca5bf8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12344679,
+ "username": "Goudarz",
+ "fullName": "Goudarz Jafari (Goudarz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12344679/medium/440e37e365fb0450a6999de7b907f214.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12579111,
+ "username": "ofek18",
+ "fullName": "Green Army (ofek18)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12579111/medium/7a32cf48eea062741b673c3bfc07b9b3.gif",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 19,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 13,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 19,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14666408,
+ "username": "gregosaure",
+ "fullName": "Gregory Kalscheuer (gregosaure)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666408/medium/99af6b68941ee050aa03bd23c1ec27aa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995487,
+ "username": "Gu1ll0t3",
+ "fullName": "Gu1ll0t3",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995487/medium/f890d1e85e50d0289ca19930aae629d1.png",
+ "preTranslated": 0,
+ "totalCosts": 434
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 434
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 376,
+ "total": 434
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 375,
+ "total": 442
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 376,
+ "total": 434
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969167,
+ "username": "Chenguang",
+ "fullName": "Guang Chen (Chenguang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969167/medium/836403c60f29409ef8ca2acc585c8d61.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2914
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2914
+ },
+ "translated": {
+ "tmMatch": 107,
+ "default": 2807,
+ "total": 2914
+ },
+ "targetTranslated": {
+ "tmMatch": 162,
+ "default": 4542,
+ "total": 4704
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 282,
+ "total": 291
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 107,
+ "default": 2807,
+ "total": 2914
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14875990,
+ "username": "guilhermevendramini",
+ "fullName": "Guilherme Vendramini (guilhermevendramini)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875990/medium/6c42a855600f60124d4fbb49962d2226.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5960
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5960
+ },
+ "translated": {
+ "tmMatch": 182,
+ "default": 5778,
+ "total": 5960
+ },
+ "targetTranslated": {
+ "tmMatch": 180,
+ "default": 5537,
+ "total": 5717
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 917,
+ "total": 926
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 182,
+ "default": 5778,
+ "total": 5960
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12590247,
+ "username": "gursingh",
+ "fullName": "Gursharnjit Singh (gursingh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/911f7049d7660c93e2d0e01245ee2d4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 128
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 128
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 223,
+ "total": 223
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14550264,
+ "username": "mr.gustavo.ramos",
+ "fullName": "Gus Ram (mr.gustavo.ramos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14550264/medium/554eb671c71a65dafaef15d70cbaa11f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 318
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 318
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 315,
+ "total": 318
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 357,
+ "total": 361
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 67,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 315,
+ "total": 318
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14711810,
+ "username": "malzebu",
+ "fullName": "Gustavo BJ (malzebu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711810/medium/cd03191615e232f82ead1a505c725868.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 192
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 192
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 189,
+ "total": 192
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 199,
+ "total": 202
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 189,
+ "total": 192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759828,
+ "username": "FSJGus",
+ "fullName": "Gustavo Lima (FSJGus)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759828/medium/2ab0d05afed7232420ed8bb10abe5513.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14000275,
+ "username": "gstvribs",
+ "fullName": "Gustavo Ribeiro (gstvribs)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000275/medium/4e40d6163c8df85f9868e1d39806f4a7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779612,
+ "username": "gwenael.griffon",
+ "fullName": "GwN (gwenael.griffon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779612/medium/a701e4e478f925227717ec68a9fb0581.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 186
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 186
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 176,
+ "total": 186
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 180,
+ "total": 197
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 72,
+ "total": 74
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 176,
+ "total": 186
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725992,
+ "username": "gkhnatc80",
+ "fullName": "Gökhan Atıcı (gkhnatc80)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725992/medium/738fc97226613aced2536303eff2ff22.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 19,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 15,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 19,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13505487,
+ "username": "gorkemakova",
+ "fullName": "Görkem Akova (gorkemakova)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13505487/medium/d53a04e33d027fa9892cd33ce25d077b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 9,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 11,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 9,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14900372,
+ "username": "h2-so4",
+ "fullName": "H2-SO4 (h2-so4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900372/medium/0e2d91393c967253a354ded009b0df61.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14729442,
+ "username": "dddpower",
+ "fullName": "HS J (dddpower)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729442/medium/0914935a24ff8326fedeab8863ffe8a7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 38,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 33,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 38,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14353306,
+ "username": "kvdbve34",
+ "fullName": "HSD Channel (kvdbve34)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14353306/medium/413ef0013c32d733ecc690e5d7445d0e.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780896,
+ "username": "Hacklowa",
+ "fullName": "Hacklowa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d8e6df7ff204ca03bc2a2f76c4923b33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 89
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 89
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 86,
+ "total": 89
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 89,
+ "total": 91
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 86,
+ "total": 89
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14802856,
+ "username": "hadeel.a",
+ "fullName": "Hadeel A. (hadeel.a)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/db294d466dc1976479f39453d7cd9ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14021891,
+ "username": "hadi.jami",
+ "fullName": "Hadi Jami (hadi.jami)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14021891/medium/44cc377b4fc43a3e13c36a754b5a469b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14048507,
+ "username": "hknaltinbas",
+ "fullName": "Hakan Altınbaş (hknaltinbas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048507/medium/98569053b2625adaa3f717b50e5e2463.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675016,
+ "username": "Halah-Mahmood",
+ "fullName": "Halah Mahmood (Halah-Mahmood)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8d13e3489a7764e7e0fbb52f7d9b5786?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 138,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 138,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14781120,
+ "username": "hamed.ashrafi",
+ "fullName": "Hamed Ashrafi (hamed.ashrafi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781120/medium/d555db51771c6342e7a1cbe6ac78039b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14197298,
+ "username": "hamza.001ghz",
+ "fullName": "Hamza El GhAZALY (hamza.001ghz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197298/medium/5ea8bb8d213209d9ac915d075bc4b61f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 391
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 391
+ },
+ "translated": {
+ "tmMatch": 233,
+ "default": 158,
+ "total": 391
+ },
+ "targetTranslated": {
+ "tmMatch": 222,
+ "default": 149,
+ "total": 371
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 233,
+ "default": 158,
+ "total": 391
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12455773,
+ "username": "uzeconomist",
+ "fullName": "Hamza Foziljonov (uzeconomist)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/72756a61e0c4489135139c4fd27da269?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028647,
+ "username": "hhkim0",
+ "fullName": "Hanhui Kim (hhkim0)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028647/medium/1ef77054a9896b40551efaac9878f218.png",
+ "preTranslated": 0,
+ "totalCosts": 675
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 675
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 666,
+ "total": 675
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 515,
+ "total": 525
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 666,
+ "total": 675
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14103835,
+ "username": "hrkrshnn",
+ "fullName": "Harikrishnan Mulackal (hrkrshnn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14103835/medium/922ba8f9957c54294283e7f42b9d6854.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14196752,
+ "username": "harithk.17",
+ "fullName": "Harith Kamarul (harithk.17)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14196752/medium/96c07ebdf4c7dea2b16141e5f354062d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 7,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867212,
+ "username": "haritz_950423",
+ "fullName": "Haritz Lopez (haritz_950423)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867212/medium/f2d03c7459424f9158deca133bb7a6db.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709432,
+ "username": "s.c.macchiato",
+ "fullName": "Haruka Kawamura (s.c.macchiato)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709432/medium/cdfb5efd65d125af9b5d5a1d17d039f8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865958,
+ "username": "hasanmumtaz",
+ "fullName": "Hasan Mumtaz (hasanmumtaz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865958/medium/cf8ccfc57528109bd94fb6dde9ec456f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 18,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 31,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 2,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 18,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631218,
+ "username": "MesteRobot",
+ "fullName": "Hassan Doodiyan (MesteRobot)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631218/medium/499382603dfcc6053e1c2f872742c39e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13459452,
+ "username": "nwongnor",
+ "fullName": "Heart Beach (nwongnor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13459452/medium/428ad434e95cd784ff7864593f3c37e6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678164,
+ "username": "dlsifgww81",
+ "fullName": "Heng Lee (dlsifgww81)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678164/medium/7503bb5a61ce188a1bb1ea2a89d94ba7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 193
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 193
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 174,
+ "total": 193
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 267,
+ "total": 314
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 174,
+ "total": 193
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14359912,
+ "username": "henkkarop",
+ "fullName": "Henri Ropponen (henkkarop)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/65122d511e2911c2ab686e1bfe2fb168?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12849
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12849
+ },
+ "translated": {
+ "tmMatch": 3544,
+ "default": 9305,
+ "total": 12849
+ },
+ "targetTranslated": {
+ "tmMatch": 3143,
+ "default": 7889,
+ "total": 11032
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 326,
+ "total": 327
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3544,
+ "default": 9305,
+ "total": 12849
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14254006,
+ "username": "HESI",
+ "fullName": "Henri Sirkkavaara (HESI)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ce1d46f74be9c51deedea4f3b2fa522?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 618
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 618
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 617,
+ "total": 618
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 471,
+ "total": 472
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 617,
+ "total": 618
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12457393,
+ "username": "rchk",
+ "fullName": "Henrik Mattsson-Mårn (rchk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e2e474e6bbb88bb35698cd85fc1ab43b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 615
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 615
+ },
+ "translated": {
+ "tmMatch": 289,
+ "default": 326,
+ "total": 615
+ },
+ "targetTranslated": {
+ "tmMatch": 285,
+ "default": 287,
+ "total": 572
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 91,
+ "total": 94
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 289,
+ "default": 326,
+ "total": 615
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14777388,
+ "username": "henryprohater",
+ "fullName": "Henry_Prohater (henryprohater)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777388/medium/f9050a3878fe999bfab4ba907a8e5cde.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903009,
+ "username": "igntsh",
+ "fullName": "Heo Ignatius (igntsh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903009/medium/04ae0d1fd930da54d2c40b2d5e37e31c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 755
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 755
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 753,
+ "total": 755
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 508,
+ "total": 509
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 753,
+ "total": 755
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14356614,
+ "username": "punheo1176411",
+ "fullName": "Heo Nguyễn (punheo1176411)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14356614/medium/9c7c8c06efe1591e849d1501c6784590.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 40,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 40,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 40,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14890278,
+ "username": "Hephaistos357",
+ "fullName": "Hephaistos357",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890278/medium/7fd731668afeab1f389fbe0b256f0619.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 6,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14108121",
- "username": "YarikWise",
- "fullName": "YarikWise",
- "avatarUrl": "https://www.gravatar.com/avatar/e0af684bf13c5f581a63fe9f35f86006?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-20 04:20:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13862297",
- "username": "wiaruskos",
- "fullName": "Farystank (wiaruskos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13862297/medium/e9b8fc637a18cce3fd1bc30527fb9ee5.jpg",
- "joined": "2021-10-02 10:34:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969503",
- "username": "Serghei_Belyi",
- "fullName": "Serghei_Belyi",
- "avatarUrl": "https://www.gravatar.com/avatar/cc4db1a745bf119e326437de0b171a9a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 05:14:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14149679",
- "username": "Playzo",
- "fullName": "Patrik Pažický (Playzo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14149679/medium/0e9deec408e99d6b5676f3a72b379012.jpeg",
- "joined": "2021-05-16 16:09:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14151115",
- "username": "landlord2602",
- "fullName": "Free Row (landlord2602)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14151115/medium/38cf9a7f6041dc185580729d318cf3ab.jpg",
- "joined": "2020-03-10 04:28:37"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14345994,
+ "username": "herman90sidra",
+ "fullName": "Herman Sidra (herman90sidra)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14345994/medium/256b0667339ff6b587fefce7bf923937.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 3,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 3,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 3,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14781240,
+ "username": "herrisonfnascimento",
+ "fullName": "Herrison (herrisonfnascimento)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781240/medium/7ca1a1a0b850a8d749c5e711eba35e85.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 24,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14877588,
+ "username": "haddadhesam",
+ "fullName": "Hesam Haddad (haddadhesam)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877588/medium/fd55575b0f149dd88deb161c48e961bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 109
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 109
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 109,
+ "total": 109
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 138,
+ "total": 138
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 109,
+ "total": 109
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880056,
+ "username": "hiorst8",
+ "fullName": "Hi St8 (hiorst8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880056/medium/97a843bea0c1b053719867e5e17584aa.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 170,
+ "total": 170
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968267,
+ "username": "Dekicrypto",
+ "fullName": "Hideki Kanazawa (Dekicrypto)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/27f054c2f49a9bd452ec71b6e24364c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1237
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1237
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1236,
+ "total": 1237
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 3282,
+ "total": 3287
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1236,
+ "total": 1237
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951371,
+ "username": "Hosein396",
+ "fullName": "Hosein Tayebi (Hosein396)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f41005e4e9ddd8dd69caab4670f5abd2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 986
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 986
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 935,
+ "total": 986
+ },
+ "targetTranslated": {
+ "tmMatch": 70,
+ "default": 1123,
+ "total": 1193
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 3,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 935,
+ "total": 986
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929235,
+ "username": "Rikr16",
+ "fullName": "Hozan Al Hazin (Rikr16)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6c4f698f7d586c079a9e31fb6f883d4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 210,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 178,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 210,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14324304,
+ "username": "hsinwen.wu",
+ "fullName": "Hsin-Wen Wu (hsinwen.wu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14324304/medium/9251680c550511978eb4f5e1569185d6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969051",
- "username": "MRobledo",
- "fullName": "MaiK (MRobledo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969051/medium/4ccd26d9144c3700aeeba7a819d0b817.jpeg",
- "joined": "2021-10-19 17:54:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14154565",
- "username": "c_m_official",
- "fullName": "🤖💵💵💰💰.y.at (c_m_official)",
- "avatarUrl": "https://www.gravatar.com/avatar/f20a1fea072e61334195bf0ccbdeee57?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-16 12:58:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14158815",
- "username": "Cthuj",
- "fullName": "Cthuj",
- "avatarUrl": "https://www.gravatar.com/avatar/4d1f9384e8d29a8535fd57276b95cd36?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-24 08:59:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14121763",
- "username": "kdevg0",
- "fullName": "kdevg0",
- "avatarUrl": "https://www.gravatar.com/avatar/fa7ba894e23853bfb4314e0bb1a7d322?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-16 11:19:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971521",
- "username": "luyaoinfo",
- "fullName": "Lu Yao (luyaoinfo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971521/medium/8b2ae1ea67e8f3a64641f702accce14d.jpeg",
- "joined": "2021-10-21 14:18:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998285",
- "username": "Kingkalimal",
- "fullName": "Kingkalimal",
- "avatarUrl": "https://www.gravatar.com/avatar/120845950b658d2d356b4573c233c2ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 19:03:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14091723",
- "username": "mnstshlyltfreshdesk",
- "fullName": "منصة شليلة (mnstshlyltfreshdesk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14091723/medium/b8a131cc01cbae499c33f3883755f0e9.jpeg",
- "joined": "2020-01-27 18:00:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998323",
- "username": "rtf",
- "fullName": "Rolando Toledo Fernandez (rtf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998323/medium/830c858a42074b57d06b6face55557ee.png",
- "joined": "2021-11-10 19:54:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998647",
- "username": "itotutona",
- "fullName": "itotutona",
- "avatarUrl": "https://www.gravatar.com/avatar/b5d8ac3cfc0b83b873b4964f233e0ff3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 03:26:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998995",
- "username": "zhanglingzhi",
- "fullName": "zhanglingzhi",
- "avatarUrl": "https://www.gravatar.com/avatar/65ef2197695057a196152c3ee45b68ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 08:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13942767",
- "username": "anujgupta",
- "fullName": "anujgupta",
- "avatarUrl": "https://www.gravatar.com/avatar/3e0558ca7fc96b0bb61a87b236685ad8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-06 09:30:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14083463",
- "username": "Sparrow34",
- "fullName": "Alperen Yıldız (Sparrow34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14083463/medium/d68a69a187037085a09efdd2f951569a.png",
- "joined": "2020-02-22 01:39:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14085797",
- "username": "cleo.bikram",
- "fullName": "cleo.bikram",
- "avatarUrl": "https://www.gravatar.com/avatar/14b1608a6d925a717a1397bc4bfe9233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-22 10:36:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13928105",
- "username": "neapper.com",
- "fullName": "neapper.com",
- "avatarUrl": "https://www.gravatar.com/avatar/46a67ab73362f10c9598cb5adf447405?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-05 05:22:34"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 0,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14767666,
+ "username": "chengDu20",
+ "fullName": "Huan Rainy (chengDu20)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767666/medium/47a20ae9302d71170d1613138da1e5f1.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973471,
+ "username": "hugo_ham",
+ "fullName": "Hugo Hamaimi (hugo_ham)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973471/medium/e29e9241f0a96e4067f303459381e1d5.png",
+ "preTranslated": 0,
+ "totalCosts": 4879
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4879
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 4832,
+ "total": 4879
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 5570,
+ "total": 5622
+ },
+ "translatedByMt": {
+ "tmMatch": 33,
+ "default": 3012,
+ "total": 3045
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 4832,
+ "total": 4879
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14812942,
+ "username": "humbertoantsc",
+ "fullName": "Humberto SC (humbertoantsc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812942/medium/498f62a5f1b429232e9dfd7ab697523f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 109,
+ "total": 109
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903047,
+ "username": "hunryu",
+ "fullName": "Hun Ryu (hunryu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903047/medium/6a9d0bbe46a24533019f33bee254b265.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1706
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1706
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 1680,
+ "total": 1706
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 1478,
+ "total": 1503
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 1680,
+ "total": 1706
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14783432,
+ "username": "Husain7",
+ "fullName": "HusainKapasi (Husain7)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783432/medium/44a62ae94f5961e10f4ed656175d8ec3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14554066,
+ "username": "hoguzturk",
+ "fullName": "Huseyin Uguzturk (hoguzturk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554066/medium/c8d5fc3d77552cc8d81a1c013e851f3e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 88,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 74,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 88,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14033202,
+ "username": "Huynhanh883",
+ "fullName": "Huynhanh83 (Huynhanh883)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033202/medium/9283f613d1807b20fdbc4c7a07a54ed1.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566994,
+ "username": "papoy3",
+ "fullName": "Hydro Honey 3000 (papoy3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566994/medium/27c38d4eb236018e454793c342fbf118.jpg",
+ "preTranslated": 0,
+ "totalCosts": 71834
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71834
+ },
+ "translated": {
+ "tmMatch": 1608,
+ "default": 70226,
+ "total": 71834
+ },
+ "targetTranslated": {
+ "tmMatch": 1660,
+ "default": 69842,
+ "total": 71502
+ },
+ "translatedByMt": {
+ "tmMatch": 220,
+ "default": 48319,
+ "total": 48539
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1608,
+ "default": 70226,
+ "total": 71834
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13931633,
+ "username": "khg0712",
+ "fullName": "HyungGyu Kim (khg0712)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13931633/medium/f51a62e6400540a88293510ae3412172.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903167,
+ "username": "hskang9",
+ "fullName": "Hyungsuk Kang (hskang9)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903167/medium/db2b2e0dd9d6e8eb028cb29c3808a7a4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 472
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 472
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 462,
+ "total": 472
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 413,
+ "total": 423
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 462,
+ "total": 472
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952901,
+ "username": "hungchann",
+ "fullName": "Hùng Phạm (hungchann)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952901/medium/3b3728b72bc86770df44c9458d96f2cf.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667834,
+ "username": "zeza",
+ "fullName": "Hüseyin Öztürk (zeza)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/175567915934b09eaddae2442bef249a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14493582,
+ "username": "ibLeDy",
+ "fullName": "Iago Alonso (ibLeDy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14493582/medium/df1bec608e42094e00afb3578fe423f6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14801848,
+ "username": "jasonlou22",
+ "fullName": "Iasonas Loukaidis (jasonlou22)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801848/medium/ce8cf5bd5bd16320aadbd8438ce2c4b6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 113,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991161,
+ "username": "icarusdavinci",
+ "fullName": "Icarus Da Vinci (icarusdavinci)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991161/medium/8fdd324d960a172803c5d6f6ee179e84.png",
+ "preTranslated": 0,
+ "totalCosts": 98
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 98
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 98,
+ "total": 98
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 98,
+ "total": 98
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14597850,
+ "username": "iggyiccy",
+ "fullName": "Iggy (iggyiccy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597850/medium/1b9ccd160d1d9c3807b5de89f0333bc8.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 9,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 14,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 9,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14794760,
+ "username": "ignv",
+ "fullName": "Ignacio Viggiani (ignv)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794760/medium/2059ce788a83774e10a1ed6de1bf27ab.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1957
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1957
+ },
+ "translated": {
+ "tmMatch": 62,
+ "default": 1895,
+ "total": 1957
+ },
+ "targetTranslated": {
+ "tmMatch": 68,
+ "default": 1608,
+ "total": 1676
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 62,
+ "default": 1895,
+ "total": 1957
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891034,
+ "username": "igor.ciolac",
+ "fullName": "Igor Ciolac (igor.ciolac)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891034/medium/d0954f264a71ebadb2c802cccc7ac38f.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 148,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 148,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14745548,
+ "username": "Roman4x97",
+ "fullName": "Igor Romanenko (Roman4x97)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745548/medium/6af7ad276603bbede6bed93c98ed7d9b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953719,
+ "username": "pimenteldesouza91",
+ "fullName": "Império da Internet (pimenteldesouza91)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953719/medium/ee64ac380b4078b3815791eb03cbf7ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959859,
+ "username": "innobbv",
+ "fullName": "InYeob Kim (innobbv)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959859/medium/43a5020712c1b5722adb72244461d813.png",
+ "preTranslated": 0,
+ "totalCosts": 195
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 195
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 190,
+ "total": 195
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 150,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 190,
+ "total": 195
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968205,
+ "username": "ir_zaborska",
+ "fullName": "Iryna Zaborska (ir_zaborska)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968205/medium/3cbbcd262107220dce0ea8e13747edd6.JPG",
+ "preTranslated": 0,
+ "totalCosts": 1038
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1038
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 1020,
+ "total": 1038
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 892,
+ "total": 911
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 1020,
+ "total": 1038
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13893213,
+ "username": "RelliuG",
+ "fullName": "Isaac Silva (RelliuG)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13893213/medium/88d6b8bda7b6073efd27b5a1799694cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 434
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 434
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 431,
+ "total": 434
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 447,
+ "total": 450
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 96,
+ "total": 96
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 431,
+ "total": 434
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733356,
+ "username": "isadorasst",
+ "fullName": "Isadora Tavares (isadorasst)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6a01ad71354d5af2ca10746a52f835ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991627,
+ "username": "isemau",
+ "fullName": "Isemau Antong Tie (isemau)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991627/medium/e6eecc0d9401f25366b7e6020b466415.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733026,
+ "username": "iborba",
+ "fullName": "Israel Machado de Borba (iborba)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733026/medium/ffb6aa67fea863e4898aa8a6e5c69e87.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1775
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1775
+ },
+ "translated": {
+ "tmMatch": 166,
+ "default": 1609,
+ "total": 1775
+ },
+ "targetTranslated": {
+ "tmMatch": 115,
+ "default": 1605,
+ "total": 1720
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 635,
+ "total": 635
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 166,
+ "default": 1609,
+ "total": 1775
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14410848,
+ "username": "vanohaa",
+ "fullName": "Ivan Bodnariuk (vanohaa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/73810f162ad0c27e24731010b1fe8b4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3152
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3152
+ },
+ "translated": {
+ "tmMatch": 84,
+ "default": 3068,
+ "total": 3152
+ },
+ "targetTranslated": {
+ "tmMatch": 72,
+ "default": 2712,
+ "total": 2784
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 52,
+ "total": 55
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 84,
+ "default": 3068,
+ "total": 3152
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14593722,
+ "username": "vania1366",
+ "fullName": "Ivan Fossati (vania1366)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593722/medium/598730e9b33babb13b9d98095c3745ab.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3393
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3393
+ },
+ "translated": {
+ "tmMatch": 85,
+ "default": 3308,
+ "total": 3393
+ },
+ "targetTranslated": {
+ "tmMatch": 91,
+ "default": 3474,
+ "total": 3565
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 898,
+ "total": 899
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 85,
+ "default": 3308,
+ "total": 3393
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14656714,
+ "username": "ireverdu",
+ "fullName": "Iván Revuelta (ireverdu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656714/medium/2c80d8f4dbba229f35d95960783e80da.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14500864,
+ "username": "iyamgondraneos",
+ "fullName": "Iyam Gondraneos (iyamgondraneos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14500864/medium/5b11180320d82d67e7110613c9ef66fe.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 2,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 2,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14008029,
+ "username": "Izzur",
+ "fullName": "Izzur Zuhri (Izzur)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008029/medium/1927b0d7628d42665fa1bc7b4e63b67c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14758970,
+ "username": "JJulles",
+ "fullName": "JJulles",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758970/medium/2f15c96da08e09ca5186337bcebc19a8.png",
+ "preTranslated": 0,
+ "totalCosts": 277
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 277
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 274,
+ "total": 277
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 313,
+ "total": 316
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 274,
+ "total": 277
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681014,
+ "username": "JSHan94",
+ "fullName": "JSHan94",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681014/medium/89ff2ae90c0e12294883c85d65e97e9c.png",
+ "preTranslated": 0,
+ "totalCosts": 620
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 620
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 616,
+ "total": 620
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 376,
+ "total": 380
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 616,
+ "total": 620
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14729132,
+ "username": "jackg",
+ "fullName": "Jack Goldenberg (jackg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a972a2fefea2d1bb1a250d03de5811a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 332
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 178
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 163,
+ "total": 178
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 150,
+ "total": 168
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 163,
+ "total": 178
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973109",
- "username": "ippower",
- "fullName": "ippower123 (ippower)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973109/medium/7371003b3e181f4ff6143c4a655d88e4.png",
- "joined": "2021-10-23 03:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999641",
- "username": "djukic_50cent",
- "fullName": "Djukic Araujo (djukic_50cent)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999641/medium/69a452b92cea228f483cfdb71b18c322.jpeg",
- "joined": "2021-11-11 18:34:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13924693",
- "username": "weshope611",
- "fullName": "Wes Hope (weshope611)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13924693/medium/bdd0b5d643bb83ead9e861806d32a823.jpg",
- "joined": "2019-12-13 08:08:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14102903",
- "username": "iNaHE",
- "fullName": "iNaHE",
- "avatarUrl": "https://www.gravatar.com/avatar/63cfdd4bc80be709eec06273b9b43f37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-05 18:26:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13918813",
- "username": "hanhscylla",
- "fullName": "hanhscylla",
- "avatarUrl": "https://www.gravatar.com/avatar/52b56e8b78cf50ec4d8dd7e522e22fc8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 06:14:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972639",
- "username": "Victor40",
- "fullName": "Victor40",
- "avatarUrl": "https://www.gravatar.com/avatar/9c55347f32e1bf6e600751d2f7608ec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:54:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13910767",
- "username": "doublek84",
- "fullName": "doublek84",
- "avatarUrl": "https://www.gravatar.com/avatar/38392e5ce2987a16f10ccb8b78e094e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-07 20:13:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972587",
- "username": "NOCMAT81",
- "fullName": "NOCMAT81",
- "avatarUrl": "https://www.gravatar.com/avatar/d0cfe8a3b4ae1d063d023662864add60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:13:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13905675",
- "username": "joshstark",
- "fullName": "joshstark",
- "avatarUrl": "https://www.gravatar.com/avatar/071d079eb7b1142c236a62f7a0592f77?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-03 12:54:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14979235",
- "username": "aelinore",
- "fullName": "Sheila Semi (aelinore)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14979235/medium/997baf1e1de4e1359525c1a4749bb7ed.jpg",
- "joined": "2021-10-29 05:41:59"
- },
- "languages": [
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 154
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 153,
+ "total": 154
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 134,
+ "total": 135
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 153,
+ "total": 154
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14136921,
+ "username": "ttuan2007",
+ "fullName": "Jack Tran (ttuan2007)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136921/medium/c1f71489f59cbd61c70260fd74ce8092.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 68,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 65,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 68,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669862,
+ "username": "YeahJack",
+ "fullName": "Jack Xu (YeahJack)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669862/medium/3b9412b83dceb6cb13b61c67320649b6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14561650,
+ "username": "jaekiki",
+ "fullName": "Jaekee Lee (jaekiki)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561650/medium/ece557cd177c2d281c0b048f03d53102.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778976,
+ "username": "Jakob_Farian_Krarup",
+ "fullName": "Jakob Farian Krarup (Jakob_Farian_Krarup)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778976/medium/b0d2bc0c4bb05f9c8da4fac5af6acd5b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 48,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14125747,
+ "username": "misakajwk",
+ "fullName": "James Wang (misakajwk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125747/medium/27c8b5a8d49f829339205e8f4bf47ca0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 337
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 337
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 318,
+ "total": 337
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 521,
+ "total": 550
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 318,
+ "total": 337
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14613688,
+ "username": "jan-miksik",
+ "fullName": "Jan Mikšík (jan-miksik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14613688/medium/5d16056faf59d82c29d178f96396c28f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 349
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 349
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 342,
+ "total": 349
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 287,
+ "total": 294
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 342,
+ "total": 349
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13988859,
+ "username": "treecz",
+ "fullName": "Jan Stránský (treecz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13988859/medium/1dc2e70a169815577dbd2cc191cbcbc2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814346,
+ "username": "ThunderDeliverer",
+ "fullName": "Jan Turk (ThunderDeliverer)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814346/medium/0b89b5f1816ee9e6fd8cd60e01ac357c.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14534908,
+ "username": "LadyNoir",
+ "fullName": "Jane Doe (LadyNoir)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14534908/medium/7e9f2c175731e387900c7ec6e3d8554d.JPG",
+ "preTranslated": 0,
+ "totalCosts": 78
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 78
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 53,
+ "total": 78
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 52,
+ "total": 77
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 53,
+ "total": 78
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14618756,
+ "username": "janrene2002328",
+ "fullName": "Janrene Wln (janrene2002328)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618756/medium/4cc00cd911711f36316c5468f69231a5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 50,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 49,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 50,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14583798,
+ "username": "krakora20",
+ "fullName": "Jaroslav Krákora (krakora20)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14583798/medium/530ff4fec4b8cf4fbd456bea853b8d23.jpg",
+ "preTranslated": 0,
+ "totalCosts": 134
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 134
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 131,
+ "total": 134
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 125,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 131,
+ "total": 134
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13989107,
+ "username": "DjangoM",
+ "fullName": "Jaroslav Macej (DjangoM)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5e55c27275162876144f25ae45dac6bd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11738
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11738
+ },
+ "translated": {
+ "tmMatch": 2936,
+ "default": 8802,
+ "total": 11738
+ },
+ "targetTranslated": {
+ "tmMatch": 3001,
+ "default": 8740,
+ "total": 11741
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2936,
+ "default": 8802,
+ "total": 11738
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14819982,
+ "username": "snerz13",
+ "fullName": "Jash Desai (snerz13)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819982/medium/40d1ac7dc56d4093785d5f1b21b72508.jpg",
+ "preTranslated": 0,
+ "totalCosts": 218
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 218
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 208,
+ "total": 218
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 328,
+ "total": 351
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 208,
+ "total": 218
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673994,
+ "username": "JasmineHsu",
+ "fullName": "Jasmine Hsu (JasmineHsu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c9764a6beef68ac64ac12cee2416c972?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 389
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 389
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 334,
+ "total": 389
+ },
+ "targetTranslated": {
+ "tmMatch": 124,
+ "default": 669,
+ "total": 793
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 334,
+ "total": 389
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867990,
+ "username": "jasperhart",
+ "fullName": "Jasper 't Hart (jasperhart)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867990/medium/ff04b27d870cfd316e6f20cfd87e438a.png",
+ "preTranslated": 0,
+ "totalCosts": 472
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 472
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 465,
+ "total": 472
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 473,
+ "total": 480
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 360,
+ "total": 366
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 465,
+ "total": 472
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959209,
+ "username": "Filtertron",
+ "fullName": "Jean Zundel (Filtertron)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1cbc889d0c73021eb6848405250cace1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2186
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2186
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 2146,
+ "total": 2186
+ },
+ "targetTranslated": {
+ "tmMatch": 40,
+ "default": 2487,
+ "total": 2527
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 2146,
+ "total": 2186
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14532198,
+ "username": "jebahar",
+ "fullName": "Jebahar Deva Dhason (jebahar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14532198/medium/f5e5643fbfd6007e0aa4cdfef932873f.png",
+ "preTranslated": 0,
+ "totalCosts": 120
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 120
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 108,
+ "total": 120
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 228,
+ "total": 255
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 108,
+ "total": 120
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13994825,
+ "username": "jeffprestes",
+ "fullName": "Jeff Prestes (jeffprestes)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994825/medium/4a36bab27f88275f96ebbfa37e9fc518.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2424
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 631
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 616,
+ "total": 631
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 672,
+ "total": 688
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 383,
+ "total": 389
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 616,
+ "total": 631
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14047665",
- "username": "AlexSSD7",
- "fullName": "Alex S. (AlexSSD7)",
- "avatarUrl": "https://www.gravatar.com/avatar/ab81732b711d154bb1b3d4e030bbff46?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 09:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001901",
- "username": "sunilps",
- "fullName": "sunilps",
- "avatarUrl": "https://www.gravatar.com/avatar/5a715ab33c40fa726c05fc5de92eff90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 09:58:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029391",
- "username": "HHJ111000",
- "fullName": "HHJ111000",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14029391/medium/fd7f9e4a7d07b7ef31ec0cc9815762a4.jpg",
- "joined": "2019-11-02 06:32:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027967",
- "username": "antodp",
- "fullName": "Antonio Della Porta (antodp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027967/medium/0fc81f2e0803280df6ace41634bb9ef6.png",
- "joined": "2019-10-30 13:56:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13993399",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/cf73fba9beac9273a32e3bc399924d1f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 17:58:31"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1793
+ },
+ "translated": {
+ "tmMatch": 80,
+ "default": 1713,
+ "total": 1793
+ },
+ "targetTranslated": {
+ "tmMatch": 87,
+ "default": 1824,
+ "total": 1911
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 602,
+ "total": 607
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 80,
+ "default": 1713,
+ "total": 1793
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14894112,
+ "username": "Spuknit",
+ "fullName": "Jenner Falconi (Spuknit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894112/medium/c70d81f75092cc062472ff2457d73c09.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 244,
+ "total": 244
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14550294,
+ "username": "jleyendeckeratx",
+ "fullName": "Jerry Louis Leyendecker, Living Soul (jleyendeckeratx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14550294/medium/ff2ad6121dcde0784a27d73ddac4077b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3828
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1870
+ },
+ "translated": {
+ "tmMatch": 68,
+ "default": 1802,
+ "total": 1870
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 1656,
+ "total": 1712
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 68,
+ "default": 1802,
+ "total": 1870
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14988443",
- "username": "sitimast10",
- "fullName": "Siti Mastini (sitimast10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988443/medium/302215485a06592275a58548358c61e2.png",
- "joined": "2021-11-03 05:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028287",
- "username": "owans",
- "fullName": "Owanate Amachree (owans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14028287/medium/2d45e3aa4f429c29c36c8cd56cb1bfb8.jpeg",
- "joined": "2019-10-31 05:53:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028641",
- "username": "samfetch",
- "fullName": "samfetch",
- "avatarUrl": "https://www.gravatar.com/avatar/4970d12ea197406d5f6d7cd3464f81ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-31 15:19:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987867",
- "username": "thinklogically",
- "fullName": "thinklogically",
- "avatarUrl": "https://www.gravatar.com/avatar/5a12a8a2536a53c93d785306cae5e4c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 19:12:01"
- },
- "languages": [
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1563
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 1515,
+ "total": 1563
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 1459,
+ "total": 1507
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 1515,
+ "total": 1563
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 395
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 386,
+ "total": 395
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 359,
+ "total": 368
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 386,
+ "total": 395
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690200,
+ "username": "jesam10",
+ "fullName": "Jesus Alejandro Moreno (jesam10)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690200/medium/53da32f5d75e90125534fe2710884032.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 118
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 118
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 114,
+ "total": 118
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 110,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 70,
+ "total": 72
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 114,
+ "total": 118
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14757010,
+ "username": "jesusrobot9000",
+ "fullName": "Jesus Velasco (jesusrobot9000)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757010/medium/58e209756be429d085fe644e8fff8d26.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14691980,
+ "username": "obandojp91",
+ "fullName": "Jhecson Obando (obandojp91)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691980/medium/de61e68c8a344a69de721320f16a1346.jpg",
+ "preTranslated": 0,
+ "totalCosts": 224
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 224
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 220,
+ "total": 224
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 207,
+ "total": 211
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 176,
+ "total": 176
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 220,
+ "total": 224
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14777028,
+ "username": "jieunrim",
+ "fullName": "Jieun Rim (jieunrim)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777028/medium/1fe90e42c9af650a9cf108d584403209.png",
+ "preTranslated": 0,
+ "totalCosts": 118
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 118
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 111,
+ "total": 118
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 75,
+ "total": 82
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 111,
+ "total": 118
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14349526,
+ "username": "Jaylukmann",
+ "fullName": "Jimoh Lukman Adeyemi (Jaylukmann)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14349526/medium/1f1e32261af97a37ab61584658c290d4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 62,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 41,
+ "total": 75
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 62,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14822732,
+ "username": "kingway",
+ "fullName": "Jingwei Zou (kingway)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822732/medium/5fbcf45bc14f5cbe8d207e8adee7bfc1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14783598,
+ "username": "lemony.jerome",
+ "fullName": "Jj (lemony.jerome)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783598/medium/3222a279390e4b25e1a6a456c008139b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 5,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 6,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 5,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14702332,
+ "username": "joaquindeleonamerio",
+ "fullName": "Joaquín Deleon Amerio (joaquindeleonamerio)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702332/medium/f5e389288946c3f0bd1b305fdb383daf.jpg",
+ "preTranslated": 0,
+ "totalCosts": 214
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 214
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 206,
+ "total": 214
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 193,
+ "total": 201
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 206,
+ "total": 214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14595552,
+ "username": "jgcarrere",
+ "fullName": "Joaquín González Carrere (jgcarrere)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595552/medium/2de405691db61f7cd4519fc49fe31860.jpg",
+ "preTranslated": 0,
+ "totalCosts": 55
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 55
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830540,
+ "username": "Keonez",
+ "fullName": "Joe Tribbiani (Keonez)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830540/medium/0c57d4c791795b7bcdc9f6775936ef7a.gif",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 46,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035751,
+ "username": "jpratv23",
+ "fullName": "Joel Prat (jpratv23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035751/medium/cf3dd58253bd2aa62bdadab67b1c41ea.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1106
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1105,
+ "total": 1106
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 1072,
+ "total": 1074
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1105,
+ "total": 1106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14674494,
+ "username": "joelsantinho",
+ "fullName": "Joel Santinho (joelsantinho)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674494/medium/c2a55d97a58dbd80619b6d99c23e5866.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 130
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 130
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 128,
+ "total": 130
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 128,
+ "total": 130
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 128,
+ "total": 130
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14540192,
+ "username": "jkbishbish",
+ "fullName": "John Bishop (jkbishbish)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14540192/medium/d7ec76648f3d50e6c8396b4430550f0e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14613430,
+ "username": "peskymoskq",
+ "fullName": "John Call (peskymoskq)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14613430/medium/08d761ba5fee0a0eb372042435f17e58.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780362,
+ "username": "88wcJoWl",
+ "fullName": "Jona (88wcJoWl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4964dc649d64bbb95e174e1949a779a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 285
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 285
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 285,
+ "total": 285
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 238,
+ "total": 238
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 285,
+ "total": 285
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14656338,
+ "username": "transgresor_metal",
+ "fullName": "Jonatan Luis Villa Röel (transgresor_metal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656338/medium/994846d1f939b5a9efdafa335adcc091.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 89,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 93,
+ "total": 98
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 89,
+ "total": 89
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 89,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14210528,
+ "username": "DCBR",
+ "fullName": "Jonathan Magalhães (DCBR)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14210528/medium/c7c6edf96670918fe49f544239a2b1ce.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 535
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 535
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 464,
+ "total": 535
+ },
+ "targetTranslated": {
+ "tmMatch": 76,
+ "default": 510,
+ "total": 586
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 464,
+ "total": 535
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14647722,
+ "username": "Dr747",
+ "fullName": "Jonathan Steiner (Dr747)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647722/medium/ecc33964ace94b3d24bda90f46eb8e7d.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 37,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 31,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 37,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14998839,
+ "username": "jony.stn",
+ "fullName": "Jony S (jony.stn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998839/medium/db1c6ba3b1fe58d45e94b7d36ba46677.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14291898,
+ "username": "yc_93",
+ "fullName": "Jordi Chu (yc_93)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14291898/medium/0421ae76ef5b3e3f839b0c93a745f6c8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 48,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 48,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14559630,
+ "username": "jorge.arveg",
+ "fullName": "Jorge A.R.V (jorge.arveg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559630/medium/fe2910f8bbc5bd2e5c7a41ca4303943b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 966
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 966
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 912,
+ "total": 966
+ },
+ "targetTranslated": {
+ "tmMatch": 60,
+ "default": 971,
+ "total": 1031
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 309,
+ "total": 309
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 912,
+ "total": 966
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14645188,
+ "username": "Mportugal",
+ "fullName": "Jorge Miguel Valtelhas Martins Pinto (Mportugal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3fb92ae584f181bfd6bf851f4ea99c62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 191
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 191
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 194,
+ "total": 194
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13978687,
+ "username": "bellinas90",
+ "fullName": "Jose Bell (bellinas90)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978687/medium/97645182393553543eff0f6d2d313d8c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 51
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 47,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 51,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 47,
+ "total": 51
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029495,
+ "username": "caceres.jose.fr",
+ "fullName": "Jose Caceres (caceres.jose.fr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029495/medium/6cfbaec8bb35e6835abad73d00c81517.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 989
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 989
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 947,
+ "total": 989
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 1047,
+ "total": 1094
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 947,
+ "total": 989
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992821,
+ "username": "josemigc2411",
+ "fullName": "Jose Miguel Garcia Cervan (josemigc2411)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992821/medium/2b2f9d5465cbcbe34f8fb3d00847efdc.png",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 49,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 53,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 49,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14879636,
+ "username": "joseferde",
+ "fullName": "Josef Erde (joseferde)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879636/medium/ddd7c42a87b94cfaf57783881127f849.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14767094,
+ "username": "joshuaoliverdouglas",
+ "fullName": "Joshua Douglas (joshuaoliverdouglas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767094/medium/3114c0487b19c05afa8dc283c94c3a76.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687676,
+ "username": "joseachemazzei",
+ "fullName": "José A. Mazzei (joseachemazzei)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3362
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 3347,
+ "total": 3362
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 3784,
+ "total": 3808
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 3347,
+ "total": 3362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14941689,
+ "username": "JossVog",
+ "fullName": "José Bernal (JossVog)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14941689/medium/bda6c6857a8faad62b2e05e88afec386.png",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 26,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 26,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 26,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14320782,
+ "username": "JoseDeFreitas",
+ "fullName": "José De Freitas (JoseDeFreitas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320782/medium/988805bcea26898a44f89f036124c176.png",
+ "preTranslated": 0,
+ "totalCosts": 11329
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11329
+ },
+ "translated": {
+ "tmMatch": 138,
+ "default": 11191,
+ "total": 11329
+ },
+ "targetTranslated": {
+ "tmMatch": 150,
+ "default": 12509,
+ "total": 12659
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 138,
+ "default": 11191,
+ "total": 11329
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15027079,
+ "username": "wmduuh",
+ "fullName": "José Eduardo (wmduuh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027079/medium/827d9b374220d233a59c4a1f2ffb1452.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1009
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1009
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 965,
+ "total": 1009
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 1042,
+ "total": 1085
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 965,
+ "total": 1009
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13986393,
+ "username": "ivanch",
+ "fullName": "José Henrique Ivanchechen (ivanch)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986393/medium/f7d4c9676c7577fc56ce937af1b6dd37.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 401
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 401
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 374,
+ "total": 401
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 392,
+ "total": 420
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 374,
+ "total": 401
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738520,
+ "username": "joselopino",
+ "fullName": "José Pino (joselopino)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738520/medium/7de7ed844d491081436c60370bfce573.png",
+ "preTranslated": 0,
+ "totalCosts": 130
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 130
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 118,
+ "total": 130
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 107,
+ "total": 122
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 118,
+ "total": 130
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667482,
+ "username": "vimarket.it",
+ "fullName": "Jovan Stankovic (vimarket.it)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667482/medium/b380badf662165920a1873b5f0dfd913.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957505,
+ "username": "joaopedroesteves",
+ "fullName": "João Esteves de Carvalho (joaopedroesteves)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957505/medium/759c1369327c89f68c02c2e9e0c1f2a8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 456
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 456
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 456,
+ "total": 456
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 500,
+ "total": 500
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 456,
+ "total": 456
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14713664,
+ "username": "joaopaulomoraes",
+ "fullName": "João Paulo Moraes (joaopaulomoraes)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4405735f6f3129e0286d9d43e7b460d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 654
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 654
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 634,
+ "total": 654
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 702,
+ "total": 724
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 634,
+ "total": 654
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566952,
+ "username": "darienmhc",
+ "fullName": "Juan Darien Macías Hernández (darienmhc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566952/medium/1a8b3d25d4b5fb8654789c42dcd0d62c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 31,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 39,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 31,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14597740,
+ "username": "Berkov",
+ "fullName": "Judas Berkov (Berkov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597740/medium/0a073b278154bc96d0802ad1fee59b4f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14920111,
+ "username": "JueK3y",
+ "fullName": "JueK3y | Personal Account (JueK3y)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920111/medium/2a49cdd81e2cab1e2190009caa3de573.png",
+ "preTranslated": 0,
+ "totalCosts": 6731
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6731
+ },
+ "translated": {
+ "tmMatch": 360,
+ "default": 6371,
+ "total": 6731
+ },
+ "targetTranslated": {
+ "tmMatch": 373,
+ "default": 6161,
+ "total": 6534
+ },
+ "translatedByMt": {
+ "tmMatch": 26,
+ "default": 56,
+ "total": 82
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 360,
+ "default": 6371,
+ "total": 6731
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660598,
+ "username": "DupK",
+ "fullName": "Jules Dupont (DupK)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660598/medium/a40b20fba99a1de1b947c30caf013c88.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13473469,
+ "username": "jules.seigneur77",
+ "fullName": "Jules Seigneur (jules.seigneur77)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13473469/medium/4118d6e220ce9b45529503a39159dc48.jpg",
+ "preTranslated": 0,
+ "totalCosts": 993
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 993
+ },
+ "translated": {
+ "tmMatch": 108,
+ "default": 885,
+ "total": 993
+ },
+ "targetTranslated": {
+ "tmMatch": 126,
+ "default": 786,
+ "total": 912
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 108,
+ "default": 885,
+ "total": 993
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956849,
+ "username": "steinbockj.ulian",
+ "fullName": "Julian Steinbock (steinbockj.ulian)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956849/medium/57fef07c08276b5cfdadb8590e85a91a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1058
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1058
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 987,
+ "total": 1058
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 1017,
+ "total": 1086
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 574,
+ "total": 578
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 987,
+ "total": 1058
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14670272,
+ "username": "JulienMuggli",
+ "fullName": "Julien Muggli (JulienMuggli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a59c8646c23ffc82c3e26019e602f2c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 50,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028479,
+ "username": "jtauil",
+ "fullName": "Julieta Tauil (jtauil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028479/medium/ed3bfe8c5f223b62ec35989faa018bef.png",
+ "preTranslated": 0,
+ "totalCosts": 435
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 435
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 431,
+ "total": 435
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 466,
+ "total": 470
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 431,
+ "total": 435
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725224,
+ "username": "julioabrahao",
+ "fullName": "Julio Abrahão (julioabrahao)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725224/medium/71c544a5f76fec25c5a1f156b4e74474.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 284
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 284
+ },
+ "translated": {
+ "tmMatch": 50,
+ "default": 234,
+ "total": 284
+ },
+ "targetTranslated": {
+ "tmMatch": 55,
+ "default": 239,
+ "total": 294
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 50,
+ "default": 234,
+ "total": 284
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13981955,
+ "username": "orzalaga",
+ "fullName": "Julio César Velásquez Mejía (orzalaga)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13981955/medium/dfd17ae7d8a17413f45733fb2c672a35.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 519
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 519
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 513,
+ "total": 519
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 601,
+ "total": 609
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 200,
+ "total": 200
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 513,
+ "total": 519
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14834276,
+ "username": "ElTitoDG",
+ "fullName": "Julián Hinojosa Gil (ElTitoDG)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png",
+ "preTranslated": 0,
+ "totalCosts": 3497
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3497
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 3448,
+ "total": 3497
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 3398,
+ "total": 3455
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 3448,
+ "total": 3497
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575216,
+ "username": "JulsKawa",
+ "fullName": "JulsKawa",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575216/medium/445f76865b9c16e571577e5eb7ee6dc8.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 16,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14380594,
+ "username": "jyoo",
+ "fullName": "Jung Sup (James) Yoo (jyoo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14380594/medium/ea54b35795b0eabf865962d3a3931b37.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 291
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 291
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 277,
+ "total": 291
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 211,
+ "total": 224
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 277,
+ "total": 291
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 6154,
+ "username": "translator",
+ "fullName": "Jungho Jo (translator)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/a7b2e150fb58a04645cd6da6db0508dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2278,
+ "default": 4742,
+ "total": 7020
+ },
+ "targetTranslated": {
+ "tmMatch": 2228,
+ "default": 4449,
+ "total": 6677
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 630
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14571296,
+ "username": "JurJr",
+ "fullName": "Jurandi Novais Júnior (JurJr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/761c088f9674200e9b8066e16c79ca5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1641
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1641
+ },
+ "translated": {
+ "tmMatch": 82,
+ "default": 1559,
+ "total": 1641
+ },
+ "targetTranslated": {
+ "tmMatch": 90,
+ "default": 1637,
+ "total": 1727
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 82,
+ "default": 1559,
+ "total": 1641
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14684534,
+ "username": "juniorhdblr",
+ "fullName": "Jus1x (juniorhdblr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684534/medium/72b0043d6843b4f62a43797bb7b75848.jpg",
+ "preTranslated": 0,
+ "totalCosts": 502
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 502
+ },
+ "translated": {
+ "tmMatch": 37,
+ "default": 465,
+ "total": 502
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 420,
+ "total": 452
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 99,
+ "total": 99
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 37,
+ "default": 465,
+ "total": 502
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028971,
+ "username": "2-zoo1",
+ "fullName": "Juwon Lee (2-zoo1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028971/medium/6faadcb6b16f1435e1fc51ae5413192d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 106
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14258116,
+ "username": "Jacerros",
+ "fullName": "Jáchym Plánička (Jacerros)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14258116/medium/28a813be37c3a5cf2518e9c406952c57.jpg",
+ "preTranslated": 0,
+ "totalCosts": 96
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 96
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 93,
+ "total": 96
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 93,
+ "total": 96
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035061,
+ "username": "khalilelmejhed",
+ "fullName": "KAOS NEDRO (khalilelmejhed)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035061/medium/d03bdfcc3a9aece4fd738a9eca07f39c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 14,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 25,
+ "total": 103
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 14,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13857721,
+ "username": "durgutkoray",
+ "fullName": "KORAY DURGUT (durgutkoray)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13857721/medium/4d6521ed37dba353c0cd46985e370a50.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14571640,
+ "username": "coldplay126",
+ "fullName": "KS L (coldplay126)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571640/medium/8b5a324ad49602b1c0da1b75ee45af6a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 285,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 219,
+ "total": 234
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 285,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996861,
+ "username": "kaanmetu",
+ "fullName": "Kaan Ataman (kaanmetu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/a93e7675448b5ea3eaa4485b70cea4ec.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 551
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 551
+ },
+ "translated": {
+ "tmMatch": 87,
+ "default": 464,
+ "total": 551
+ },
+ "targetTranslated": {
+ "tmMatch": 81,
+ "default": 418,
+ "total": 499
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 14,
+ "total": 32
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 87,
+ "default": 464,
+ "total": 551
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896216,
+ "username": "kabilan",
+ "fullName": "Kabilan (kabilan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896216/medium/624d3b93f0d213ed07b9beef492d09c3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 226,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14824866,
+ "username": "Worr",
+ "fullName": "Kadir Ozmen (Worr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824866/medium/d9facd000e85e1be46f8d8f667b6f4d7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 679
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 679
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 676,
+ "total": 679
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 490,
+ "total": 494
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 676,
+ "total": 679
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14034542,
+ "username": "kukkaimangpor",
+ "fullName": "Kai Suriyont (kukkaimangpor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034542/medium/42c138f8b0633dc37c653cc9d6157f3b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959135,
+ "username": "Jokyash",
+ "fullName": "Kaji (Jokyash)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959135/medium/94f75079747815393802e1f7d584eafb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3761
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3761
+ },
+ "translated": {
+ "tmMatch": 134,
+ "default": 3627,
+ "total": 3761
+ },
+ "targetTranslated": {
+ "tmMatch": 352,
+ "default": 8181,
+ "total": 8533
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 134,
+ "default": 3627,
+ "total": 3761
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14963025,
+ "username": "kalufinnle",
+ "fullName": "Kalu Everyone (kalufinnle)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963025/medium/9b0c1f4a59de841b0997447cc1e998f2.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14069573,
+ "username": "Buntymittal",
+ "fullName": "Kamal Kumar Mittal (Buntymittal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14069573/medium/802afa60459eaeff40981741eab6272c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632696,
+ "username": "bavlnkak",
+ "fullName": "Kamil B (bavlnkak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632696/medium/0dc028817f3b2b64c39042c452f06fea.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14072349,
+ "username": "kmmmeissa",
+ "fullName": "Karam Eissa (kmmmeissa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14072349/medium/f204930b2c06b2fd5e15f1728cd4cb5c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034979,
+ "username": "karelusdripus",
+ "fullName": "Karel Szwoytz (karelusdripus)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034979/medium/f261972ef98bc1298ed741a0ccabe2f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 254
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 254
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 206,
+ "total": 254
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 186,
+ "total": 234
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 23,
+ "total": 25
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 206,
+ "total": 254
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13618985,
+ "username": "itsthesola10",
+ "fullName": "Karim Vergnes (itsthesola10)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13618985/medium/7dc1a64f667dd13f60de7487b886d8d3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 579
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 579
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 573,
+ "total": 579
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 653,
+ "total": 665
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 98,
+ "total": 99
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 573,
+ "total": 579
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14961909,
+ "username": "karibsantos",
+ "fullName": "Karina Santos (karibsantos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14961909/medium/876e6e163b4dfb807994c70b0ef396c2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14752122,
+ "username": "karna.prayoga13",
+ "fullName": "Karna Prayoga (karna.prayoga13)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752122/medium/53cc72d28bf7b8287340892b9aa2c315.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 4,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 4,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 4,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14373706,
+ "username": "kbeker",
+ "fullName": "Karol Beker (kbeker)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14373706/medium/c89f32888e25c6408fa3bd56a7911670.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952323,
+ "username": "Yakimchukt",
+ "fullName": "Kate Yakymchuk (Yakimchukt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952323/medium/c59a0a6e58dd69b71e545016ee487d22.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1815
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1815
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1802,
+ "total": 1815
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 1543,
+ "total": 1557
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1802,
+ "total": 1815
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14294122,
+ "username": "kaungkinnhninpwint",
+ "fullName": "Kaungkinn Hninpwint (kaungkinnhninpwint)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14294122/medium/cf09dbb81e1cfad68d23f82b8a746730.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14927445,
+ "username": "kazutaka3226",
+ "fullName": "Kaz Tak (kazutaka3226)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927445/medium/0a9fc623888037236c754e61afcb1ea7.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14971225,
+ "username": "kazumidavies813",
+ "fullName": "Kazumi Davies (kazumidavies813)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971225/medium/c21a537592e11f6972745ff4d6182d12.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 3,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 10,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 3,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880458,
+ "username": "sekisanchi",
+ "fullName": "Kazunori Seki (sekisanchi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7434df198795c08088636407dc7f96c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60458
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60458
+ },
+ "translated": {
+ "tmMatch": 2799,
+ "default": 57659,
+ "total": 60458
+ },
+ "targetTranslated": {
+ "tmMatch": 6841,
+ "default": 138307,
+ "total": 145148
+ },
+ "translatedByMt": {
+ "tmMatch": 140,
+ "default": 14463,
+ "total": 14603
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2799,
+ "default": 57659,
+ "total": 60458
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14592434,
+ "username": "KemalK",
+ "fullName": "Kemal KELES (KemalK)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14592434/medium/72a3946d458fe6eb69dab1cf1561e934.png",
+ "preTranslated": 0,
+ "totalCosts": 786
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 786
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 774,
+ "total": 786
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 906,
+ "total": 922
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 774,
+ "total": 786
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13366748,
+ "username": "kendallcastillo4",
+ "fullName": "Ken Castillo #Saiyan (#saiyan) (kendallcastillo4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13366748/medium/2661a6fda541b739a3f306da2e23ace1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 46,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 48,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 46,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14117485,
+ "username": "kberey",
+ "fullName": "Ken Crypto Philippines (kberey)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14117485/medium/682f03c5de47113a2d79b0dbdebd3eee.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623800,
+ "username": "ktachiya",
+ "fullName": "Ken Tachiya (ktachiya)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623800/medium/905b0878ef4d470f2ea237044f070df7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1649
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1649
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 1618,
+ "total": 1649
+ },
+ "targetTranslated": {
+ "tmMatch": 153,
+ "default": 4036,
+ "total": 4189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 1618,
+ "total": 1649
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846010,
+ "username": "mfreeman59",
+ "fullName": "Kengo,MATSUDA (mfreeman59)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846010/medium/efddb08fc8f1affe72a25cf693c1f947.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1676
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1676
+ },
+ "translated": {
+ "tmMatch": 67,
+ "default": 1609,
+ "total": 1676
+ },
+ "targetTranslated": {
+ "tmMatch": 156,
+ "default": 4256,
+ "total": 4412
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 445,
+ "total": 456
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 67,
+ "default": 1609,
+ "total": 1676
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959239,
+ "username": "kevinalexander",
+ "fullName": "Kevin Alexander (kevinalexander)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959239/medium/b99ff2880943456ec68996360243e73e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1109
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1109
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 1064,
+ "total": 1109
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 1276,
+ "total": 1345
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 1064,
+ "total": 1109
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14646492,
+ "username": "Kajachuan",
+ "fullName": "Kevin Cajachuán (Kajachuan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646492/medium/7a8ecd5d8dfaacf424ad44f5f47aa24e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 154
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 154
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 154,
+ "total": 154
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 179,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 154,
+ "total": 154
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14977945,
+ "username": "TagPlex",
+ "fullName": "Kevin Palma (TagPlex)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977945/medium/725a8d38c46f2ac4ebbce870cce83922.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14774422,
+ "username": "Blu620",
+ "fullName": "Kevin Vélez Vera (Blu620)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774422/medium/49ca5ab77b6f06bf3bd213d6db9e426f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14988257,
+ "username": "khafidprayoga",
+ "fullName": "Khafid Prayoga (khafidprayoga)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988257/medium/90f049a63e6c2b1d6775756247dbdc5a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751972,
+ "username": "khalil-sami",
+ "fullName": "Khalil Mouih (khalil-sami)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751972/medium/0c35d736b7d32898fe47b6ebd66e9f1e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 20,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 23,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 20,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14910319,
+ "username": "KHANAS",
+ "fullName": "Khanas Roksolana (KHANAS)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d45cb6b71d538c2c6137e22eeeb523f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 971
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 971
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 928,
+ "total": 971
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 710,
+ "total": 757
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 143,
+ "total": 149
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 928,
+ "total": 971
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730690,
+ "username": "Khasanboy91",
+ "fullName": "Khasanboy Abdullaev H7 (Khasanboy91)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730690/medium/272dc1528c197c387c450230a21bc893.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968331,
+ "username": "Ripa_Khrystyna01",
+ "fullName": "Khrystyna Ripa (Ripa_Khrystyna01)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968331/medium/e3b844b6bc7859c29a20d4b21bcd251c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1837
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1837
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 1794,
+ "total": 1837
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 1542,
+ "total": 1577
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 1794,
+ "total": 1837
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775492,
+ "username": "riesterkilian",
+ "fullName": "Kilian Riester (riesterkilian)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775492/medium/502eb2a57d2062455fd7d5e170d9e14e.png",
+ "preTranslated": 0,
+ "totalCosts": 114
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 114
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 111,
+ "total": 114
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 115,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 111,
+ "total": 114
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14180001,
+ "username": "hikmetnadas4",
+ "fullName": "Kimsesiz Adam (hikmetnadas4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14180001/medium/94b4dac52038a25167cbc5bc62992af5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830248,
+ "username": "KingGame001",
+ "fullName": "King Game (KingGame001)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830248/medium/0c6cb9850478dd68dd3552998b05eea4.png",
+ "preTranslated": 0,
+ "totalCosts": 128
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 128
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14946723,
+ "username": "skirankumar882",
+ "fullName": "Kiran Kumar (skirankumar882)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946723/medium/f5acc0bfebb2dc6fd4c3e487dbeeb25a.png",
+ "preTranslated": 0,
+ "totalCosts": 541
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 541
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 537,
+ "total": 541
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 794,
+ "total": 801
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 537,
+ "total": 541
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14086465,
+ "username": "iCalcreator",
+ "fullName": "Kjell-Inge Gustafsson (iCalcreator)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14086465/medium/0de37044e44ab1615c40877703668c3b.png",
+ "preTranslated": 0,
+ "totalCosts": 214
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 214
+ },
+ "translated": {
+ "tmMatch": 93,
+ "default": 121,
+ "total": 214
+ },
+ "targetTranslated": {
+ "tmMatch": 97,
+ "default": 122,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 93,
+ "default": 121,
+ "total": 214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14600024,
+ "username": "Klayer89",
+ "fullName": "Klay Er (Klayer89)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600024/medium/8ae92291801f1578f0cd335bc68d68f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 30,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 34,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 30,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13512385,
+ "username": "sleepy-maker",
+ "fullName": "Koji Kanao (sleepy-maker)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13512385/medium/2063c31bc02bc3ecab628d6369b74048.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660944,
+ "username": "ko.no.do1023",
+ "fullName": "Koko Sweet (ko.no.do1023)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660944/medium/83d2a56c3ff5320eedd26348707000f9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987717",
- "username": "honeycv1993",
- "fullName": "Honey1993 CV (honeycv1993)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987717/medium/44926f698e072cbf75df2a5ae5909b63.png",
- "joined": "2021-11-02 16:05:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027547",
- "username": "david1011",
- "fullName": "david1011",
- "avatarUrl": "https://www.gravatar.com/avatar/92ca7739cea05e9de8bc0df87c49eab1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-29 19:09:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029406",
- "username": "Wasana25",
- "fullName": "Wasana25",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14029406/medium/730576770be72edc87135b6656f43c8f.jpg",
- "joined": "2019-11-02 07:06:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029802",
- "username": "Mudhofar",
- "fullName": "Mudhofar",
- "avatarUrl": "https://www.gravatar.com/avatar/054e46489a158050a37bf88094d781e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-03 01:45:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030607",
- "username": "Andhew1987",
- "fullName": "Andhew1987",
- "avatarUrl": "https://www.gravatar.com/avatar/5c6a8c00ceab5a98223f4b9c145793dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 11:39:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987287",
- "username": "iolloyd",
- "fullName": "Lloyd Moore (iolloyd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987287/medium/7be0d84675d40d1bc3497051569f717a.png",
- "joined": "2021-11-02 10:49:41"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14741046,
+ "username": "korelaydogdu.ist",
+ "fullName": "Korel Aydoğdu (korelaydogdu.ist)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741046/medium/72deb5cb8583d0d6ef9d91c10ba1af34.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 102,
+ "total": 102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779158,
+ "username": "K0ue1",
+ "fullName": "Kouei (K0ue1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png",
+ "preTranslated": 0,
+ "totalCosts": 142719
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992831",
- "username": "businescrew",
- "fullName": "busines crew (businescrew)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992831/medium/3026df334957bb8bd936c309840b0171.png",
- "joined": "2021-11-06 15:29:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987149",
- "username": "banuri.iqbal",
- "fullName": "banuri iqbal (banuri.iqbal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987149/medium/fa69bc8352ffca5145216f5ea0f963ca.png",
- "joined": "2021-11-02 09:25:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988515",
- "username": "martyna91",
- "fullName": "martyna91",
- "avatarUrl": "https://www.gravatar.com/avatar/c4682eadd702f68030402011a6676bc6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 13:01:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027837",
- "username": "marianowadijacobo",
- "fullName": "marianowadijacobo",
- "avatarUrl": "https://www.gravatar.com/avatar/03fc7d6f1d1d535f1cebef496c596275?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-03 14:21:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14989327",
- "username": "ln.raulsuarez",
- "fullName": "Raul Suarez Pamplona (ln.raulsuarez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989327/medium/ecb0931c6718ff10abbb026b2b4045f4.jpeg",
- "joined": "2021-11-03 20:02:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14986349",
- "username": "misiura42",
- "fullName": "Anna Otto (misiura42)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14986349/medium/87150872d02bfae162ed269e7183002e.jpeg",
- "joined": "2021-11-01 23:41:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990631",
- "username": "Joaohfer",
- "fullName": "Joaohfer",
- "avatarUrl": "https://www.gravatar.com/avatar/43760f2af686eca5b862d7ac8dcf528c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-04 20:35:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14004721",
- "username": "asciipron",
- "fullName": "asciipron",
- "avatarUrl": "https://www.gravatar.com/avatar/b061a6f95610ff7309d8abb5b3f6088c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-06 09:45:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991395",
- "username": "BerryF",
- "fullName": "Aco_pm_Fiona Berry (BerryF)",
- "avatarUrl": "https://www.gravatar.com/avatar/07e8e8bcd8abfc82015cc4670654ebc9?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 11:25:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992201",
- "username": "bungarebecca94",
- "fullName": "Bunga Rebecca (bungarebecca94)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992201/medium/74a944e6c4bd08f92419f21efc1a42de.png",
- "joined": "2021-11-06 04:16:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14009257",
- "username": "shahrooz1",
- "fullName": "shahrooz1",
- "avatarUrl": "https://www.gravatar.com/avatar/ddea0048ea2aa764d2a7cd0ab215e98e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 07:28:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14015083",
- "username": "deividynegri",
- "fullName": "deividynegri",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14015083/medium/88f845483be35d468223ea911367b8d1.png",
- "joined": "2019-10-15 20:24:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992265",
- "username": "AhmadAbdulrahman",
- "fullName": "AhmadAbdulrahman",
- "avatarUrl": "https://www.gravatar.com/avatar/3df6c38732b935d824098156026dce1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 05:29:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14016583",
- "username": "adamlaska.ivanov",
- "fullName": "adam ivanov (adamlaska.ivanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14016583/medium/4b266dea24a22397952d46e3d267a75e.jpeg",
- "joined": "2021-04-03 21:51:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14025849",
- "username": "Lanson2232",
- "fullName": "Bünyamin Öztürk (Lanson2232)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14025849/medium/c00e03d2e64733c40233320d87112c33.png",
- "joined": "2021-04-25 22:34:46"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142691
+ },
+ "translated": {
+ "tmMatch": 4024,
+ "default": 138667,
+ "total": 142691
+ },
+ "targetTranslated": {
+ "tmMatch": 7059,
+ "default": 192370,
+ "total": 199429
+ },
+ "translatedByMt": {
+ "tmMatch": 170,
+ "default": 95,
+ "total": 265
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4024,
+ "default": 138667,
+ "total": 142691
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14331932,
+ "username": "mikolllll",
+ "fullName": "KoxuXD (mikolllll)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14331932/medium/e36fec0c7340635e3546884bb044489f.png",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 49,
+ "total": 58
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 48,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 49,
+ "total": 58
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14436666,
+ "username": "Kozimbek",
+ "fullName": "Kozim Kamalov (Kozimbek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14436666/medium/adfa4eb257a0fa89de213f4d71e579f9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14187961,
+ "username": "phonep121a",
+ "fullName": "Kreangkai Sujabok (phonep121a)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14187961/medium/a58e0f69e94caa0e2496f99c28de0e3f.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989289,
+ "username": "KriptoBunny",
+ "fullName": "KriptoBunny",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989289/medium/ab471be1fda9094f666fd76082600690.jpg",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14932861,
+ "username": "kristinebui299",
+ "fullName": "Kristine B (kristinebui299)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7ac4eab3f69b49953eaa21b3e968a496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 47,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 63,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 47,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14339812,
+ "username": "KuBeL",
+ "fullName": "KuBeL",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14339812/medium/13dfffbb30ab4ec8af8635635d9be3b9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 302
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 302
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 301,
+ "total": 302
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 370,
+ "total": 371
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 88,
+ "total": 88
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 301,
+ "total": 302
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003713,
+ "username": "kundansahu.official",
+ "fullName": "Kundan (kundansahu.official)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003713/medium/f69051583d5702ac8c51249dbe620409.png",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 76,
+ "default": 66,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 124,
+ "default": 113,
+ "total": 237
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 76,
+ "default": 66,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14139071,
+ "username": "LQS_KO_linguist",
+ "fullName": "Kyoung-Jun Min (LQS_KO_linguist)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/157e0850bff5d654100418259369d257?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 654
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 654
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 616,
+ "total": 654
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 486,
+ "total": 522
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 811
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 616,
+ "total": 654
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14612392,
+ "username": "rhodeskyriakos",
+ "fullName": "Kyriakos Alevropoulos (rhodeskyriakos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612392/medium/7a6a8ee0d133763cb2e9d1f887adae0c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 335
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 335
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 309,
+ "total": 335
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 308,
+ "total": 338
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 161,
+ "total": 161
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 309,
+ "total": 335
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738168,
+ "username": "KS.Park",
+ "fullName": "Kyusuh Park (KS.Park)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/36596a0ecfe66ec6e15351ecf01b3d78?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 753
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 753
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 743,
+ "total": 753
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 533,
+ "total": 542
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 743,
+ "total": 753
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958779,
+ "username": "kevin.moreau655",
+ "fullName": "Kévin Moreau (kevin.moreau655)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958779/medium/3f5b3d32118d59bf14db8053362e627a.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13502365,
+ "username": "dogukan.26c2",
+ "fullName": "Kürşad Kanlı (dogukan.26c2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13502365/medium/9fffbebbce3fed225f001a10dd570860.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974785,
+ "username": "leandroesl3",
+ "fullName": "LEANDRO ESL (leandroesl3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974785/medium/b1c7b07092a354e83b5b4be250c49218.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14720896,
+ "username": "KishPan",
+ "fullName": "LEBEAU Pacôme (KishPan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720896/medium/d59de134453124a475302b52d5e7ab54.jpg",
+ "preTranslated": 0,
+ "totalCosts": 307
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 307
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 303,
+ "total": 307
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 285,
+ "total": 289
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 198,
+ "total": 198
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 303,
+ "total": 307
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815876,
+ "username": "LUMOGROUP",
+ "fullName": "LUMOGROUP",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815876/medium/8debc09b5ece0d371f6a54dd295372b6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14142021,
+ "username": "Lahcen-KH",
+ "fullName": "Lahcen-KH",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14142021/medium/a975e15d82f2b4000869328428713087.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 6,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 10,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 6,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026871,
+ "username": "Naiyoma",
+ "fullName": "Lankas Aurelia (Naiyoma)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026871/medium/aff7c0f7016144e5aa436606c298be80.png",
+ "preTranslated": 0,
+ "totalCosts": 181
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 181
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 176,
+ "total": 181
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 161,
+ "total": 170
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 176,
+ "total": 181
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845846,
+ "username": "LaytonBerth",
+ "fullName": "Layton Berth (LaytonBerth)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845846/medium/33dd43eca062e1472466df8f0d1d1e3f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 195,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 199,
+ "total": 201
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 195,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14668742,
+ "username": "lmichelin",
+ "fullName": "Leandro (lmichelin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ea5aff5ddc9ccd86cbecb40868581945?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 88
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 88
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 88,
+ "total": 88
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 88,
+ "total": 88
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14573360,
+ "username": "lipan940414",
+ "fullName": "Lee Pine (lipan940414)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573360/medium/4f14c291cef5a08b58eb3da1ccfd83fe.jpg",
+ "preTranslated": 0,
+ "totalCosts": 839
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 839
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 820,
+ "total": 839
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 1337,
+ "total": 1372
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 238,
+ "total": 239
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 820,
+ "total": 839
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14057347,
+ "username": "mlekshmanap",
+ "fullName": "Lekshmana Perumal M (mlekshmanap)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057347/medium/e593ac8284d3431905aaf7e04105bfac.jpg",
+ "preTranslated": 0,
+ "totalCosts": 218
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 218
+ },
+ "translated": {
+ "tmMatch": 37,
+ "default": 181,
+ "total": 218
+ },
+ "targetTranslated": {
+ "tmMatch": 92,
+ "default": 387,
+ "total": 479
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 37,
+ "default": 181,
+ "total": 218
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14790502,
+ "username": "leo-cuellar",
+ "fullName": "Leo Cuéllar (leo-cuellar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790502/medium/3e58c2b7fb2644f6fa95eb909909f256.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 110,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 121,
+ "total": 121
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 110,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660654,
+ "username": "leon.musikhin",
+ "fullName": "Leon Musikhin (leon.musikhin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660654/medium/911df2aec4ab9b4f6f729e55f6ac54e2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 26,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 28,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 26,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846664,
+ "username": "donny.darco",
+ "fullName": "Leon Te (donny.darco)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846664/medium/7d61ca2c4b5dc23e2c385b52b51b9cce.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14584736,
+ "username": "LeoGodinho",
+ "fullName": "Leonardo Godinho (LeoGodinho)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584736/medium/bf9a05b2fbb33eee9ab9ea59f5fb4424.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 970
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 970
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 947,
+ "total": 970
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 1008,
+ "total": 1035
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 239,
+ "total": 239
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 947,
+ "total": 970
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15022459,
+ "username": "leonardo002031",
+ "fullName": "Leonardo Williams (leonardo002031)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022459/medium/49d209032b65b891f5122d63ca0e7490.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14967689,
+ "username": "leonardoluan2018",
+ "fullName": "Leonardo deficiencia auditiva (leonardoluan2018)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967689/medium/e9e918da4dba2bd0a481b1cb2e1473c3.png",
+ "preTranslated": 0,
+ "totalCosts": 164
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 164
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 154,
+ "total": 164
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 168,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 154,
+ "total": 164
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14629988,
+ "username": "liam.comma",
+ "fullName": "Liam Harris (liam.comma)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14629988/medium/861e1c28e0f96300796c9d6feb1cfb01.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14051341,
+ "username": "qiaoliang89",
+ "fullName": "Liang Qiao (qiaoliang89)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14051341/medium/7958cbfce27c72eb181f0c63edf4d83b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12596551,
+ "username": "lidiam",
+ "fullName": "Lidia Mayoral (lidiam)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12596551/medium/4d64ba444829e0a830179079cbf8fd80.png",
+ "preTranslated": 0,
+ "totalCosts": 200
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 81
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 78,
+ "total": 81
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 90,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 78,
+ "total": 81
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027518",
- "username": "stezy",
- "fullName": "stezy",
- "avatarUrl": "https://www.gravatar.com/avatar/2c627f5a7900133db27b937dbfa440d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-29 17:11:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990105",
- "username": "son_hejuk",
- "fullName": "son_hejuk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990105/medium/917e556d9062f29fa8d2e207b3934e87.jpg",
- "joined": "2021-11-07 13:54:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000077",
- "username": "bigblackclock",
- "fullName": "bigblackclock",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000077/medium/46b8ff36cb1623fb2a388f58a817b846.png",
- "joined": "2019-10-01 16:08:57"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 111,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 76,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 111,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779212,
+ "username": "matthewrock2011",
+ "fullName": "Lil Homo (matthewrock2011)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779212/medium/39661a937aa3dc153a7acd8d06b4a8fd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 415
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 415
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 385,
+ "total": 415
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 350,
+ "total": 370
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 385,
+ "total": 415
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949581,
+ "username": "lilianka.hutsulyak",
+ "fullName": "Liliana Hutsulyak (lilianka.hutsulyak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949581/medium/0289a77513413548774e65d9fcb02b41.png",
+ "preTranslated": 0,
+ "totalCosts": 106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 106
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 104,
+ "total": 106
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 85,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 104,
+ "total": 106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897560,
+ "username": "LilyX0309",
+ "fullName": "Lily Zhou (LilyX0309)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7a33ca1183c03e2e9df2ba74129f4e56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14617512,
+ "username": "mumu-lhl",
+ "fullName": "Lin Happy 666 (mumu-lhl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617512/medium/6918cd0fa9bd8bdd0988f89ec83b64b3.png",
+ "preTranslated": 0,
+ "totalCosts": 208
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 208
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 203,
+ "total": 208
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 348,
+ "total": 358
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 203,
+ "total": 208
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14599044,
+ "username": "do1221",
+ "fullName": "Linda Canarvar (do1221)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599044/medium/acf065ebe3d30435aff08f99204281b1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 66
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992691,
+ "username": "lindormfinance",
+ "fullName": "Lindorm Finance (lindormfinance)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992691/medium/aaf8c25e10c1e588f9d8ed58c2a2a657.jpg",
+ "preTranslated": 0,
+ "totalCosts": 137
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 137
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 127,
+ "total": 137
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 112,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 127,
+ "total": 137
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14137021,
+ "username": "liraz.siri2",
+ "fullName": "Liraz Siri (liraz.siri2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14137021/medium/e23adf8d83409e54947a011fc14039ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 369
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 369
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 368,
+ "total": 369
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 338,
+ "total": 339
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 368,
+ "total": 369
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572502,
+ "username": "Little_UY_Scuti",
+ "fullName": "Little_UY_Scuti",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572502/medium/148d3f5d928a6f4954f004570812debf.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748480,
+ "username": "rustle",
+ "fullName": "Liu Min (rustle)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748480/medium/fb9b53571ebea873ce17257508a8c128.jpg",
+ "preTranslated": 0,
+ "totalCosts": 6523
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6523
+ },
+ "translated": {
+ "tmMatch": 303,
+ "default": 6220,
+ "total": 6523
+ },
+ "targetTranslated": {
+ "tmMatch": 426,
+ "default": 8758,
+ "total": 9184
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 201,
+ "total": 204
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 303,
+ "default": 6220,
+ "total": 6523
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987203,
+ "username": "LiuShugao",
+ "fullName": "LiuShugao",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987203/medium/65e8ba04a4c177bf9656b47c627ba205.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 91
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 91
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 91,
+ "total": 91
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 174,
+ "total": 174
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 91,
+ "total": 91
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14634192,
+ "username": "longli20192015",
+ "fullName": "Long Li (longli20192015)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634192/medium/8b947f8c0385ed0ebbed3f86905b9d04.jpg",
+ "preTranslated": 0,
+ "totalCosts": 123
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 123
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 117,
+ "total": 123
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 194,
+ "total": 205
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 117,
+ "total": 123
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026857,
+ "username": "longtran02",
+ "fullName": "Long Tran (longtran02)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e42114d71608ad394a0b202d3abfb1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 970
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 970
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 970,
+ "total": 970
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1290,
+ "total": 1290
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 970,
+ "total": 970
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14638974,
+ "username": "louiseperezserrano",
+ "fullName": "Louise Pérez (louiseperezserrano)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638974/medium/96dbb1f75ee993fb0bea83c40a84c57d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14601410,
+ "username": "Vietnamngaonghe",
+ "fullName": "Love Language (Vietnamngaonghe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601410/medium/b762e442514123c4f34c7cfd8194b940.jpg",
+ "preTranslated": 0,
+ "totalCosts": 270
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 270
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 270,
+ "total": 270
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 390,
+ "total": 390
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 270,
+ "total": 270
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14785890,
+ "username": "lu_schy",
+ "fullName": "Lu (lu_schy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785890/medium/9af95930308caa40e0747a37886265d2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 977
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 977
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 956,
+ "total": 977
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 803,
+ "total": 827
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 956,
+ "total": 977
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14353294,
+ "username": "lubo.cur123",
+ "fullName": "Lubo Čurgala (lubo.cur123)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14353294/medium/f76ec1fcc5914c88cdb27fd0db2e64d8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990039",
- "username": "UnknownLoki",
- "fullName": "Lucas Sebastian Antúnez (UnknownLoki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990039/medium/2f1584aea6dc873afc734e7e5e9c5ff7.jpg",
- "joined": "2021-11-04 10:32:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992425",
- "username": "mnsory",
- "fullName": "mnsory",
- "avatarUrl": "https://www.gravatar.com/avatar/2b40a48bcff2e42ae08a889a628535f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 08:38:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990025",
- "username": "gratestas",
- "fullName": "gratestas",
- "avatarUrl": "https://www.gravatar.com/avatar/df1aec556cd56fbeb58f73124447a7f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-04 10:28:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990003",
- "username": "bellaciaonft",
- "fullName": "Bella Ciao (bellaciaonft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990003/medium/b4156b2b90506836cdd20726f4710189.png",
- "joined": "2021-11-24 09:44:06"
- },
- "languages": [
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14908081,
+ "username": "luca.buglioli",
+ "fullName": "Luca Buglioli (luca.buglioli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908081/medium/a6d00d2a7406dca4ec0b1c8557607f4d.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633366,
+ "username": "lucacalliera",
+ "fullName": "Luca Calliera (lucacalliera)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633366/medium/3be7c6e7b402477ff8e7cb8fee4adca9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553474,
+ "username": "donnoh",
+ "fullName": "Luca Donno (donnoh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553474/medium/7ba6d6419135cee445a073a5c4277d4a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3308
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3308
+ },
+ "translated": {
+ "tmMatch": 212,
+ "default": 3096,
+ "total": 3308
+ },
+ "targetTranslated": {
+ "tmMatch": 233,
+ "default": 3218,
+ "total": 3451
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 599,
+ "total": 602
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 212,
+ "default": 3096,
+ "total": 3308
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952461,
+ "username": "lucaGazzola",
+ "fullName": "Luca Gazzola (lucaGazzola)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952461/medium/d9411adee28972f04109cfa53618d2f9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 369
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 369
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 355,
+ "total": 369
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 367,
+ "total": 381
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 40,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 355,
+ "total": 369
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14442984,
+ "username": "marseluca",
+ "fullName": "Luca Marseglia (marseluca)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442984/medium/2f899f501af675c0081dff102f33b2ab.jpg",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 83,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 89,
+ "total": 91
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 83,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563624,
+ "username": "lucasbalieiro",
+ "fullName": "Lucas Balieiro (lucasbalieiro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563624/medium/71d6efac2487357d12cdc6723d14facd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 15,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 15,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14000307,
+ "username": "bergmannlucas",
+ "fullName": "Lucas Bergmann (bergmannlucas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000307/medium/fdd87c00289f2b29277212427f3accdf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14663928,
+ "username": "luc4s.eb",
+ "fullName": "Lucas Ebana (luc4s.eb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663928/medium/991c5de7330b7ccbd5581f7bab37f347.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14693050,
+ "username": "Luuck4s",
+ "fullName": "Lucas Lima (Luuck4s)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693050/medium/4c771a227b48f3be61dedc652acbefe1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035059,
+ "username": "LucasVelazquez",
+ "fullName": "Lucas Velazquez (LucasVelazquez)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035059/medium/b6b05fe77c62eabd62d797d71ed1b707.png",
+ "preTranslated": 0,
+ "totalCosts": 244
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 244
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 243,
+ "total": 244
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 272,
+ "total": 273
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 243,
+ "total": 244
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814600,
+ "username": "vPEPO",
+ "fullName": "Luciano Orlando (vPEPO)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814600/medium/677ea1f4add63149a74de564de70989a.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14777938,
+ "username": "arcadipaneluigi05",
+ "fullName": "Luigi Arcadipane (arcadipaneluigi05)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777938/medium/7780111bb3377c948f242d5c60904ddd.png",
+ "preTranslated": 0,
+ "totalCosts": 222
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 222
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 218,
+ "total": 222
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 166,
+ "total": 173
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 218,
+ "total": 222
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14747946,
+ "username": "torr3s_luis",
+ "fullName": "Luis Torres (torr3s_luis)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747946/medium/a3628eaedf02e729616ebbadf41cd757.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14621976,
+ "username": "luiz.amaral.1704",
+ "fullName": "Luiz Henrique Amaral Costa (luiz.amaral.1704)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621976/medium/c9328665b73963f5c7efe57f9872c2ba.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673652,
+ "username": "lhenriquepbueno",
+ "fullName": "Luiz Henrique Picolo Buneo (lhenriquepbueno)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673652/medium/4945074272bb5d8396791bef29d66013.jpg",
+ "preTranslated": 0,
+ "totalCosts": 563
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 563
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 547,
+ "total": 563
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 592,
+ "total": 611
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 287,
+ "total": 291
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 547,
+ "total": 563
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13544774,
+ "username": "LukaK",
+ "fullName": "Luka Kropec (LukaK)",
+ "userRole": "Manager",
+ "avatarUrl": "https://www.gravatar.com/avatar/4536fcbc2dc226c427318126070e090d?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 21104,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 126,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13998233",
- "username": "faraggi",
- "fullName": "Felipe Faraggi (faraggi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13998233/medium/c53a708680d20eb5a3474ca0d27b7f51.png",
- "joined": "2019-09-30 01:57:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14986741",
- "username": "twtpchen",
- "fullName": "twtpchen",
- "avatarUrl": "https://www.gravatar.com/avatar/9ed46cda219083533b67b29f5e1a8260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 04:11:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992835",
- "username": "jinmiaoluo",
- "fullName": "jinmiaoluo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992835/medium/7212ed7caee022a8c9550c70f2af3e15.jpeg",
- "joined": "2021-11-06 15:31:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995605",
- "username": "era-1",
- "fullName": "era-1",
- "avatarUrl": "https://www.gravatar.com/avatar/12726a6db7b142b2bc07b962a9517ebc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 21:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14043271",
- "username": "crazylex",
- "fullName": "crazylex",
- "avatarUrl": "https://www.gravatar.com/avatar/1a8786e165cd64a39cd7fda7bf7bf97a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-27 05:53:34"
- },
- "languages": [
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14037405",
- "username": "Otavio-Camargo",
- "fullName": "Otavio-Camargo",
- "avatarUrl": "https://www.gravatar.com/avatar/4e43ecad970917504784ec513ecb547c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-16 17:09:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14037693",
- "username": "felipericieri",
- "fullName": "Felipe Ricieri (felipericieri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14037693/medium/37316d8301d2d83d6f4edbca9a0d5206.jpeg",
- "joined": "2021-05-31 08:38:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982609",
- "username": "cantatus",
- "fullName": "cantatus",
- "avatarUrl": "https://www.gravatar.com/avatar/2c510aef6eb817a245a08f38b552fa93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 10:36:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14038844",
- "username": "ghasshee",
- "fullName": "ghasshee",
- "avatarUrl": "https://www.gravatar.com/avatar/d5e787a3cc1c343ee53b3e346a4d7908?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-19 09:59:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14039061",
- "username": "lunas",
- "fullName": "lunas",
- "avatarUrl": "https://www.gravatar.com/avatar/5f41a3311af774d7f7e5395fb1c0f8db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-19 19:15:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14994717",
- "username": "vahid.panahi",
- "fullName": "vahid panahi (vahid.panahi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994717/medium/8212d2ac749826da67f0578e4ca6d86b.jpeg",
- "joined": "2021-11-08 06:02:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14041184",
- "username": "karansingh1559",
- "fullName": "Karan Singh (karansingh1559)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14041184/medium/3970c74b939831afbc683941fd5847bf.jpeg",
- "joined": "2019-11-23 16:12:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981661",
- "username": "jffc.app",
- "fullName": "Fabio Campos (jffc.app)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14981661/medium/c2b1f39d70cf548c74e8960d318cf4b5.jpeg",
- "joined": "2021-10-29 15:08:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14037125",
- "username": "CHOILOKYI",
- "fullName": "CHOILOKYI",
- "avatarUrl": "https://www.gravatar.com/avatar/2e6568df3cf75f8fe821c045e849e225?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 14:31:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995007",
- "username": "Abberan",
- "fullName": "Abberan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995007/medium/c5d744f0220e197ec09cb077c000761d.png",
- "joined": "2021-11-08 09:56:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981655",
- "username": "jffc",
- "fullName": "jffc",
- "avatarUrl": "https://www.gravatar.com/avatar/3245f94329133e96df95ea2a9124d45d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 15:07:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13984073",
- "username": "boomik305",
- "fullName": "boomik305",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13984073/medium/cd6558d2d1d5f72c3198dfe653b1eb8e.png",
- "joined": "2021-04-15 04:32:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995333",
- "username": "memetali_esra_ece",
- "fullName": "Memetali Uzuner (memetali_esra_ece)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995333/medium/932d78df1e6074336941e02d59ed32f0.jpeg",
- "joined": "2021-11-08 14:39:31"
- },
- "languages": [
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 920,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 144
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981089",
- "username": "daniloraisi",
- "fullName": "Danilo Tenorio Raisi (daniloraisi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14981089/medium/37d319f7ff289b5141aea317cb808deb.jpeg",
- "joined": "2021-10-29 08:26:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13982529",
- "username": "abdosheham",
- "fullName": "abdosheham",
- "avatarUrl": "https://www.gravatar.com/avatar/f70f515e114fd158b0f1781efb43726c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-13 19:26:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995371",
- "username": "ttvddvt080100",
- "fullName": "devit 08 (ttvddvt080100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995371/medium/9915369128340168852dc8660109f18f.jpeg",
- "joined": "2021-11-08 15:13:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986387",
- "username": "rafarocha",
- "fullName": "rafarocha",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/a0c3812dc8e52a7ab934944250304328.jpeg",
- "joined": "2019-09-17 10:36:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035402",
- "username": "paolague",
- "fullName": "paolague",
- "avatarUrl": "https://www.gravatar.com/avatar/0ef6b1b99c148f7bcc3f732cb282808b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-13 04:19:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031128",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/10e8d8716425d5c19617c846a01d2e48?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-05 10:11:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993161",
- "username": "TAKESHITA-Hiroki",
- "fullName": "Hiroki (TAKESHITA-Hiroki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14993161/medium/443a93805cde8b16a84e685dcfc73f8c.jpeg",
- "joined": "2021-11-06 23:34:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985161",
- "username": "batuhanbali34",
- "fullName": "Batuhan Bali (batuhanbali34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985161/medium/0181aa5ca8c0b5a21cc408f00528f2e6.png",
- "joined": "2021-11-01 06:43:30"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 81,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031162",
- "username": "georgerobescu",
- "fullName": "George Robescu (georgerobescu)",
- "avatarUrl": "https://www.gravatar.com/avatar/d5bd003ea10b0c572230826f5bf6704b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-05 11:39:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031546",
- "username": "amir.fatahi.btc",
- "fullName": "amirhossein fatahifar (amir.fatahi.btc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14031546/medium/def8f80240872a61b77ab6535a782df6.jpeg",
- "joined": "2019-11-06 06:41:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984835",
- "username": "Juliatease",
- "fullName": "Juliatease",
- "avatarUrl": "https://www.gravatar.com/avatar/8d2b8b89616a76c87ad21a389c3a7221?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 01:48:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984717",
- "username": "albertkytth62",
- "fullName": "Albert Nena (albertkytth62)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984717/medium/d1be2efa83137c5e5ac2595b14733fca.png",
- "joined": "2021-10-31 23:29:27"
- },
- "languages": [
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986795",
- "username": "wayne.wong",
- "fullName": "wayne.wong",
- "avatarUrl": "https://www.gravatar.com/avatar/9765db61a5099cc3f17e60bb5ea23a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-21 23:06:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984425",
- "username": "HanSalo",
- "fullName": "Vladyslav Dudas (HanSalo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984425/medium/2a8084dc30d654610bdfb111362833dd.jpeg",
- "joined": "2021-11-04 06:59:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033767",
- "username": "fberdun",
- "fullName": "Franco Berdun (fberdun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033767/medium/177c87c86951c68fe708b1a66e88d8bc.jpeg",
- "joined": "2019-11-10 05:51:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983071",
- "username": "DrDavid",
- "fullName": "David Ho (DrDavid)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983071/medium/b055056a9b9907ce69e035b9f303f492.jpeg",
- "joined": "2021-10-30 19:01:45"
- },
- "languages": [
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 13,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993207",
- "username": "erfantahmasebi",
- "fullName": "erfantahmasebi",
- "avatarUrl": "https://www.gravatar.com/avatar/6caa020a43ab2c91ab068fdad957c8ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-07 00:12:59"
- },
- "languages": [
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 820,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 160
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034158",
- "username": "uwantege",
- "fullName": "Sandra Hart (uwantege)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034158/medium/a6bdd9bda222d79f82d48bb59a65b538.jpeg",
- "joined": "2019-11-10 23:31:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983849",
- "username": "wldn990629",
- "fullName": "정지우 (wldn990629)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983849/medium/701f7aecdf6ca3b6752b763b71d89109.png",
- "joined": "2021-11-04 06:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993333",
- "username": "ckky",
- "fullName": "ckky",
- "avatarUrl": "https://www.gravatar.com/avatar/e72d328491115dcaaf2d1dcbaaef39ff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-07 02:16:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993363",
- "username": "WilliamOfSweden",
- "fullName": "William Daghouz (WilliamOfSweden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14993363/medium/5f3212cada01bf4f44dc0fe6d39ab879.jpeg",
- "joined": "2021-11-07 03:11:56"
- },
- "languages": [
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 864,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 34
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034838",
- "username": "Emilia90",
- "fullName": "Emilia90",
- "avatarUrl": "https://www.gravatar.com/avatar/80df382c8272171bb7b5cf6e91e851e5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-12 02:57:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983151",
- "username": "bin8448",
- "fullName": "bin8448",
- "avatarUrl": "https://www.gravatar.com/avatar/609528474ebbf2a7368f486a0358706d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 21:34:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001213",
- "username": "kentipuol",
- "fullName": "kentipuol",
- "avatarUrl": "https://www.gravatar.com/avatar/de283f9853d538dcba9f7d3de599da25?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 00:10:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002111",
- "username": "ujangrahfi",
- "fullName": "Rahfi Maulana adam (ujangrahfi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002111/medium/8e9ee3e5e67d830f9d39a73ece81e958.png",
- "joined": "2021-11-13 13:14:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14417018",
- "username": "davidstrouk",
- "fullName": "David Strouk (davidstrouk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14417018/medium/abde2f21855045b52255d4dbd6b18190.png",
- "joined": "2020-09-15 19:31:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005585",
- "username": "Jimmy.brtc",
- "fullName": "Jimmy Buriticá (Jimmy.brtc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005585/medium/ba37c5262f0a3a97f323ce588e5851c9.jpeg",
- "joined": "2021-11-16 10:22:04"
- },
- "languages": [
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 934,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 218
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13523337",
- "username": "ligeirinho",
- "fullName": "Marcelo Cardoso (ligeirinho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13523337/medium/780314e8c3d2fc36eb47aafbfef1cbcf.jpg",
- "joined": "2021-08-20 16:08:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956411",
- "username": "GGCode",
- "fullName": "GGCode",
- "avatarUrl": "https://www.gravatar.com/avatar/d26da69369fdeb6b8e7abd1c3ae54672?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-09 16:17:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14333546",
- "username": "mdyousuf9436",
- "fullName": "ইউছফ ইউছফ (mdyousuf9436)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14333546/medium/a9ad50ccf02563e002fb207cc0434133.jpeg",
- "joined": "2020-07-30 09:02:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14337788",
- "username": "fedosey8",
- "fullName": "Алексей Савельев (fedosey8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14337788/medium/504fb8aaebab538a9717314772507710.png",
- "joined": "2021-05-02 21:08:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956109",
- "username": "Alexanderymanuel",
- "fullName": "Alexander Arberto Tovar (Alexanderymanuel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956109/medium/ed90357fcf33cbe0b17b411c5b644464.jpeg",
- "joined": "2021-10-09 10:59:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14345468",
- "username": "manticorevault",
- "fullName": "manticorevault",
- "avatarUrl": "https://www.gravatar.com/avatar/333bf64fecf3cd124d875b445360bc65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-16 13:02:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955385",
- "username": "b3ancie",
- "fullName": "Kasprov Anton (b3ancie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955385/medium/29994aae921a03e714e23e8d9f42a322.png",
- "joined": "2021-10-08 18:04:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956717",
- "username": "cryptoreumd",
- "fullName": "cryptoreumd",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956717/medium/d3a0d79f0b5d21e8ff63aca6b0d8a048.jpg",
- "joined": "2021-10-10 00:28:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13516356",
- "username": "L-mir",
- "fullName": "L-mir",
- "avatarUrl": "https://www.gravatar.com/avatar/b4ad9a5979153176c83895bc5139cd7f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 22:08:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14354662",
- "username": "zuthien5196",
- "fullName": "zuthien5196",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14354662/medium/3ab7b5c41c6d9deb332313fec1db78ce.png",
- "joined": "2020-07-24 14:16:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15016175",
- "username": "futuresbetter",
- "fullName": "futuresbetter",
- "avatarUrl": "https://www.gravatar.com/avatar/bbcf90ecf07a970f76d34571340e2962?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 23:28:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14356978",
- "username": "Nasco",
- "fullName": "Fidelis Animam (Nasco)",
- "avatarUrl": "https://www.gravatar.com/avatar/6da834728ad3775bc597a2f8a7fe48e5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-26 22:39:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15018561",
- "username": "kaimingguo",
- "fullName": "Kaiming Guo (kaimingguo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15018561/medium/e227a380df187398aaefcc4dd1068c26.png",
- "joined": "2021-11-17 02:21:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15019091",
- "username": "hao493919178",
- "fullName": "MJ TimTry (hao493919178)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019091/medium/e782f8108a98d13de8845848ec1e746a.jpeg",
- "joined": "2021-11-17 02:55:59"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 701,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 88
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14954749",
- "username": "drakebethea727",
- "fullName": "Drake Bethea (drakebethea727)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14954749/medium/4684b5ea0fc497dc8d916e9c4a072c9e.png",
- "joined": "2021-10-08 07:50:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956705",
- "username": "Nabil111",
- "fullName": "Nabil111",
- "avatarUrl": "https://www.gravatar.com/avatar/22fe6e63789fdf8848f0d0c4a2957612?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-10 00:18:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14324146",
- "username": "hebe_11",
- "fullName": "hebe_11",
- "avatarUrl": "https://www.gravatar.com/avatar/dc093274b86170d71e572632af3d7549?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-29 08:47:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14359932",
- "username": "ssaraji",
- "fullName": "Soheil Saraji (ssaraji)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14359932/medium/2c78146103b347a22ebf8bd7cc17071b.jpeg",
- "joined": "2020-07-29 10:14:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14305512",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/18c25951acaf46a3f28dc8244ee11ca8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-18 10:26:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005019",
- "username": "beihaikj",
- "fullName": "beihaikj",
- "avatarUrl": "https://www.gravatar.com/avatar/cbad3d75ff98dd9786e9ebd6025a4ff6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 02:04:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14288256",
- "username": "relaxdon",
- "fullName": "relaxdon",
- "avatarUrl": "https://www.gravatar.com/avatar/f4167adbf01c393371ad0be92733a71b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-03 02:40:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289548",
- "username": "Aimsbiz",
- "fullName": "Aimsbiz",
- "avatarUrl": "https://www.gravatar.com/avatar/83a784c25350e2db35f49b9f7f21d0fd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-03 19:16:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958165",
- "username": "lewisaung",
- "fullName": "lewisaung",
- "avatarUrl": "https://www.gravatar.com/avatar/c72fa80d3f1201710602dbb03c24872f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 06:36:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14294584",
- "username": "punalurchandrasekharan",
- "fullName": "Punalur Chandrasekharan (punalurchandrasekharan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14294584/medium/ca2e462de78ac8c84afe9f13e2edfa9c.jpeg",
- "joined": "2020-06-07 08:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13590729",
- "username": "Dmitryrusskih",
- "fullName": "Dmytro Russkikh (Dmitryrusskih)",
- "avatarUrl": "https://www.gravatar.com/avatar/7321434d839dfc7400c5fcd6717b8e6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-07 09:08:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14303752",
- "username": "keselekpermen69",
- "fullName": "Mr.Miss (keselekpermen69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14303752/medium/2d8787a66e39d8bda280fa193c5c9f1c.jpg",
- "joined": "2021-05-13 06:54:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957815",
- "username": "NFTurk",
- "fullName": "NFTurk",
- "avatarUrl": "https://www.gravatar.com/avatar/d68b33ed733a91743562892b3d3bf7a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 00:57:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14321912",
- "username": "Karthik_Bokkesam",
- "fullName": "karthikbokkesam (Karthik_Bokkesam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14321912/medium/4c7b38ce2c5dd76a8b07385ada51be97.png",
- "joined": "2020-06-27 11:36:22"
- },
- "languages": [
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 369,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005221",
- "username": "ozgur.kynr",
- "fullName": "ozgur kaynar (ozgur.kynr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005221/medium/d0e68bc33fa42b59ec946614f56d8039.png",
- "joined": "2021-11-16 05:31:55"
- },
- "languages": [
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 313,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957585",
- "username": "Sebga",
- "fullName": "Sebga_ (Sebga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957585/medium/8de635b9239d5347bca90a134d8d178f.jpg",
- "joined": "2021-10-10 18:41:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14305944",
- "username": "ryancordell",
- "fullName": "ryancreatescopy (ryancordell)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14305944/medium/fe56ee07cd23d026660648318c243bfe.jpeg",
- "joined": "2020-06-15 12:03:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14318198",
- "username": "soda.sa.beer",
- "fullName": "AREE Khongcharoen (soda.sa.beer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14318198/medium/5d6d03855d1233029efd7b39b7d09111.jpeg",
- "joined": "2020-12-09 03:42:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13555226",
- "username": "mactkg",
- "fullName": "Kenta Hara (mactkg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13555226/medium/4d625152a469f4a844d2381d81b4af2f.png",
- "joined": "2021-08-10 08:15:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956887",
- "username": "Ladenfine1",
- "fullName": "Ladenfine1",
- "avatarUrl": "https://www.gravatar.com/avatar/7c4c0e8bdf0a0c5af2880101b6dcfd15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-10 04:16:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005461",
- "username": "jooooo5as",
- "fullName": "jooooo5as",
- "avatarUrl": "https://www.gravatar.com/avatar/cd15e4ab449bd56b6ad56153e57b204a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 08:53:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13486558",
- "username": "kadd",
- "fullName": "K. GÜNAY (kadd)",
- "avatarUrl": "https://www.gravatar.com/avatar/c4e1447da738a3d65201db3b960a9d3b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-05 08:04:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360590",
- "username": "raadalubeedi",
- "fullName": "raadalubeedi",
- "avatarUrl": "https://www.gravatar.com/avatar/1f877a0be060adf54c581b179cf7194e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-30 00:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14286398",
- "username": "Fern1992",
- "fullName": "Fern1992",
- "avatarUrl": "https://www.gravatar.com/avatar/bef03871d4e39b2c8db0474329233c77?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-01 20:26:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14402986",
- "username": "harshvardhan-shah",
- "fullName": "Harshvardhan (harshvardhan-shah)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14402986/medium/06efcf3310e426f6067b44c3f9d5da47.png",
- "joined": "2020-09-04 09:53:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022199",
- "username": "tendo",
- "fullName": "tendo",
- "avatarUrl": "https://www.gravatar.com/avatar/a6f3f980602c6dd5fa97244fae1df7e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 01:10:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13331706",
- "username": "translatebyhumans",
- "fullName": "Translate By Humans (translatebyhumans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13331706/medium/1a06f6ee09c0210f6d350aec25385860.png",
- "joined": "2020-06-30 05:59:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14388568",
- "username": "rooban23",
- "fullName": "rooban23",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14388568/medium/6a05ebb98fa58cc89906373b55ba631e.png",
- "joined": "2020-09-15 08:41:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14393312",
- "username": "ZER0-X",
- "fullName": "zer0-x (ZER0-X)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14393312/medium/d6857670dfe4854ec2e6238d53b71407.png",
- "joined": "2021-02-24 02:08:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14395298",
- "username": "Kamal1",
- "fullName": "Kamal Abdulhadi Ibrahim (Kamal1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395298/medium/fa86858a72816941fe0eab675ecab356.jpg",
- "joined": "2020-08-29 03:41:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14396236",
- "username": "Luiz6ustav0",
- "fullName": "Luiz (Luiz6ustav0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14396236/medium/86bae9bdd34bdbfa5d7c28149ba7a489.jpeg",
- "joined": "2020-08-29 13:33:13"
- },
- "languages": [
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 42,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14399350",
- "username": "keith.lacey",
- "fullName": "keith.lacey",
- "avatarUrl": "https://www.gravatar.com/avatar/dc182ea4bb4aef300079fb0f191d9d51?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 15:48:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022463",
- "username": "shanjiefengyi",
- "fullName": "郭欣晨 (shanjiefengyi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022463/medium/1d8934ae554876b845c0063f179796b9.png",
- "joined": "2021-11-22 22:19:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13361406",
- "username": "ncruzdesign",
- "fullName": "Nuno Cruz (ncruzdesign)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13361406/medium/4805729ad7e4c215d94e863de63b9ee7.jpg",
- "joined": "2021-10-18 07:27:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14407620",
- "username": "1mbsuperstar",
- "fullName": "Сірьожа Мельник (1mbsuperstar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14407620/medium/18d3d18e422dda2fa484ffb0be7a3991.jpeg",
- "joined": "2020-12-21 19:54:49"
- },
- "languages": [
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 85,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951245",
- "username": "crxmchity",
- "fullName": "Mancy Shaw (crxmchity)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951245/medium/357d024bf016bfede765f646f7044c52.jpeg",
- "joined": "2021-10-05 12:29:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13329417",
- "username": "acebi",
- "fullName": "Arda Çebi (acebi)",
- "avatarUrl": "https://www.gravatar.com/avatar/f62970e56ba77f929293ff9733419dce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 11:58:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14415348",
- "username": "ttrautmann",
- "fullName": "Tamás Trautmann (ttrautmann)",
- "avatarUrl": "https://www.gravatar.com/avatar/cf1d9b1df5cfc03c3668484da038d8ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 08:03:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022623",
- "username": "tan93nt",
- "fullName": "tan93nt",
- "avatarUrl": "https://www.gravatar.com/avatar/c737d868b93acb0f91b1b13d1a5e4e63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 07:35:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951137",
- "username": "Lizka",
- "fullName": "Архипова Єлизавета Геннадіївна (Lizka)",
- "avatarUrl": "https://www.gravatar.com/avatar/a3687813b7e1cfa63982d38214ba0a74?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 13:25:52"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 30,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 59,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951071",
- "username": "hezargan",
- "fullName": "hezargan",
- "avatarUrl": "https://www.gravatar.com/avatar/dd7075eb2ea850a3ea9916c79a05427a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 10:10:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952103",
- "username": "IrynaD7316",
- "fullName": "IrynaD7316",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952103/medium/7304221fbe61a6d26903db9846897b9b.jpg",
- "joined": "2021-10-17 10:49:37"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 253,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 6,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 5,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 131
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14380532",
- "username": "sun876",
- "fullName": "sunny p (sun876)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14380532/medium/6cb633e24e6d544dd93c98997c51481c.jpg",
- "joined": "2020-08-15 22:23:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13480165",
- "username": "Moravia_Translator1_ES",
- "fullName": "Moravia_Translator1_ES",
- "avatarUrl": "https://www.gravatar.com/avatar/7453748d7457fc017bca0cb565a29b34?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 06:03:51"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 703,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 362
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991887",
- "username": "Alex_1968",
- "fullName": "Alex_1968",
- "avatarUrl": "https://www.gravatar.com/avatar/496e54d7546e0e4f4578ae020f8dba58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 19:34:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13475905",
- "username": "horjeacosmin",
- "fullName": "Cosmin Horjea (horjeacosmin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13475905/medium/c85df7cdae79c8a2a630b30e6fc6685d.jpg",
- "joined": "2019-10-29 16:04:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020119",
- "username": "azraelkr",
- "fullName": "azraelkr",
- "avatarUrl": "https://www.gravatar.com/avatar/523a85533fc442b1227f6a3662c51b21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 10:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13475148",
- "username": "windasd",
- "fullName": "windasd",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13475148/medium/aaff72927eab9014c4675b42d0b3dcb6.jpg",
- "joined": "2021-04-10 10:28:19"
- },
- "languages": [
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 147,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14361208",
- "username": "Miromiro",
- "fullName": "Miromiro",
- "avatarUrl": "https://www.gravatar.com/avatar/aa387780c4bb8c898d834391e8c2b190?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-30 10:13:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13446847",
- "username": "gokhandogru",
- "fullName": "Gökhan Doğru (gokhandogru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13446847/medium/d0397a5e28fc1f0250f56c6a9e7e933f.JPG",
- "joined": "2021-05-09 06:24:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13414247",
- "username": "faxriddin",
- "fullName": "Faxriddin Baltayev Pardabayevich (faxriddin)",
- "avatarUrl": "https://www.gravatar.com/avatar/2ccaf1f1c8637d94b0702e8d1d606be5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-08 11:59:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020627",
- "username": "sullivanhsu55",
- "fullName": "Sullivan Hsu (sullivanhsu55)",
- "avatarUrl": "https://www.gravatar.com/avatar/219e2bd621b269fa58991ae865d3fa55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 19:15:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13382440",
- "username": "palevoo",
- "fullName": "palevoo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13382440/medium/f701348fb9eaed2d4e2b22853c5e42af.png",
- "joined": "2021-09-01 18:29:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14376302",
- "username": "The_Wayvy",
- "fullName": "The_Wayvy",
- "avatarUrl": "https://www.gravatar.com/avatar/77f996c6a864c1be21408c5af52e3b1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 18:33:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13367554",
- "username": "zangjin5025",
- "fullName": "Jin Zang (zangjin5025)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13367554/medium/8a1560ea16a1b7de6dcaf75adbd46d5c.jpg",
- "joined": "2021-02-02 14:37:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14371884",
- "username": "rjesei12",
- "fullName": "Jessie Ramirez (rjesei12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14371884/medium/ce419fc0c82cb677ffd73e8fa167c069.jpeg",
- "joined": "2020-08-08 21:01:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14371926",
- "username": "zenata1",
- "fullName": "Hakim Oubouali (zenata1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14371926/medium/8da789ab9e40b088fe29bdeba9514eab.png",
- "joined": "2021-03-30 19:06:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952471",
- "username": "justatranslator",
- "fullName": "justatranslator",
- "avatarUrl": "https://www.gravatar.com/avatar/d6d45265f267f2a15b44a9034a2a1578?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 11:54:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021487",
- "username": "WATSON_WU",
- "fullName": "WATSON_WU",
- "avatarUrl": "https://www.gravatar.com/avatar/e55ce154d2e9311200c337f143a1a6cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-18 10:59:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952341",
- "username": "ChrisWells",
- "fullName": "ChrisWells",
- "avatarUrl": "https://www.gravatar.com/avatar/deb9483d1e8c6a319faf4ce6e874889a?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 10:03:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021975",
- "username": "yanluizcripto",
- "fullName": "Yan Luiz (yanluizcripto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021975/medium/6a6f07abbbf6444cb25da930a24a992a.jpeg",
- "joined": "2021-11-18 19:24:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14287002",
- "username": "ferenc67",
- "fullName": "ferenc67",
- "avatarUrl": "https://www.gravatar.com/avatar/e793075f1661cf325f7ba049817258e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-02 05:51:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14284844",
- "username": "saeidhobshoar",
- "fullName": "Saeid Hob Shoar (saeidhobshoar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14284844/medium/937874e5ccfdc5e01f53b075dc5431ed.jpeg",
- "joined": "2020-07-17 05:16:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13774815",
- "username": "Olena_O",
- "fullName": "Olena_O",
- "avatarUrl": "https://www.gravatar.com/avatar/c95ae0e9666392cdd66ff50a70b5d63e?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 18:11:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13639035",
- "username": "aingbobotoh1933",
- "fullName": "Sayid Almahdy (aingbobotoh1933)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13639035/medium/65e772fffb5e14f329029586e6f2e090.jpeg",
- "joined": "2019-11-03 18:36:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197214",
- "username": "sebastiantf",
- "fullName": "Sebastian T F (sebastiantf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197214/medium/ed36879d3d73f661b8eaadbebe2d181a.jpeg",
- "joined": "2020-04-08 14:02:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966739",
- "username": "maxim2006722",
- "fullName": "Maxim_u (maxim2006722)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966739/medium/9e8a9aceb99ff94b0df704182411fa90.png",
- "joined": "2021-10-18 06:26:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14198304",
- "username": "sambacisse",
- "fullName": "Samba Cisse (sambacisse)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14198304/medium/8631592eada2fe37c962af0242348ad3.png",
- "joined": "2020-04-09 06:30:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14202604",
- "username": "jacksparo2547",
- "fullName": "Jack Sparo (jacksparo2547)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14202604/medium/a71a58650493bcdbefbce0f47e140458.jpg",
- "joined": "2020-04-11 18:28:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14203654",
- "username": "amalik",
- "fullName": "Amalik Amriou (amalik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14203654/medium/c23b98f148339fa8df9386672071488b.jpeg",
- "joined": "2020-04-12 11:58:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003265",
- "username": "seekingtau",
- "fullName": "seekingtau",
- "avatarUrl": "https://www.gravatar.com/avatar/314659ef3a6c2ed13f3ef09523325570?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 14:16:08"
- },
- "languages": [
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 225,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14213206",
- "username": "mtmone90",
- "fullName": "Mt Mone (mtmone90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14213206/medium/772b64380bf58ba26803ad2d088f7a85.jpg",
- "joined": "2020-04-18 02:38:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966025",
- "username": "harshagrawal",
- "fullName": "harshagrawal",
- "avatarUrl": "https://www.gravatar.com/avatar/39cfab727aaacb1f30327c895035b9f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-17 14:20:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13652957",
- "username": "danilolutz",
- "fullName": "Danilo Lutz (danilolutz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13652957/medium/838bc05277fe089bf5ff0d82a48e1ed1.jpeg",
- "joined": "2021-07-30 08:18:17"
- },
- "languages": [
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 637,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 74
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003355",
- "username": "Osmarluko",
- "fullName": "Osmarluko",
- "avatarUrl": "https://www.gravatar.com/avatar/e16bc316f6bbf8f69238a4133524d6f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 16:14:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14215180",
- "username": "Narancsleee",
- "fullName": "Narancsleee",
- "avatarUrl": "https://www.gravatar.com/avatar/e6880d49655d3ea7aa376ce3bf1093d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-19 08:45:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003547",
- "username": "jonhanam2",
- "fullName": "Baby Disney (jonhanam2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003547/medium/2fa3e52eb462041c5657dd98097e1b56.jpeg",
- "joined": "2021-11-14 21:08:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14220368",
- "username": "MarkZimmerman",
- "fullName": "Mark Zimmerman (MarkZimmerman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220368/medium/088bd08235c837cbec0b48fab0a9d90e.jpg",
- "joined": "2021-10-22 08:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965075",
- "username": "g1zm0",
- "fullName": "Mariusz Pełka (g1zm0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14965075/medium/3bdd185d105408daa338241b1e5aede9.png",
- "joined": "2021-10-16 16:12:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14222550",
- "username": "Anthony.Albertorio",
- "fullName": "Anthony Albertorio (Anthony.Albertorio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14222550/medium/cad8582d15649b7fd3554bb6b9b2d4b2.jpeg",
- "joined": "2021-01-05 10:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14964673",
- "username": "Timosch",
- "fullName": "Timosch",
- "avatarUrl": "https://www.gravatar.com/avatar/0239fa651b8e7d698823e11ef92ff127?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 08:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14190413",
- "username": "gp5555555555",
- "fullName": "gulyás péter (gp5555555555)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14190413/medium/4392b7a362152ed76cba1d457185835d.jpeg",
- "joined": "2020-04-04 14:40:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13658603",
- "username": "JMCoquoz",
- "fullName": "JMCoquoz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13658603/medium/67649e4943de146146cee3deb99fae47.jpg",
- "joined": "2021-03-03 04:26:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14225506",
- "username": "hosegawa",
- "fullName": "Zlatko Divjakovski (hosegawa)",
- "avatarUrl": "https://www.gravatar.com/avatar/f02bfe0e0331e7f625e0c36b6c5f81d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-25 09:53:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14583810",
- "username": "andimuktih",
- "fullName": "andimuktih",
- "avatarUrl": "https://www.gravatar.com/avatar/dfc53b456c2c351eb35ef7fb96417c70?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 04:14:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13744749",
- "username": "matias.desalvo",
- "fullName": "matias.desalvo",
- "avatarUrl": "https://www.gravatar.com/avatar/32771b691306ed8b3debf34518df0bc6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 23:44:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968381",
- "username": "r.drechevych",
- "fullName": "r.drechevych",
- "avatarUrl": "https://www.gravatar.com/avatar/e13b00efd7269f75bdbea97cd54a80a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 15:28:16"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 70,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 441,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 33
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 659,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 123
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 517,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 100
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ky",
+ "name": "Kyrgyz",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 106,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 83,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14168049",
- "username": "jrpongaron08",
- "fullName": "Jayr Pongaron (jrpongaron08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14168049/medium/04e64cd4c99c87ae1674132ca79f12c2.jpeg",
- "joined": "2020-03-22 16:28:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14170883",
- "username": "Bruno.beee",
- "fullName": "Bronislav Babik (Bruno.beee)",
- "avatarUrl": "https://www.gravatar.com/avatar/d1c3fecc068064d1e4beab4b58f126c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 15:10:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968313",
- "username": "tetiana_marynevych",
- "fullName": "tetiana_marynevych",
- "avatarUrl": "https://www.gravatar.com/avatar/1aaab38dd670437be0be476bfac2d0cb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 14:48:45"
- },
- "languages": [
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 109,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13738699",
- "username": "ekkarat.w",
- "fullName": "เอกรัตน์ วารีสิงห์ (ekkarat.w)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13738699/medium/61352d9012049e663411138ce58e21bf.jpg",
- "joined": "2020-02-20 00:58:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14174333",
- "username": "i_SamAyorinde",
- "fullName": "i_SamAyorinde",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14174333/medium/69db42c4ac75229aecee4cb75dc8a444.jpg",
- "joined": "2020-03-26 12:00:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13730929",
- "username": "sahebkarami",
- "fullName": "sahebkarami",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13730929/medium/6b96168cdf21a2193efb9ead397222f0.jpeg",
- "joined": "2019-11-25 14:40:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13706399",
- "username": "ivan_pleva",
- "fullName": "Ivan Pleva (ivan_pleva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13706399/medium/af4d8f749b7fb15836378ad368ac7279.jpg",
- "joined": "2020-05-13 05:22:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13728695",
- "username": "toms049",
- "fullName": "Tom Stanek (toms049)",
- "avatarUrl": "https://www.gravatar.com/avatar/0bcedfa4e3dee63ee940c3006e936e0a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-16 15:54:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002775",
- "username": "Rupender",
- "fullName": "Rupander Parihar (Rupender)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002775/medium/864afd2b4afe01dab2454c7bcf9ab2e3.jpeg",
- "joined": "2021-11-14 05:17:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13714487",
- "username": "DarkSpace",
- "fullName": "DarkSpace",
- "avatarUrl": "https://www.gravatar.com/avatar/13f5d2754af68e865c6477536f0fb7cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 12:07:51"
- },
- "languages": [
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 117,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002839",
- "username": "TamerCrypto",
- "fullName": "TamerCrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/1f61b5365662bc43b222f31398f10204?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 06:49:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14185677",
- "username": "mojkripto_com",
- "fullName": "mojkripto_com",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14185677/medium/138fcdff5417707835c5e5c07482fc9c.jpg",
- "joined": "2020-04-02 03:23:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968049",
- "username": "gabrieleprinciotta",
- "fullName": "GABRIELE PRINCIOTTA (gabrieleprinciotta)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968049/medium/519b4e28fb779cfc1c1d51b34fd54331.jpeg",
- "joined": "2021-10-19 04:20:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14187621",
- "username": "gmramazan2500",
- "fullName": "Tim Robbins (gmramazan2500)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14187621/medium/9d6d31930ebd19343683e377a59f9b33.jpeg",
- "joined": "2020-04-03 00:29:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14224706",
- "username": "mbogatekin",
- "fullName": "mbogatekin",
- "avatarUrl": "https://www.gravatar.com/avatar/b0961f34d8217d18c5b21c2c78f0e81c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-04 17:35:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963559",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/27ff9e172200a784d36a59415c6c833d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 08:18:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14279850",
- "username": "GROOT.001",
- "fullName": "GROOT.001",
- "avatarUrl": "https://www.gravatar.com/avatar/b81f6a4e403736d7404c2a86f4594a5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-07 10:23:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14255228",
- "username": "Sheikhupuri",
- "fullName": "FiazAhmadOfficial (Sheikhupuri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14255228/medium/9f67e4b3a27e08d132193287ca15134e.png",
- "joined": "2020-05-13 17:29:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14247158",
- "username": "LeraP",
- "fullName": "LeraP",
- "avatarUrl": "https://www.gravatar.com/avatar/10851c51205218596235b7ae87050c0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-24 07:03:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959307",
- "username": "wang-hang",
- "fullName": "wang-hang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959307/medium/ac6b8c7ea8627cb810fb32234586369f.jpeg",
- "joined": "2021-10-12 02:28:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004003",
- "username": "yuukoOrSomething",
- "fullName": "Roger (yuukoOrSomething)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15004003/medium/3bff8d31ec06ab9b2bf51bc835db5335.jpeg",
- "joined": "2021-11-15 06:04:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959209",
- "username": "keshavkumarsharma28",
- "fullName": "Keshav Sharma (keshavkumarsharma28)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959209/medium/18135cb3474f839d3f344ff0da84cc54.jpeg",
- "joined": "2021-10-12 00:23:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959201",
- "username": "palixir",
- "fullName": "palixir",
- "avatarUrl": "https://www.gravatar.com/avatar/29207b9535b54afc358e6ee984592428?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 00:15:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13604472",
- "username": "kratos1325",
- "fullName": "Kratos16 (kratos1325)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13604472/medium/344388761ac2be39a4205c172f98d22b.jpg",
- "joined": "2021-01-09 22:23:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959159",
- "username": "chauhuyen",
- "fullName": "chauhuyen",
- "avatarUrl": "https://www.gravatar.com/avatar/03bed9fc17c3769ef5c134f387918edf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 23:21:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959007",
- "username": "ahmedsayd",
- "fullName": "ahmedsayd",
- "avatarUrl": "https://www.gravatar.com/avatar/32bb75b10b057fef3b8d714c5257c4c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 19:56:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14246454",
- "username": "mohammadkashefi",
- "fullName": "Mohammadkashefi Kashefi (mohammadkashefi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14246454/medium/04d38da0e9f3d315e189ce7cee1cb020.jpeg",
- "joined": "2020-05-07 23:23:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263290",
- "username": "UArslan",
- "fullName": "UArslan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263290/medium/f5d3394ec40bd808ab520f84833e31c5.jpg",
- "joined": "2021-01-20 02:03:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263922",
- "username": "yashasvi_yc7",
- "fullName": "yashasvi_yc7",
- "avatarUrl": "https://www.gravatar.com/avatar/c519ba215bd33a1bbd24c307f7459f85?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-19 10:59:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958943",
- "username": "asadim40",
- "fullName": "mohamad asadi (asadim40)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958943/medium/c61ff881e869c5fd253fb9de972bac09.jpeg",
- "joined": "2021-10-11 18:42:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004715",
- "username": "georgekal",
- "fullName": "georgekal",
- "avatarUrl": "https://www.gravatar.com/avatar/2b56da9c80ee228d2e317bf30aae89c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 18:53:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13599656",
- "username": "e2f_kr_c3",
- "fullName": "e2f_kr_c3",
- "avatarUrl": "https://www.gravatar.com/avatar/a3012f2dfcffdaf275b1e4275e48fe21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-01 18:23:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14272058",
- "username": "bmilesp",
- "fullName": "Brandon Plasters (bmilesp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14272058/medium/23be9b2dc3d716b1c771132246c8788c.jpeg",
- "joined": "2020-05-24 23:26:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14275888",
- "username": "mariewagnerova9",
- "fullName": "Marie Wagnerova (mariewagnerova9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14275888/medium/67bf5b9b0627cb2058e4901f298707f5.jpg",
- "joined": "2020-05-26 18:16:59"
- },
- "languages": [
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 329,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959549",
- "username": "Tungls1234",
- "fullName": "Tungls1234",
- "avatarUrl": "https://www.gravatar.com/avatar/278ca3266151c5d0368895000deda4c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 06:18:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14243680",
- "username": "Stivo",
- "fullName": "Stivo",
- "avatarUrl": "https://www.gravatar.com/avatar/eef31bae91b93f6e8095a3a1fe6a97bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 18:28:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14228158",
- "username": "Inna_Dubitska",
- "fullName": "Inna_Dubitska",
- "avatarUrl": "https://www.gravatar.com/avatar/d1c80ddfa24b20a6475dce2f4c758d2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-29 09:45:51"
- },
- "languages": [
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 275,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 60,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961515",
- "username": "Meeo35",
- "fullName": "Meeo35",
- "avatarUrl": "https://www.gravatar.com/avatar/4a0b210e6e4b454e442ca8598d904cbe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 18:47:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14228346",
- "username": "diana.oliinyk",
- "fullName": "Діана Борисівна Олійник (diana.oliinyk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14228346/medium/d9555d51d1ab043ffe811905d6b579ad.jpeg",
- "joined": "2020-04-30 05:45:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14230346",
- "username": "GiuliaTranslated",
- "fullName": "GiuliaTranslated",
- "avatarUrl": "https://www.gravatar.com/avatar/bd4ead8716afe8875c98fe671f3e1ede?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 09:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14231140",
- "username": "hwwhww",
- "fullName": "hwwhww",
- "avatarUrl": "https://www.gravatar.com/avatar/b7558e247c7eaaa8939d070481cee5ce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-28 22:52:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962725",
- "username": "Lemonmonki",
- "fullName": "Lemonmonki",
- "avatarUrl": "https://www.gravatar.com/avatar/98c7d56f3f2d41b03ada057eb8161ca9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-14 15:08:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14233172",
- "username": "oriolfp",
- "fullName": "oriolfp",
- "avatarUrl": "https://www.gravatar.com/avatar/7e72a02548d1af98f74c8226f3221afe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-29 14:46:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14238712",
- "username": "akadende",
- "fullName": "akadende",
- "avatarUrl": "https://www.gravatar.com/avatar/ca05dc4d8c026f971514e260171b99b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 14:25:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13619757",
- "username": "0101010101",
- "fullName": "0101010101",
- "avatarUrl": "https://www.gravatar.com/avatar/81ba7a099b6d6dd66b2f0161af097f4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-08 07:29:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14238874",
- "username": "Arcy22",
- "fullName": "Arcy22",
- "avatarUrl": "https://www.gravatar.com/avatar/40a32cbb753b3e7be14d932e42c7a1ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-03 11:07:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242442",
- "username": "Phlinq",
- "fullName": "Phlinq",
- "avatarUrl": "https://www.gravatar.com/avatar/714b519cc703326a83bc486b9b61232c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-05 15:36:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961387",
- "username": "ssebastian210",
- "fullName": "Sebastian Simarro (ssebastian210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14961387/medium/30239862b4b97ec866dd3abd95c78c84.jpeg",
- "joined": "2021-10-13 13:55:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14239070",
- "username": "Berningheavy",
- "fullName": "Berning Heavy (Berningheavy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14239070/medium/8df8094279cdd6144c8335815e88cc0b.jpg",
- "joined": "2020-06-10 05:08:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14241142",
- "username": "LudiZHANG",
- "fullName": "Ludi (LudiZHANG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14241142/medium/7018d7959237cd0b1356ac97198316f9.jpg",
- "joined": "2021-05-05 17:14:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242124",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c233975a2d7b16086d437e0b08fed481?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-05 11:13:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960393",
- "username": "2paac9",
- "fullName": "2paac9",
- "avatarUrl": "https://www.gravatar.com/avatar/4d9b055e97b123b7ef8d49f8e660bb9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 19:56:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960185",
- "username": "Dastronom",
- "fullName": "Dastronom",
- "avatarUrl": "https://www.gravatar.com/avatar/5a40afc9325031176e9144bf2a958fc1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 15:37:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960079",
- "username": "iriosromani",
- "fullName": "Israel Rios (iriosromani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960079/medium/88069bbcacd3997ad1559f51fb38e564.jpeg",
- "joined": "2021-10-12 13:43:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725116",
- "username": "kanitha",
- "fullName": "kanitha",
- "avatarUrl": "https://www.gravatar.com/avatar/3ea660f399f8871e760c9d82862c0462?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 13:54:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869450",
- "username": "aivalf",
- "fullName": "aivalf",
- "avatarUrl": "https://www.gravatar.com/avatar/1818f988c6aca3ea5e39203491a8e27e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 22:32:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895026",
- "username": "anton.naugolnykh",
- "fullName": "Антон Наугольных (anton.naugolnykh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895026/medium/e4f30a2ccce272ca8dfbe444e2ef790f.png",
- "joined": "2021-08-25 06:25:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683202",
- "username": "awayoficial",
- "fullName": "Fabricio Caiaffa (awayoficial)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683202/medium/63607c8635fe07d6297cee28f31c7c1f.jpeg",
- "joined": "2021-03-25 10:45:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682604",
- "username": "iridiumcao",
- "fullName": "Iridium Cao (iridiumcao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682604/medium/295b82628496f3e3a7f2ed3c959078c1.jpeg",
- "joined": "2021-03-25 01:44:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764370",
- "username": "RivaSergio",
- "fullName": "RivaSergio",
- "avatarUrl": "https://www.gravatar.com/avatar/fcdaf3e9afb9e8a3e31562fc79984d61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 14:35:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682678",
- "username": "oleh.vasylenko",
- "fullName": "Oleh Vasylenko (oleh.vasylenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682678/medium/c3d204a707e43641e95f0d5db873474c.png",
- "joined": "2021-08-17 12:27:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682798",
- "username": "ElysianPool",
- "fullName": "ElysianPool",
- "avatarUrl": "https://www.gravatar.com/avatar/e0210c4543a1632065f2bfd4d0384d65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 05:36:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682884",
- "username": "stigrein",
- "fullName": "stigrein",
- "avatarUrl": "https://www.gravatar.com/avatar/828d66cc20e43a047c11a35ef009b85c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 07:01:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763728",
- "username": "polowong5",
- "fullName": "wong polo (polowong5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763728/medium/d720628694a0e5f789553c9cf1526327.jpeg",
- "joined": "2021-05-19 07:46:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683036",
- "username": "gkpo",
- "fullName": "gkpo",
- "avatarUrl": "https://www.gravatar.com/avatar/ff2a32c83ea1a0826c90cb1ab8d1eca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 08:40:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763166",
- "username": "coencoem",
- "fullName": "Wiro Dharmo (coencoem)",
- "avatarUrl": "https://www.gravatar.com/avatar/ef0936564d2d522606fd250f0700ecd0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 21:59:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683070",
- "username": "zhaoke_supers",
- "fullName": "zhaoke_supers",
- "avatarUrl": "https://www.gravatar.com/avatar/60c16708c87ba5ae2633ba1d82dc2d61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 09:10:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683242",
- "username": "hasandaii1363",
- "fullName": "حسن دایی (hasandaii1363)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683242/medium/67cfc87d7e937db0c8db8cbb3f64d150.jpg",
- "joined": "2021-03-25 11:24:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682252",
- "username": "gamno85",
- "fullName": "gamno85",
- "avatarUrl": "https://www.gravatar.com/avatar/f3cbb62d134e421203f9bd1cc923cccf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 17:25:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762488",
- "username": "4191235872",
- "fullName": "4191235872",
- "avatarUrl": "https://www.gravatar.com/avatar/f1e8401423d8f23d8aa8dd3fccf961db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 10:27:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762352",
- "username": "Atefemoe",
- "fullName": "Atef Emor (Atefemoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762352/medium/e7ee7b58349b6ed082fc8fdc8409d13f.jpg",
- "joined": "2021-05-18 09:03:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683350",
- "username": "arsh13singh",
- "fullName": "Arshdeep Singh (arsh13singh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683350/medium/92cd23aa6725394bbd947f6ac28ad653.jpeg",
- "joined": "2021-03-25 12:52:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683432",
- "username": "danakotech",
- "fullName": "DANAKO (danakotech)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683432/medium/fe93bb3304a25452f6f9a3975888a6fe.png",
- "joined": "2021-03-25 13:52:53"
- },
- "languages": [
+ "language": {
+ "id": "mn",
+ "name": "Mongolian",
+ "tmSavings": 0,
+ "preTranslate": 138,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 24
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761822",
- "username": "PomaPoma1",
- "fullName": "PomaPoma1",
- "avatarUrl": "https://www.gravatar.com/avatar/479a18bfde9075f956427ebd61645f9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 01:24:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761818",
- "username": "ilogyk",
- "fullName": "ilogyk",
- "avatarUrl": "https://www.gravatar.com/avatar/0247ebbb97cc06d67eece0dfab3bfd00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 01:15:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761562",
- "username": "Klodbeer",
- "fullName": "Klodbeer",
- "avatarUrl": "https://www.gravatar.com/avatar/19f68ab96ec38c94649343c8fb1a87a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 18:24:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761440",
- "username": "Azael.",
- "fullName": "Azael.",
- "avatarUrl": "https://www.gravatar.com/avatar/5185f1e89dbda1e6c6e031f9c0d4b92e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 16:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761026",
- "username": "Dagestan13",
- "fullName": "Dagestan13",
- "avatarUrl": "https://www.gravatar.com/avatar/343224e689e6d7b63884741fdeb69ca7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 11:22:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682300",
- "username": "BayramDemir",
- "fullName": "BayramDemir",
- "avatarUrl": "https://www.gravatar.com/avatar/d715cbd28553e0b4fcb8fbfee4ac701e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 18:11:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681916",
- "username": "slh.ylmaz1903",
- "fullName": "Salih YILMAZ (slh.ylmaz1903)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681916/medium/149926a15c6396eab80c64a0372eb1e5.jpg",
- "joined": "2021-03-24 12:21:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683662",
- "username": "bejarano-tech",
- "fullName": "Frederick Bejarano (bejarano-tech)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683662/medium/00761367069ba0e579d3450d0a66227f.png",
- "joined": "2021-03-25 18:22:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768562",
- "username": "Egor13245",
- "fullName": "Egor13245",
- "avatarUrl": "https://www.gravatar.com/avatar/decdd1207ec8148060d066f85928d862?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-22 15:59:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770008",
- "username": "smsa",
- "fullName": "smsa",
- "avatarUrl": "https://www.gravatar.com/avatar/d6c924918457853266e8a35122734428?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 20:42:49"
- },
- "languages": [
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 79,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769932",
- "username": "SilverJanoi",
- "fullName": "Eren Durmuş (SilverJanoi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769932/medium/24314d73e1b8d17279d5d019f277f0c1.jpeg",
- "joined": "2021-05-23 18:50:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679312",
- "username": "SkullsMoney",
- "fullName": "SkullsMoney",
- "avatarUrl": "https://www.gravatar.com/avatar/0eafe53ff4fa865818fc30a5b7f7216b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 19:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679562",
- "username": "Flayzer",
- "fullName": "Flayzer",
- "avatarUrl": "https://www.gravatar.com/avatar/7c9d630a8c75011bd64e27d3747d70b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 01:12:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769646",
- "username": "Kingline001",
- "fullName": "Kingline001",
- "avatarUrl": "https://www.gravatar.com/avatar/068cd0381288b2ddc4e600b96f5d0d47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 13:58:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769540",
- "username": "yanning33528",
- "fullName": "小林嘎 (yanning33528)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769540/medium/c8c6c3a24e612a920d353cc69b1166f1.png",
- "joined": "2021-05-23 12:13:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679648",
- "username": "ietanothr",
- "fullName": "ietanothr",
- "avatarUrl": "https://www.gravatar.com/avatar/c7546bd4eed1ad93e5395ee579e5f6a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 03:06:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769062",
- "username": "StellaSoluti",
- "fullName": "StellaSoluti",
- "avatarUrl": "https://www.gravatar.com/avatar/281ca3f2745f8da888c13ab1d009fcef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 08:39:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768574",
- "username": "mrezahassani",
- "fullName": "mrezahassani",
- "avatarUrl": "https://www.gravatar.com/avatar/87e93a46a2331f12bc150ec11ae5ee54?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-22 16:14:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681180",
- "username": "Iris.ni",
- "fullName": "Iris.ni",
- "avatarUrl": "https://www.gravatar.com/avatar/5a23454a854df7c381c705a1a373ce94?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 02:03:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765916",
- "username": "nsuki",
- "fullName": "Mert Gülmüş (nsuki)",
- "avatarUrl": "https://www.gravatar.com/avatar/f18495d1aba6ae6350fa10a1d87847f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 15:31:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681206",
- "username": "sAyW1n",
- "fullName": "sAyW1n",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681206/medium/a995c65111c2432106e015be1dd15262.jpeg",
- "joined": "2021-03-24 02:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767746",
- "username": "oleksii.n.start",
- "fullName": "Oleksii Nesterenko (oleksii.n.start)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767746/medium/184824239fa1c4e35057bd68ef36d801.png",
- "joined": "2021-05-22 01:24:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767676",
- "username": "julianocbmfc",
- "fullName": "Juliano Barcelos (julianocbmfc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767676/medium/788df8caf2776168c8c27cfa6b801cb0.jpeg",
- "joined": "2021-05-22 00:07:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767556",
- "username": "JenMerino",
- "fullName": "Jen (JenMerino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767556/medium/8e9b6fc5b596521ce4e332d78fd7df40.jpeg",
- "joined": "2021-05-21 21:12:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767322",
- "username": "Matcenko",
- "fullName": "Pavel Matsenko (Matcenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767322/medium/660180b8eea7b731dad55d908dbb6b3f.jpeg",
- "joined": "2021-05-21 16:14:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681390",
- "username": "wanbowen001",
- "fullName": "Bowen (wanbowen001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681390/medium/278cbc02a668c6979af019c43b2fdcd6.png",
- "joined": "2021-03-24 05:04:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681434",
- "username": "hasanbc45",
- "fullName": "Hasan Bağcı (hasanbc45)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681434/medium/7ebfbebf8522f36e702a6d88888993d8.jpg",
- "joined": "2021-03-24 05:38:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766920",
- "username": "Trinhquan1988",
- "fullName": "Trinhquan1988",
- "avatarUrl": "https://www.gravatar.com/avatar/5cf9a2ff70e8524d5e747dc410cfb79e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-21 09:53:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681678",
- "username": "jaalce",
- "fullName": "jaalce",
- "avatarUrl": "https://www.gravatar.com/avatar/c0c4f5e7bf73ca1aec7a70bcc9b1576b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 08:54:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766176",
- "username": "Kussov",
- "fullName": "Kussov",
- "avatarUrl": "https://www.gravatar.com/avatar/2ca94e6cc967b1cc45808fa81b5b5ba3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 20:23:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760876",
- "username": "Flipper98rus",
- "fullName": "Flipper98rus",
- "avatarUrl": "https://www.gravatar.com/avatar/f287e36edaf044d5cc1fefcd8aea59fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 09:38:57"
- },
- "languages": [
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 1474,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 358
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683986",
- "username": "dommedrc",
- "fullName": "Sara Cavalheiro (dommedrc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683986/medium/edbbc57bc2284daca2e311e5bb99c41e.jpg",
- "joined": "2021-03-26 01:54:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770168",
- "username": "imdm",
- "fullName": "Deming Zhu (imdm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14770168/medium/ae80ab75acd7aa5b7b81f56b7512d581.jpeg",
- "joined": "2021-05-24 01:19:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690008",
- "username": "Vikatoda",
- "fullName": "Vikatoda",
- "avatarUrl": "https://www.gravatar.com/avatar/6ffdc1f268dddeb633800bff31151707?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 09:54:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688754",
- "username": "gheize",
- "fullName": "gheize",
- "avatarUrl": "https://www.gravatar.com/avatar/1ab9f51464ddc2ad8b8b94fcc9fddd76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 13:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689068",
- "username": "thamer.ald",
- "fullName": "Thamer al-d (thamer.ald)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689068/medium/c15bc4a2d6a8da495882fb080dfea8e3.jpeg",
- "joined": "2021-03-29 18:21:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689178",
- "username": "alicezhang2021",
- "fullName": "alicezhang2021",
- "avatarUrl": "https://www.gravatar.com/avatar/3bf4a368dcf7ad0f2a39399951d13f8e?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 02:03:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755436",
- "username": "asaddassar",
- "fullName": "Grata (asaddassar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755436/medium/4690deb0429bf1df28828ce2991751a4.jpeg",
- "joined": "2021-05-14 02:16:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755264",
- "username": "ld041413017828",
- "fullName": "Lissette Diaz (ld041413017828)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755264/medium/54b891ad2ec290233ab692f4a85ececb.png",
- "joined": "2021-05-13 22:44:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754836",
- "username": "romicalcag",
- "fullName": "Romina Calcagno (romicalcag)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754836/medium/c063ae87900f2f006854bac4f42b7363.jpeg",
- "joined": "2021-05-13 15:31:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754716",
- "username": "BancaPublica",
- "fullName": "Jaime (BancaPublica)",
- "avatarUrl": "https://www.gravatar.com/avatar/bf0eef64a305251365973d87ee7657ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 14:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754612",
- "username": "rodrigovelizcampos",
- "fullName": "rodrigovelizcampos",
- "avatarUrl": "https://www.gravatar.com/avatar/5c8adaa4089bdbb79cf86f0e810d81cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 12:48:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689806",
- "username": "VojtaKrecek",
- "fullName": "VojtaKrecek",
- "avatarUrl": "https://www.gravatar.com/avatar/015da5e3fc77d59d3817a8709ea1321a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 07:45:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753756",
- "username": "BryonLee",
- "fullName": "BryonLee",
- "avatarUrl": "https://www.gravatar.com/avatar/8df26871e50bd11f2b1c66e374e0595e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 00:05:38"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 8,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14756984",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/37c99bb5a5f2017e53fd65993bd76cee?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 15:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690416",
- "username": "Ramin7777",
- "fullName": "Ramin7777",
- "avatarUrl": "https://www.gravatar.com/avatar/cc46d03758411b9cc170b29af4479c5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 15:40:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753626",
- "username": "brany",
- "fullName": "brany",
- "avatarUrl": "https://www.gravatar.com/avatar/b8fc70088ef40a5cd6796258d392468f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 21:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690682",
- "username": "Lolita4ka",
- "fullName": "Lolita4ka",
- "avatarUrl": "https://www.gravatar.com/avatar/48dfe119175130ab301ad3fc07d8d048?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 22:02:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690686",
- "username": "AYJarvis",
- "fullName": "Jarvis (AYJarvis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690686/medium/3fde7d9e8fadd4ee7146bfa61bf0dd5c.jpg",
- "joined": "2021-03-30 22:09:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690860",
- "username": "wihdatulsakina",
- "fullName": "pengagum langit (wihdatulsakina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690860/medium/c57268f01ef83ec1685696c8e1a463eb.jpeg",
- "joined": "2021-03-31 01:53:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752662",
- "username": "skywong728",
- "fullName": "skywong728",
- "avatarUrl": "https://www.gravatar.com/avatar/b54d3b1e7d0e9b79e2bf0a0c7cfe5bd8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 08:17:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692142",
- "username": "m19",
- "fullName": "m19",
- "avatarUrl": "https://www.gravatar.com/avatar/2d53b57bf4f7f5b776c3869b6dbdcdf8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 18:11:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752278",
- "username": "realcoooool",
- "fullName": "null null (realcoooool)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752278/medium/1e24ce45bd31485264dc3c5d2def9d90.jpeg",
- "joined": "2021-05-12 03:43:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752232",
- "username": "finboy2210",
- "fullName": "Коля Ки (finboy2210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752232/medium/bf75451f44d9d0d064aafd7103e08145.jpeg",
- "joined": "2021-05-12 03:03:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688430",
- "username": "dranna",
- "fullName": "dranna",
- "avatarUrl": "https://www.gravatar.com/avatar/caa146f687eff95577813b819a2b4b3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 09:02:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687884",
- "username": "moypc7",
- "fullName": "moypc7",
- "avatarUrl": "https://www.gravatar.com/avatar/9cf295b7ace647d91a54359159440d14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 01:25:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760586",
- "username": "floandy",
- "fullName": "Florian Krippner (floandy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760586/medium/57f87df59f24a82082b8210539f6e3c4.jpeg",
- "joined": "2021-05-17 05:38:39"
- },
- "languages": [
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 267,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 21
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758844",
- "username": "Oldleo76",
- "fullName": "Oldleo76",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758844/medium/011d0875b2d6dab274acc9e2d028dbfc.jpg",
- "joined": "2021-05-16 01:07:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760436",
- "username": "Samarth",
- "fullName": "Samarth",
- "avatarUrl": "https://www.gravatar.com/avatar/113b48269478627f239bdabbfd8c9f93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 03:51:38"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 670,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 118
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684966",
- "username": "Rolascoin",
- "fullName": "Rolando Dionisio Hernández (Rolascoin)",
- "avatarUrl": "https://www.gravatar.com/avatar/5328271dadedc708d2892c23c80be0d2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-26 14:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685086",
- "username": "alfredo.liardo",
- "fullName": "Alfredo Liardo (alfredo.liardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685086/medium/369baa78ad4be48d6b57d01db0104917.png",
- "joined": "2021-03-26 16:32:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685090",
- "username": "tonyherrera",
- "fullName": "tonyherrera",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685090/medium/4d43494a7f5ac560d21dffd1412e7a6e.jpg",
- "joined": "2021-03-26 16:32:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685356",
- "username": "shawncarnahan616",
- "fullName": "Shawn Carnahan (shawncarnahan616)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685356/medium/4e50a54e99afc9d66d8dc8f88e566289.jpeg",
- "joined": "2021-03-27 01:40:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759230",
- "username": "mojtabafazelee",
- "fullName": "مجتبی فاضلیث (mojtabafazelee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759230/medium/85e221e3f6d74ef8ff725baa0da4e36e.png",
- "joined": "2021-05-16 07:15:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685692",
- "username": "foundlios",
- "fullName": "founddlioss (foundlios)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685692/medium/6f6cf8eb96c7593dbdea37d052d18a60.jpg",
- "joined": "2021-03-27 08:16:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685708",
- "username": "Afred_the_great",
- "fullName": "Afred_the_great",
- "avatarUrl": "https://www.gravatar.com/avatar/d31b48d2e86c241637402d21d4d7bb31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 08:26:39"
- },
- "languages": [
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758900",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/49090229849f3c49d5049a1434605122?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 02:12:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758828",
- "username": "shiftcm",
- "fullName": "Shift CM (shiftcm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758828/medium/789fac20720b9fedb35242f98b6d37f0.jpeg",
- "joined": "2021-05-16 00:41:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687474",
- "username": "lakatosarpi8",
- "fullName": "Árpi Lakatos (lakatosarpi8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687474/medium/bfe1c1dca5c2c2f815a8c891d1ea27e3.jpeg",
- "joined": "2021-03-28 15:36:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685806",
- "username": "Maluspinzi",
- "fullName": "Maluspinzi",
- "avatarUrl": "https://www.gravatar.com/avatar/bc5ac3249a42f4ccb29cecd6c12b165c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 10:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758486",
- "username": "martinh2",
- "fullName": "martinh2",
- "avatarUrl": "https://www.gravatar.com/avatar/8110ea29ba7e021792151be9e17763ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 12:32:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685976",
- "username": "nr1db",
- "fullName": "nr1db",
- "avatarUrl": "https://www.gravatar.com/avatar/ffc9d9a5c4dcbfd7095821e4268cf89b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 13:14:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686458",
- "username": "Davideth",
- "fullName": "Davideth",
- "avatarUrl": "https://www.gravatar.com/avatar/ce13245afacc0d61d0059d89fbb2ddbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 23:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758114",
- "username": "sandsbai",
- "fullName": "sandsbai",
- "avatarUrl": "https://www.gravatar.com/avatar/5fe0e525079b61509b15de7f880e153a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 10:42:59"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 505,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 63
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 1308,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 169
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686632",
- "username": "Omon1996",
- "fullName": "Omon1996",
- "avatarUrl": "https://www.gravatar.com/avatar/f7a90b1fe7a207bf4c1c71fc0fd7ee6f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 02:46:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686712",
- "username": "helderlopes",
- "fullName": "helderlopes",
- "avatarUrl": "https://www.gravatar.com/avatar/a79bc7d9ade6a43bd105627313ab001b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 04:15:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757938",
- "username": "WuGi89",
- "fullName": "Wojciech Gebicki (WuGi89)",
- "avatarUrl": "https://www.gravatar.com/avatar/3c23fdb40027692ff48eeccc2750850a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 06:26:10"
- },
- "languages": [
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 145,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757860",
- "username": "hzpws",
- "fullName": "hzpws",
- "avatarUrl": "https://www.gravatar.com/avatar/c8fcc3a1a580329a970a57d9cc5708a1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 07:02:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757760",
- "username": "makshatsenko",
- "fullName": "makshatsenko",
- "avatarUrl": "https://www.gravatar.com/avatar/2485f32a34bd303fa6e0ffb75178dfd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 05:23:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770012",
- "username": "byAndreas",
- "fullName": "byAndreas",
- "avatarUrl": "https://www.gravatar.com/avatar/7c2d8bddf434753453cc85f0e67cef3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 20:37:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679290",
- "username": "franciscomarques",
- "fullName": "franciscomarques",
- "avatarUrl": "https://www.gravatar.com/avatar/3f2a9d36b9d139a042dc401341fdae84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 19:05:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692560",
- "username": "ghasem1997",
- "fullName": "ghasem1997",
- "avatarUrl": "https://www.gravatar.com/avatar/d63109791f3d5d752cd6110bcf956380?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 03:04:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666846",
- "username": "dharmikp1",
- "fullName": "dharmikp1",
- "avatarUrl": "https://www.gravatar.com/avatar/dc43bed04cfd86d1cb74bd31d667c522?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 21:56:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782118",
- "username": "morozov8707",
- "fullName": "Василий Морозов (morozov8707)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782118/medium/71fa0343fb0dc8062bb541b635b9a493.png",
- "joined": "2021-06-01 18:32:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781944",
- "username": "tg.hamoemxye",
- "fullName": "Rostislav Nikiforov (tg.hamoemxye)",
- "avatarUrl": "https://www.gravatar.com/avatar/f9c2a8650234834b6fdd930a5036d78e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 15:17:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781776",
- "username": "duyvt_123",
- "fullName": "duyvt_123",
- "avatarUrl": "https://www.gravatar.com/avatar/4fb74d6dc9f3018836c713b5fef6ca42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 12:34:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781616",
- "username": "hayato8088",
- "fullName": "Hayato Sato (hayato8088)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781616/medium/72713e9d193f0d5f97bab396820ca17a.png",
- "joined": "2021-06-01 10:30:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666524",
- "username": "sosixyu4yi",
- "fullName": "Соси Хуй (sosixyu4yi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666524/medium/011c9b43dfedf888e8365d57ffbdec61.jpg",
- "joined": "2021-03-13 14:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781418",
- "username": "Martha_Stein",
- "fullName": "Martha Stein (Martha_Stein)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781418/medium/1578d9e8f05c516c1bb985dd0580c4e8.jpeg",
- "joined": "2021-06-01 08:25:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666544",
- "username": "returndiego",
- "fullName": "Diego (returndiego)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666544/medium/5570573972948b1a213a707fba25576a.jpeg",
- "joined": "2021-03-13 14:43:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666636",
- "username": "stasbiskup",
- "fullName": "stasbiskup",
- "avatarUrl": "https://www.gravatar.com/avatar/a7b6d05be5b2423cef20062c615d7a4c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 16:21:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666792",
- "username": "motasem09",
- "fullName": "motasem09",
- "avatarUrl": "https://www.gravatar.com/avatar/842fe46bda78e40c8055d7bb933a446b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 20:26:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780966",
- "username": "umut-ay",
- "fullName": "Umut Kaan Işık (umut-ay)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780966/medium/f40dd13f50d7e4a2a2ad9294fe429bc6.jpeg",
- "joined": "2021-06-01 02:01:06"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 278,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 524,
+ "default": 15409,
+ "total": 15933
+ },
+ "targetTranslated": {
+ "tmMatch": 503,
+ "default": 14534,
+ "total": 15037
+ },
+ "translatedByMt": {
+ "tmMatch": 16,
+ "default": 0,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 256
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782574",
- "username": "Jaclyn_yjq",
- "fullName": "Jaclyn_yjq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782574/medium/4c7964fe21988781e8d2ce791c65dee0.jpg",
- "joined": "2021-06-02 03:08:01"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 76,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 26
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780880",
- "username": "arnoldo.lat",
- "fullName": "arnoldo.lat",
- "avatarUrl": "https://www.gravatar.com/avatar/b465c0d7ec2b8fdb93400d9e93585262?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 00:26:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780506",
- "username": "madhupuranik",
- "fullName": "Madhu S Puranik (madhupuranik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780506/medium/fcaf897c30258cd1a675a9d9210816a9.jpeg",
- "joined": "2021-05-31 16:07:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667214",
- "username": "Monika_crazy",
- "fullName": "Monika_crazy",
- "avatarUrl": "https://www.gravatar.com/avatar/16ef513610aaafe383e565b9b8c34a77?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 06:43:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667670",
- "username": "pabloviparea",
- "fullName": "Pablo Godoy (pabloviparea)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667670/medium/547312e015ec81a486267261130680bb.jpeg",
- "joined": "2021-03-14 13:34:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667862",
- "username": "lingxu0821",
- "fullName": "lingxu0821",
- "avatarUrl": "https://www.gravatar.com/avatar/640a130621a4c8b1db9ac60601d7dfc6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:25:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779764",
- "username": "Mar3s",
- "fullName": "Mario Yang (Mar3s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779764/medium/7bbdbc6cac3c460360fe5e1295a139b9.png",
- "joined": "2021-05-31 05:45:45"
- },
- "languages": [
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 15,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667876",
- "username": "liuname",
- "fullName": "Emanuil Stefanov Gaydarov (liuname)",
- "avatarUrl": "https://www.gravatar.com/avatar/9a4741aa89baea45008cceff1d48e32b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:38:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667884",
- "username": "ali_alsigad",
- "fullName": "ali_alsigad",
- "avatarUrl": "https://www.gravatar.com/avatar/b477e28e9b32bd5739de56b96c3c220f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:48:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779628",
- "username": "echo.wang9192",
- "fullName": "echo wang (echo.wang9192)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779628/medium/d2ecefc415ceccd7755167fc332eb6c4.png",
- "joined": "2021-06-23 05:28:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782486",
- "username": "Parachute",
- "fullName": "Parachute",
- "avatarUrl": "https://www.gravatar.com/avatar/a362d2974306319eb6209c67123f775b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-02 01:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782800",
- "username": "dongfengg19980930",
- "fullName": "FENG GUITAR (dongfengg19980930)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782800/medium/f1e8ed09f992269795a28e1a776bfc63.jpeg",
- "joined": "2021-06-02 06:03:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668504",
- "username": "Nefertysa",
- "fullName": "Nefertysa",
- "avatarUrl": "https://www.gravatar.com/avatar/675f361fa49bc0880fc4b5ca96ebd5b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 05:38:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663902",
- "username": "Siy27",
- "fullName": "Siy27",
- "avatarUrl": "https://www.gravatar.com/avatar/b94f9fa65859ae077b875f4c959adc3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 17:50:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787744",
- "username": "ZLJ165",
- "fullName": "ZLJ165",
- "avatarUrl": "https://www.gravatar.com/avatar/2df29854a6f98dae5a044f3489f05323?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 20:45:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787116",
- "username": "Mustang",
- "fullName": "Mustang",
- "avatarUrl": "https://www.gravatar.com/avatar/21c1c7ddcdf4d1d9f54d8673035aba1d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 07:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660464",
- "username": "bebarsbjadough",
- "fullName": "BEBARS (bebarsbjadough)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660464/medium/4dc82d0601a4934c302424b4947709e1.jpeg",
- "joined": "2021-03-09 13:20:02"
- },
- "languages": [
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 111,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786740",
- "username": "szwangyuanjie",
- "fullName": "王袁杰 (szwangyuanjie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786740/medium/e60a7723bf81e1ec3d888e173a0f6052.jpeg",
- "joined": "2021-06-05 00:07:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14661062",
- "username": "patc",
- "fullName": "Patrick Cao (patc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14661062/medium/7c1f28efe49efaf00af7082ef7591046.png",
- "joined": "2021-03-10 00:26:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786568",
- "username": "barabara54b",
- "fullName": "Bara Barann (barabara54b)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786568/medium/28bb342744a64bff6c38e2e99c97a1ee.png",
- "joined": "2021-06-05 02:13:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662172",
- "username": "qp",
- "fullName": "qp",
- "avatarUrl": "https://www.gravatar.com/avatar/f1e6d4721d6ef7b5ad70a36c28876994?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 13:51:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662518",
- "username": "malikhan",
- "fullName": "malikhan",
- "avatarUrl": "https://www.gravatar.com/avatar/d2a3abcec873bc191ca69894fa5d5e9f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 20:17:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663288",
- "username": "AssetGrav",
- "fullName": "AssetGrav",
- "avatarUrl": "https://www.gravatar.com/avatar/be2b55f80d47ddaef47a237cc819441a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 08:58:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785458",
- "username": "ReturnWTF",
- "fullName": "wangchuang (ReturnWTF)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785458/medium/e83fd1082d399556b9c9dc3a956046c5.jpeg",
- "joined": "2021-06-04 03:27:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665348",
- "username": "LQS_PTBR_REV",
- "fullName": "LQS_PTBR_REV",
- "avatarUrl": "https://www.gravatar.com/avatar/cda18561180024c2ec6b0ba1459d5750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:48:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785200",
- "username": "JoSaint22",
- "fullName": "JoSaint22",
- "avatarUrl": "https://www.gravatar.com/avatar/6dea88dd0e14ef8236e6557fb5d99cba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 22:02:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664062",
- "username": "mytyzzz",
- "fullName": "Gao Patrick (mytyzzz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664062/medium/8cec923db7685418ff655d408172d60e.png",
- "joined": "2021-03-11 21:29:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784812",
- "username": "motxx",
- "fullName": "moti (motxx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784812/medium/7ddb99d66ba8a59e09d05bbcf9c49887.png",
- "joined": "2021-06-03 13:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784788",
- "username": "Matburnx",
- "fullName": "Matburnx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784788/medium/c6e248018a668c2334d68bf2cee929d4.png",
- "joined": "2021-06-03 13:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664402",
- "username": "alex_1",
- "fullName": "alex_1",
- "avatarUrl": "https://www.gravatar.com/avatar/6e97cd91173b377f7ec419cce9b55c14?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 03:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784442",
- "username": "HaloEric",
- "fullName": "HaloEric",
- "avatarUrl": "https://www.gravatar.com/avatar/919702c1532616a88d4990268af2386d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 08:54:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664526",
- "username": "genki1246",
- "fullName": "su zu (genki1246)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664526/medium/e44531d52517b4b3d7690a3007724942.png",
- "joined": "2021-03-12 05:46:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665064",
- "username": "AdesGod",
- "fullName": "AdesGod",
- "avatarUrl": "https://www.gravatar.com/avatar/80ed072114c61d96685504d3ba997a06?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 11:50:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665264",
- "username": "Cllkvls02",
- "fullName": "Cllkvls02",
- "avatarUrl": "https://www.gravatar.com/avatar/462b5aa0863e2423b58b1bcb0f96bf9a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 15:13:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665320",
- "username": "LQS_PTB_RT",
- "fullName": "LQS_PTB_RT",
- "avatarUrl": "https://www.gravatar.com/avatar/e2e1ec217b4400ae69ce30f94b999250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:18:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667996",
- "username": "Argys199",
- "fullName": "Volkova Irina (Argys199)",
- "avatarUrl": "https://www.gravatar.com/avatar/bed9386d89bf0197e2e80d3a9fea3dd8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 18:40:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668592",
- "username": "qq787241930",
- "fullName": "qq787241930",
- "avatarUrl": "https://www.gravatar.com/avatar/0f76bcc6f46fb5b22978785a58711e15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 07:07:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678852",
- "username": "Gui.Carmona",
- "fullName": "Gui.Carmona",
- "avatarUrl": "https://www.gravatar.com/avatar/4772ea0b1edae561314a4da7a5437e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 12:01:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774118",
- "username": "reabetsoe",
- "fullName": "reabetsoe",
- "avatarUrl": "https://www.gravatar.com/avatar/11096cf8c5098409fa8d49483be4f84a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 16:54:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775478",
- "username": "massimo.renzi.serviziauto.it",
- "fullName": "Massimo Renzi (massimo.renzi.serviziauto.it)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775478/medium/d7f3ec6247cbe28f330bb49eeb421584.png",
- "joined": "2021-05-27 14:41:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775170",
- "username": "sy.199.as",
- "fullName": "احمد مجدمي (sy.199.as)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775170/medium/2db7266809e5769a4057c423167dedc6.jpeg",
- "joined": "2021-05-27 10:34:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674492",
- "username": "imTeMPe",
- "fullName": "imTeMPe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674492/medium/3054f05c640f03e25505c8d7743460b9.png",
- "joined": "2021-03-19 08:26:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674826",
- "username": "zi75no",
- "fullName": "Mustafa Ramadan (zi75no)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674826/medium/86f9caf400f5d6b556b5a768bd5355fc.jpeg",
- "joined": "2021-03-19 12:27:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774728",
- "username": "matyukhin04",
- "fullName": "М М (matyukhin04)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774728/medium/29acb7ec37f7d43284d880ce09e68776.png",
- "joined": "2021-05-27 04:52:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675696",
- "username": "onradeog",
- "fullName": "onradeog",
- "avatarUrl": "https://www.gravatar.com/avatar/456ca5b725945fcdfb9d0055a809fb6b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 06:47:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676008",
- "username": "rodney.sven",
- "fullName": "Rodney Sven Copperfield (rodney.sven)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14676008/medium/3889557902ff19f570c74d2a86429e48.jpeg",
- "joined": "2021-03-20 11:20:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676020",
- "username": "jtrezza",
- "fullName": "jtrezza",
- "avatarUrl": "https://www.gravatar.com/avatar/8568ec87016d9cd44e807f313630ed8c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 11:33:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774352",
- "username": "Malyutin",
- "fullName": "Malyutin",
- "avatarUrl": "https://www.gravatar.com/avatar/ddae53151985e333b38ef4a9e0e7f327?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 22:06:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676184",
- "username": "Max.Almonta",
- "fullName": "Max.Almonta",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14676184/medium/38882f8247dae20359d65676e5250ff8.jpg",
- "joined": "2021-03-20 14:06:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674150",
- "username": "jimmyBell",
- "fullName": "Leonardo Medellin (jimmyBell)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674150/medium/336fc2ddcf60b8bd85d76e83ff750f5d.jpg",
- "joined": "2021-03-19 03:49:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773468",
- "username": "limin.yan.cs",
- "fullName": "Yan LiMin (limin.yan.cs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773468/medium/4155ab1e68774a89fe4a7be36a66c641.png",
- "joined": "2021-05-26 07:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676228",
- "username": "rnroxas",
- "fullName": "rnroxas",
- "avatarUrl": "https://www.gravatar.com/avatar/84f3527c849f92e56adeee737306847d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 14:50:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676530",
- "username": "1657822872",
- "fullName": "1657822872",
- "avatarUrl": "https://www.gravatar.com/avatar/4173672c66c464f5e7f485b9b611415f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 20:39:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773014",
- "username": "tp8295452",
- "fullName": "Hieucandy (tp8295452)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773014/medium/8802fa2974c858a3af63fd7949e4a958.jpeg",
- "joined": "2021-05-26 02:07:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14772756",
- "username": "antoniodejesus",
- "fullName": "antoniodejesus",
- "avatarUrl": "https://www.gravatar.com/avatar/173846750cbe8709a446a51849944766?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 19:18:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678284",
- "username": "Majidkh",
- "fullName": "Majidkh",
- "avatarUrl": "https://www.gravatar.com/avatar/c212bc56a52f0ed30c1990c993312118?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 05:30:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771984",
- "username": "killermank",
- "fullName": "killermank",
- "avatarUrl": "https://www.gravatar.com/avatar/55a71960177c24670504919684ad714f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 07:48:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678370",
- "username": "Camus",
- "fullName": "Camus",
- "avatarUrl": "https://www.gravatar.com/avatar/73fe07287ed73f37488e355b62fd9496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 06:33:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678386",
- "username": "hassan.omar62",
- "fullName": "Hassan Abou Elsoud (hassan.omar62)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678386/medium/94ba277ad910db039c6005ec005e1e15.jpeg",
- "joined": "2021-03-22 06:41:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674182",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/e740095e453745cfd59548e865726bc1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 04:22:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775956",
- "username": "Leruk",
- "fullName": "Timur Pikovets (Leruk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775956/medium/cac7cd7eb165362b9d35654f1c932586.png",
- "joined": "2021-05-28 02:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668990",
- "username": "alejandro_elbaz",
- "fullName": "alejandro_elbaz",
- "avatarUrl": "https://www.gravatar.com/avatar/e5f001a63de9be6ac33a6e1b82ca27fc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 12:24:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671358",
- "username": "Byczke",
- "fullName": "Byczke",
- "avatarUrl": "https://www.gravatar.com/avatar/a92b4cb6808b81788f58f9aa6c42945f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 13:18:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669234",
- "username": "rahumada22",
- "fullName": "Rodrigo Ahumada (rahumada22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669234/medium/f54888c89d5f6c887cb140abcb841398.jpeg",
- "joined": "2021-03-15 16:06:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669576",
- "username": "napiyonulas",
- "fullName": "napiyonulas",
- "avatarUrl": "https://www.gravatar.com/avatar/4099b0e05279ac7e7479180cac89ca02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 22:07:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670202",
- "username": "FrancineC",
- "fullName": "FrancineC",
- "avatarUrl": "https://www.gravatar.com/avatar/5c975727e32676668019ec530531753d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 10:18:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670242",
- "username": "shortarrow",
- "fullName": "shortarrow",
- "avatarUrl": "https://www.gravatar.com/avatar/bc2f210e572668493a07a486af754c84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 10:39:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670454",
- "username": "20180505",
- "fullName": "20180505",
- "avatarUrl": "https://www.gravatar.com/avatar/7b2791e417565c2d378aae6dc810783e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 13:26:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670572",
- "username": "truongduy2712",
- "fullName": "Duy Nguyen (truongduy2712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14670572/medium/6dc7175805ec5e6a69ab575c172a1479.jpeg",
- "joined": "2021-03-16 14:59:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670620",
- "username": "salih.acgl",
- "fullName": "salih.acgl",
- "avatarUrl": "https://www.gravatar.com/avatar/41bc4f0d873db64dce4ec409acdd7a1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 15:43:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670632",
- "username": "Nikho",
- "fullName": "Nikho",
- "avatarUrl": "https://www.gravatar.com/avatar/f0cf999f4be3dd4dd7ba7e196ad66f38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 15:48:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670862",
- "username": "Ahelaly",
- "fullName": "Ahelaly",
- "avatarUrl": "https://www.gravatar.com/avatar/eabb2d35fef421afa26220a5f648a324?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 20:06:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671576",
- "username": "An_nas",
- "fullName": "An_nas",
- "avatarUrl": "https://www.gravatar.com/avatar/ca9bd92f42b9024e0e65dcbf9c7d145e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 08:42:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776226",
- "username": "feistar",
- "fullName": "Fei Wen (feistar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14776226/medium/5e0abce0a8f875b0a4352eed7ef2067b.jpeg",
- "joined": "2021-05-28 06:09:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778638",
- "username": "Aiyaya.Zihan",
- "fullName": "Aiyaya.Zihan",
- "avatarUrl": "https://www.gravatar.com/avatar/c7b333dd9a8c7cc46bb87bf28c0a7e10?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 09:10:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672466",
- "username": "maszov",
- "fullName": "Daniel Barajas (maszov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14672466/medium/6b6e3e0cf1f24c4c097aea83311d8391.jpeg",
- "joined": "2021-03-17 20:58:08"
- },
- "languages": [
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 107,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672644",
- "username": ".RoneyPereirapaulain30",
- "fullName": ".RoneyPereirapaulain30",
- "avatarUrl": "https://www.gravatar.com/avatar/1761985f313cf866553ea4110ab2d31c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 01:42:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672686",
- "username": "nikhusa",
- "fullName": "nikhusa",
- "avatarUrl": "https://www.gravatar.com/avatar/3d4510d3ec06bd67cf4029fbe4c86459?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 02:46:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672768",
- "username": "LQS_ES_ES_Yannick",
- "fullName": "LQS_ES_ES_Yannick",
- "avatarUrl": "https://www.gravatar.com/avatar/d5391a45754e143506d6169275ea6d2d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 04:19:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777620",
- "username": "luyu7559",
- "fullName": "xianwu lu (luyu7559)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777620/medium/054bf3002d2dc5fdf1049b8f8a6c0b6f.jpeg",
- "joined": "2021-05-29 10:07:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777356",
- "username": "AleksanderU",
- "fullName": "AleksanderU",
- "avatarUrl": "https://www.gravatar.com/avatar/9bc05e7e7f73fbb6c8f9d06f623d0910?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-29 04:35:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673064",
- "username": "broodjebrie",
- "fullName": "broodjebrie",
- "avatarUrl": "https://www.gravatar.com/avatar/4487a5c366349463fb74e27c06c2e427?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 08:05:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776892",
- "username": "Juampe",
- "fullName": "Juan Pedro González (Juampe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14776892/medium/ed93a942f76be8907e623f5824f16e9b.jpeg",
- "joined": "2021-05-28 16:51:19"
- },
- "languages": [
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 145,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673654",
- "username": "mateo200",
- "fullName": "mateo200",
- "avatarUrl": "https://www.gravatar.com/avatar/b39256d38e9841f48a0bb8eda00ea567?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 16:36:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692222",
- "username": "navat",
- "fullName": "navat",
- "avatarUrl": "https://www.gravatar.com/avatar/30695204273d763ce009b14687736f11?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 19:38:20"
- },
- "languages": [
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 59,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692762",
- "username": "kravtsovnd08",
- "fullName": "Lanshelot Ку (kravtsovnd08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14692762/medium/4534eac3b38ad07800abf9acc883ed10.jpeg",
- "joined": "2021-04-01 05:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660096",
- "username": "Simple-Tory",
- "fullName": "Simple-Tory",
- "avatarUrl": "https://www.gravatar.com/avatar/e6791a4d6808986b81556ac01fab39f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 08:45:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715238",
- "username": "woryakarimi7995",
- "fullName": "وریا کریمی (woryakarimi7995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715238/medium/9574e9228d0a3c841402b47b24ade382.jpg",
- "joined": "2021-04-17 02:58:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733694",
- "username": "liugy",
- "fullName": "liugy",
- "avatarUrl": "https://www.gravatar.com/avatar/ee84f1f97a6a977fb3e4b526cccfc70b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 00:30:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733556",
- "username": "chernymamba",
- "fullName": "chernymamba",
- "avatarUrl": "https://www.gravatar.com/avatar/ac1de2ebcc370eaac642897a460d901e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 20:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713532",
- "username": "Espn",
- "fullName": "Espn",
- "avatarUrl": "https://www.gravatar.com/avatar/00fa4a281618b853eaef2c6481ee9ff7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 22:42:48"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 468,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733500",
- "username": "Ehsan1985",
- "fullName": "Ehsan1985",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733500/medium/7ee27652961f1750b613dae1397202b1.jpg",
- "joined": "2021-04-30 19:11:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733382",
- "username": "volkan2",
- "fullName": "volkan2",
- "avatarUrl": "https://www.gravatar.com/avatar/577aace7bd128ec8342b6c47c401e604?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 16:22:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713644",
- "username": "rizv033",
- "fullName": "rizv033",
- "avatarUrl": "https://www.gravatar.com/avatar/89d5cc937d98db6813966b32073e282b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:02:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713656",
- "username": "jeffersonqs",
- "fullName": "jeffersonqs",
- "avatarUrl": "https://www.gravatar.com/avatar/2d3c9b727f4415e178a76ac7e2ec517a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:11:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714742",
- "username": "medved2940",
- "fullName": "Миша Колбасов (medved2940)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714742/medium/84509228b3f68874da3bb8089ee82ec8.jpg",
- "joined": "2021-04-16 14:48:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714940",
- "username": "2-hill",
- "fullName": "2-hill",
- "avatarUrl": "https://www.gravatar.com/avatar/4faf6f5f29f8583d0337617a6fcdb000?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 18:37:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715364",
- "username": "ethanglezbarreto",
- "fullName": "ETHANGB González (ethanglezbarreto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715364/medium/ba72b5832f36c2daf1c95a751c15b32d.jpg",
- "joined": "2021-04-17 05:44:20"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 1070,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 181
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734234",
- "username": "bangbh",
- "fullName": "Bohyun Bang (bangbh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734234/medium/bf059263d9072bed946895eda4d418ec.jpeg",
- "joined": "2021-05-01 11:27:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715694",
- "username": "faresallan",
- "fullName": "國王FARES (faresallan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715694/medium/8145f1cd9b6908d9e96233abac00e53f.jpeg",
- "joined": "2021-04-17 12:02:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715830",
- "username": "robbisg",
- "fullName": "robbisg",
- "avatarUrl": "https://www.gravatar.com/avatar/0c2e75f7e279b1132a4cf1e49075b0a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 14:20:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715874",
- "username": "thanhtiktok",
- "fullName": "thanhtiktok",
- "avatarUrl": "https://www.gravatar.com/avatar/c8b96071ea6b74d33f3a7715cc8b9228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 14:57:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716180",
- "username": "LuchoDio",
- "fullName": "LuchoDio",
- "avatarUrl": "https://www.gravatar.com/avatar/f80c88b7f7d2cfc226ab59b7c86a6e1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 22:45:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716408",
- "username": "hokbe",
- "fullName": "hokbe",
- "avatarUrl": "https://www.gravatar.com/avatar/1b5cf03b2a63dbc9c895a1fcc92e854f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 05:10:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732022",
- "username": "k33r33r",
- "fullName": "k33r33r",
- "avatarUrl": "https://www.gravatar.com/avatar/2642170c278268e6070c7e21bec2f3d2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 17:38:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716740",
- "username": "Felipao31",
- "fullName": "Felipao31",
- "avatarUrl": "https://www.gravatar.com/avatar/378116e3462f59f845ce864703d77a63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 10:09:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716836",
- "username": "HerrisonF",
- "fullName": "HerrisonF",
- "avatarUrl": "https://www.gravatar.com/avatar/b6004c320677400f09b742b4c184ae0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 11:22:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731532",
- "username": "Stanislavy",
- "fullName": "Stanislavy",
- "avatarUrl": "https://www.gravatar.com/avatar/eaff8c967173bbebd45589751487931c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 12:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713364",
- "username": "Miqpico",
- "fullName": "Miqpico",
- "avatarUrl": "https://www.gravatar.com/avatar/5215d09f67517d96d858b9d5b69b6c6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 15:13:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712944",
- "username": "jrovez",
- "fullName": "jrovez",
- "avatarUrl": "https://www.gravatar.com/avatar/454973b99bdf0550b3af3babdfbcb86f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 09:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730882",
- "username": "visp80",
- "fullName": "Руслан Пузыч (visp80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730882/medium/dc86e89520a84b606933c26d250c2fd4.jpg",
- "joined": "2021-04-29 01:48:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736248",
- "username": "dogarol",
- "fullName": "Dogan Erol (dogarol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736248/medium/abd45e199e835369cdcf596016e685c9.jpeg",
- "joined": "2021-05-03 06:57:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737170",
- "username": "pedr0.1",
- "fullName": "pedr0.1",
- "avatarUrl": "https://www.gravatar.com/avatar/75276e63cfd3d2c57437560609a8bd28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 23:08:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737126",
- "username": "KiBeRuS",
- "fullName": "KiBeRuS",
- "avatarUrl": "https://www.gravatar.com/avatar/af54e3eaa4b0748ffe96e109407fc501?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 21:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736878",
- "username": "Arash21",
- "fullName": "ChetMokh (Arash21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736878/medium/fd05611e841717b68d7c494b58eeb00a.png",
- "joined": "2021-05-03 16:50:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736706",
- "username": "plutarkh",
- "fullName": "plutarkh",
- "avatarUrl": "https://www.gravatar.com/avatar/74d14126cda3b37c49581e426c5cb356?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 14:02:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709490",
- "username": "jtrhb",
- "fullName": "jtrhb",
- "avatarUrl": "https://www.gravatar.com/avatar/f456a9a88ae6bcdc91f4a8f1beb2e39e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 01:22:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709736",
- "username": "A-R-V",
- "fullName": "A-R-V",
- "avatarUrl": "https://www.gravatar.com/avatar/0715bda33b948822cc269d7c526c3e28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 04:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736338",
- "username": "Jennyantonon",
- "fullName": "Jennyantonon",
- "avatarUrl": "https://www.gravatar.com/avatar/9354ab13ddd3a3fef260c70941fe5529?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 08:23:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736324",
- "username": "0DarkAngel0",
- "fullName": "0DarkAngel0",
- "avatarUrl": "https://www.gravatar.com/avatar/29ea01522c35f95fabd23287a67d2dfc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 08:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709844",
- "username": "Bohdan_Hoisa",
- "fullName": "Arbeneen (Bohdan_Hoisa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709844/medium/aea7b7ba52207c45f8dadf36a8d43f71.jpeg",
- "joined": "2021-04-13 06:20:29"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 789,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 123
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711740",
- "username": "cakirbyrm77",
- "fullName": "B. Alp Çakır (cakirbyrm77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711740/medium/69a977f19dd2b244307801c85fd448be.jpeg",
- "joined": "2021-04-14 11:41:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734478",
- "username": "munozorellanan90",
- "fullName": "nathaly de los angeles muñoz orellana (munozorellanan90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734478/medium/089f2aa3d243d0980304bebc4b8c9e42.png",
- "joined": "2021-05-01 15:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735944",
- "username": "JoseLuisHerzS",
- "fullName": "JoseLuisHerzS",
- "avatarUrl": "https://www.gravatar.com/avatar/e63283022f8c5fbbf3b688d9d450501e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 01:50:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711782",
- "username": "zxc.zxc122222",
- "fullName": "بندر المطيري (zxc.zxc122222)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711782/medium/df77868137f4e7885e9cb614df5d4481.jpeg",
- "joined": "2021-04-14 12:33:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712452",
- "username": "liujingran",
- "fullName": "liujingran",
- "avatarUrl": "https://www.gravatar.com/avatar/10911cd16e304479e47b38dce533cbf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 03:03:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735650",
- "username": "olcay6535",
- "fullName": "olcay6535",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735650/medium/4341c54d8d7e44932f04fc7a3988005b.png",
- "joined": "2021-05-02 17:39:17"
- },
- "languages": [
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 247,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 3033,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 972
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 289,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 25
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958773,
+ "username": "drlachyman",
+ "fullName": "Lukáš Lachkovič (drlachyman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958773/medium/1dbdc2e1f1d374a0308a505f42603e66.png",
+ "preTranslated": 0,
+ "totalCosts": 1131
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1131
+ },
+ "translated": {
+ "tmMatch": 53,
+ "default": 1078,
+ "total": 1131
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 961,
+ "total": 1017
+ },
+ "translatedByMt": {
+ "tmMatch": 42,
+ "default": 7,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 53,
+ "default": 1078,
+ "total": 1131
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992877,
+ "username": "Dolor3s",
+ "fullName": "Lydia Kretschmer (Dolor3s)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992877/medium/4482e74c7921e2ce85e573db65775652.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 191
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 191
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14762030,
+ "username": "hendra.herviawan",
+ "fullName": "M Hendra Herviawan (hendra.herviawan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762030/medium/5b0aca21e7e52bd490df7b009d924f40.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 133
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14597374,
+ "username": "monuripek94",
+ "fullName": "M Onur Ipek (monuripek94)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597374/medium/a101542182c896d91d1fd9e876506de6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15001037,
+ "username": "voducminh09",
+ "fullName": "M V (voducminh09)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001037/medium/05e1fb1e3b0b19fb94ac88599bf36b68.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 345
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 345
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 305,
+ "total": 345
+ },
+ "targetTranslated": {
+ "tmMatch": 68,
+ "default": 440,
+ "total": 508
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 305,
+ "total": 345
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14894716,
+ "username": "mgagahreforman",
+ "fullName": "M. Gagah Reforman (mgagahreforman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894716/medium/34bffe30d61288a4b9c13ecc7ab34a23.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572258,
+ "username": "trimegistra",
+ "fullName": "MAR TRIMEGISTRA (trimegistra)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572258/medium/b0e967b555a190ecb3bf0045ffc8deed.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675712,
+ "username": "LEMIBANDDEXARI",
+ "fullName": "MIBAND (LEMIBANDDEXARI)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/3416b6f2cac5da2e70205556774c847e.png",
+ "preTranslated": 0,
+ "totalCosts": 626
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 626
+ },
+ "translated": {
+ "tmMatch": 113,
+ "default": 513,
+ "total": 626
+ },
+ "targetTranslated": {
+ "tmMatch": 117,
+ "default": 559,
+ "total": 676
+ },
+ "translatedByMt": {
+ "tmMatch": 23,
+ "default": 161,
+ "total": 184
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 113,
+ "default": 513,
+ "total": 626
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13554238,
+ "username": "snns999",
+ "fullName": "MOHD AL. (snns999)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13554238/medium/b000a0a79abe7bd6e039852d7e741c9d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558102,
+ "username": "x756115",
+ "fullName": "MR.X A.S.D (x756115)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558102/medium/e092a0a6333e6c492ea90b663dcd4182.jpg",
+ "preTranslated": 0,
+ "totalCosts": 243
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 243
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 217,
+ "total": 243
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 183,
+ "total": 205
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 189,
+ "total": 189
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 217,
+ "total": 243
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14749896,
+ "username": "muratkoc1881",
+ "fullName": "MURAT KOÇ (muratkoc1881)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14749896/medium/38476a7709fc6ae3810fb8ed9c6c6c72.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14819110,
+ "username": "MahaveerD",
+ "fullName": "Mahaveer Devabalan (MahaveerD)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819110/medium/fd3d7232bac14f74005e788dbb2e0ae7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 31,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 50,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 31,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12397171,
+ "username": "shohagkhan",
+ "fullName": "Mahbub Alam Khan (shohagkhan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/173a5a80a89c2af52d1b2c17d48e97cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14146435,
+ "username": "mahesh339",
+ "fullName": "Mahesh Rajput (mahesh339)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146435/medium/6c10b5f6b69bf8c155b9f227d3e71f6c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14627372,
+ "username": "bleucode",
+ "fullName": "Maia (bleucode)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627372/medium/1cce0811394fa677eb1059b92da32b48.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14067507,
+ "username": "MainzenanZ0935313252",
+ "fullName": "MainzenanZ 0935313252 (MainzenanZ0935313252)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14067507/medium/91d036661e766bf018813a0cb34f0188.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14925495,
+ "username": "yuttapolp",
+ "fullName": "Man Yuttapol Pimpison (yuttapolp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14925495/medium/d503eb59e0c32db1225720e570a68719.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14230886,
+ "username": "moul",
+ "fullName": "Manfred Touron (moul)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230886/medium/7848e69a7fa9dd1f94f0509d56498b07.png",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 95,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 95,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14460678,
+ "username": "ranjanmanishr",
+ "fullName": "Manish Ranjan (ranjanmanishr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14460678/medium/3821327168d8e9ac03243100466d9fa1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14593316,
+ "username": "mankal111",
+ "fullName": "Manolis Kalafatis (mankal111)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593316/medium/ae46e7d0b56eac4de18909fed070e1c4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865328,
+ "username": "Lostday",
+ "fullName": "Manuel Ignacio Caviedes (Lostday)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6654ce365e1d6eae2c3928cd70daede3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4433
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4433
+ },
+ "translated": {
+ "tmMatch": 547,
+ "default": 3886,
+ "total": 4433
+ },
+ "targetTranslated": {
+ "tmMatch": 633,
+ "default": 3994,
+ "total": 4627
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 51,
+ "total": 51
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 547,
+ "default": 3886,
+ "total": 4433
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13697059,
+ "username": "manfer33",
+ "fullName": "Manuel J. Fernández (manfer33)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f9dee6ccff03adacb1ace021fba057b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 416
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 416
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 413,
+ "total": 416
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 439,
+ "total": 442
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 413,
+ "total": 416
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895926,
+ "username": "_madmarc",
+ "fullName": "Marc (_madmarc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f76a17fda51aafca1ad0530e4a11d9ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 141
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 147,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12607142,
+ "username": "marc_jonkers",
+ "fullName": "Marc Jonkers (marc_jonkers)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2e7a050677249e9cf7b2de6d2b709489?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 187
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 187
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005021,
+ "username": "mrcvs31",
+ "fullName": "Marc Vernet (mrcvs31)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005021/medium/99b5ad6194f6bf4449f55fb9a64f97c0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14702302,
+ "username": "marcdewilde88",
+ "fullName": "Marc de Wilde (marcdewilde88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702302/medium/50d692fe707bc1b5b5129a791ea182b5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 93
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 93
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 88,
+ "total": 93
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 88,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 88,
+ "total": 93
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14655214,
+ "username": "LeMarx",
+ "fullName": "Marc-Antoine Blais (LeMarx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/41e83ec7a1d43762ea334db1e09e7ccf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1074
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1074
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1062,
+ "total": 1074
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 774,
+ "total": 788
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1062,
+ "total": 1074
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14671218,
+ "username": "marcelp23",
+ "fullName": "Marcel Arturo Peña (marcelp23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14671218/medium/000e71fdd529be100a4e3fdf97b52a39.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 129
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 128,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 118,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 128,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14761046,
+ "username": "Marcello087",
+ "fullName": "Marcello087",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761046/medium/e8c304e5afacfaab6c6d8242294739bc.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14763374,
+ "username": "untipollamadomarcelo",
+ "fullName": "Marcelo Cornejo (untipollamadomarcelo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/6fada991f179e004707187b671444058.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14858450,
+ "username": "marcio.vallep",
+ "fullName": "Marcio Vallep (marcio.vallep)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14858450/medium/78a1cc0054358247a009cd3993270109.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 298,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 281,
+ "total": 287
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 110,
+ "total": 110
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 298,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14758100,
+ "username": "Wisheechia",
+ "fullName": "Marco Abate (Wisheechia)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758100/medium/420cea9c5114f42804b9bfde2e438c38.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966973,
+ "username": "marco.castignoli",
+ "fullName": "Marco Castignoli (marco.castignoli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966973/medium/ac611f249343c9a410f1c492c2026abd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582998,
+ "username": "mondini.marco",
+ "fullName": "Marco Mondini (mondini.marco)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582998/medium/6fa15c63ec087889a2ca1920905bc9b4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2428
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2428
+ },
+ "translated": {
+ "tmMatch": 60,
+ "default": 2368,
+ "total": 2428
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 2513,
+ "total": 2575
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 450,
+ "total": 456
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 60,
+ "default": 2368,
+ "total": 2428
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14911627,
+ "username": "marcoporracin",
+ "fullName": "Marco Porracin (marcoporracin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911627/medium/29719c7ebb665982afa5447e382aeb13.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 178
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 178
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 178,
+ "total": 178
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 165,
+ "total": 165
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 178,
+ "total": 178
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14645922,
+ "username": "506utyutyuty",
+ "fullName": "Marcos D. (506utyutyuty)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645922/medium/defd7b38618b1e500ae3c09e4b6f3f69.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 932
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 932
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 930,
+ "total": 932
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 965,
+ "total": 968
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 517,
+ "total": 517
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 930,
+ "total": 932
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14050356,
+ "username": "marcusjaatinen",
+ "fullName": "Marcus Jaatinen (marcusjaatinen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14050356/medium/5a5f4294a5e73b25c202a7fbddaf1cc6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 10,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 9,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 10,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689480,
+ "username": "sykoramarek74",
+ "fullName": "Marek Sýkora (sykoramarek74)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689480/medium/ebf18dbce0a18270c89d7d7794227844.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14758532,
+ "username": "manu55a",
+ "fullName": "Mariano F. (manu55a)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758532/medium/a8628399954ffeaa70d3614014c851f6.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14230432,
+ "username": "Hermos",
+ "fullName": "Marija Grinevičiūtė (Hermos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230432/medium/c78f61962f97f11d7a3c29d288d493c2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9150
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9150
+ },
+ "translated": {
+ "tmMatch": 2635,
+ "default": 6515,
+ "total": 9150
+ },
+ "targetTranslated": {
+ "tmMatch": 2518,
+ "default": 6269,
+ "total": 8787
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2635,
+ "default": 6515,
+ "total": 9150
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982731,
+ "username": "stepantsova.marina",
+ "fullName": "Marina Step (stepantsova.marina)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982731/medium/75bfe4bbb86944281ad86000f10b8b7c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 70
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 70
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623848,
+ "username": "mariocachapuz",
+ "fullName": "Mario Cachapuz (mariocachapuz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623848/medium/ea0d1ae48ac6dba6f2a5c70a944f7e45.png",
+ "preTranslated": 0,
+ "totalCosts": 77
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 77
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 77,
+ "total": 77
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 77,
+ "total": 77
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873848,
+ "username": "seaona",
+ "fullName": "Mariona (seaona)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873848/medium/b17de5f28e79a1bf040851bf192bc9e1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951487,
+ "username": "mariuszpelka",
+ "fullName": "Mariusz Pełka (mariuszpelka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951487/medium/4cb6c175fe74a75b8af3d7f92a8ccf4e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 97
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 97
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 97,
+ "total": 97
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 83,
+ "total": 83
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 97,
+ "total": 97
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14559422,
+ "username": "markxoe",
+ "fullName": "Mark Oude Elberink (markxoe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559422/medium/7531e2bf469cf5f588d633eccb3ab1ad.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 386
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 386
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 353,
+ "total": 386
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 339,
+ "total": 376
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 180,
+ "total": 183
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 353,
+ "total": 386
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14626816,
+ "username": "XxMarlaxXo",
+ "fullName": "Marla (XxMarlaxXo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14626816/medium/4aaf12d08638ef2fc77b3dfa415e0085.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 118,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 107,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 118,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14977837,
+ "username": "Orrama",
+ "fullName": "Marlon Ramirez Ortega (Orrama)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977837/medium/9fb2b9c153d600ab0ac8618c5499a33d.png",
+ "preTranslated": 0,
+ "totalCosts": 636
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 636
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 587,
+ "total": 636
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 697,
+ "total": 747
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 45,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 587,
+ "total": 636
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759618,
+ "username": "PanteaNegra",
+ "fullName": "Maryana Pantea (PanteaNegra)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759618/medium/ed23a37bb50ec664979f34807af1ed31.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 103,
+ "default": 152,
+ "total": 255
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14739682,
+ "username": "mary.kuzmenko",
+ "fullName": "Maryna K. (mary.kuzmenko)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739682/medium/599afacddc29bf1019c47919568f8b27.jpg",
+ "preTranslated": 0,
+ "totalCosts": 975
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 975
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 917,
+ "total": 975
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 734,
+ "total": 791
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 917,
+ "total": 975
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737234,
+ "username": "yuichiroaokidoctorqube",
+ "fullName": "Masako H (yuichiroaokidoctorqube)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737234/medium/b061a4e877a4876137ed20ef7d18d172.png",
+ "preTranslated": 0,
+ "totalCosts": 94
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 94
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 63,
+ "total": 94
+ },
+ "targetTranslated": {
+ "tmMatch": 88,
+ "default": 174,
+ "total": 262
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 63,
+ "total": 94
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14888562,
+ "username": "FWW",
+ "fullName": "Masato FUJII (FWW)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888562/medium/d82ec0de0a39d7f254ce38fc3840d529.png",
+ "preTranslated": 0,
+ "totalCosts": 2971
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2971
+ },
+ "translated": {
+ "tmMatch": 76,
+ "default": 2895,
+ "total": 2971
+ },
+ "targetTranslated": {
+ "tmMatch": 250,
+ "default": 8391,
+ "total": 8641
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 197,
+ "total": 207
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 76,
+ "default": 2895,
+ "total": 2971
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675630,
+ "username": "masha_krolchenko",
+ "fullName": "Masha (masha_krolchenko)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675630/medium/cbabfe3ec01a4c6ac9e5937ac3f690a1.JPG",
+ "preTranslated": 0,
+ "totalCosts": 2985
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2985
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 2959,
+ "total": 2985
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 2602,
+ "total": 2631
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 2959,
+ "total": 2985
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709730,
+ "username": "ArkadiaDev",
+ "fullName": "Massimiliano Pighi (ArkadiaDev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709730/medium/2d56160896fed391c482f06f729b0f58.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 0,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 0,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 0,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13979987,
+ "username": "mateodaza",
+ "fullName": "Mateo Daza (mateodaza)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13979987/medium/f1d7232073eea4d16ded491ebdbaba92.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 223
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 223
+ },
+ "translated": {
+ "tmMatch": 39,
+ "default": 184,
+ "total": 223
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 213,
+ "total": 245
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 39,
+ "default": 184,
+ "total": 223
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667626,
+ "username": "matheusrrugolo",
+ "fullName": "Matheus Rodrigues (matheusrrugolo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667626/medium/8f3c59f10649fb1abbd53bee5614aa2b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 686
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 125
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 125,
+ "total": 125
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 120,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 125,
+ "total": 125
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712604",
- "username": "zazadjo",
- "fullName": "zazadjo",
- "avatarUrl": "https://www.gravatar.com/avatar/dd69e93d6809444464f55340db534f08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 05:07:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735294",
- "username": "Bernard_T",
- "fullName": "Bernard Tan (Bernard_T)",
- "avatarUrl": "https://www.gravatar.com/avatar/13b077930bac3e190d67692a8076414d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 09:50:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712730",
- "username": "Jameslee1989",
- "fullName": "Jameslee1989",
- "avatarUrl": "https://www.gravatar.com/avatar/e0c596f756f98eab7e666671d099f6e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 06:41:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734892",
- "username": "Kutsalwador",
- "fullName": "Kutsalwador",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8d910780be135b30f8a24c6f2f7947?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 01:51:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734748",
- "username": "kenliu322",
- "fullName": "kenliu322",
- "avatarUrl": "https://www.gravatar.com/avatar/180ac0a58f9783eda6cf1217f7f7f81f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 21:29:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734482",
- "username": "kleberlima",
- "fullName": "kleberlima",
- "avatarUrl": "https://www.gravatar.com/avatar/7c9e1252522d501ab6adc892ec18352f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 15:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717086",
- "username": "hendddd",
- "fullName": "hendddd",
- "avatarUrl": "https://www.gravatar.com/avatar/15f0a9c5bc03284f34a4550aaa6f507d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 16:10:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730858",
- "username": "VanessaF",
- "fullName": "VanessaF",
- "avatarUrl": "https://www.gravatar.com/avatar/3e380250dbb8d90b2f76c1ec445d06ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 01:20:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737354",
- "username": "mopheus",
- "fullName": "mopheus",
- "avatarUrl": "https://www.gravatar.com/avatar/795bcc36dfa80bc3f1412f62fdce30a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 03:43:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724348",
- "username": "diksinbaba",
- "fullName": "Bitcoin Gezgini (diksinbaba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724348/medium/29098b09a0fc57983cd5f9cad8e8728e.jpeg",
- "joined": "2021-04-23 23:04:04"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 561
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 546,
+ "total": 561
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 540,
+ "total": 556
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 242,
+ "total": 242
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 546,
+ "total": 561
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14639094,
+ "username": "matiricardo99",
+ "fullName": "Mati Ricardo (matiricardo99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14639094/medium/0be11b0699a488d1ba362ae3c5172590.jpg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14005311,
+ "username": "matjaz.verdnik",
+ "fullName": "Matjaz Verdnik (matjaz.verdnik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14005311/medium/a78a0fca74ff7b447077bb25c0c17b5a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2411
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2411
+ },
+ "translated": {
+ "tmMatch": 86,
+ "default": 2325,
+ "total": 2411
+ },
+ "targetTranslated": {
+ "tmMatch": 79,
+ "default": 2235,
+ "total": 2314
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 86,
+ "default": 2325,
+ "total": 2411
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14918847,
+ "username": "kryptokurt",
+ "fullName": "Mats Westholm (kryptokurt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9e7413a54c5ded7e2b74b662d19960e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026503,
+ "username": "MB337",
+ "fullName": "Matteo Bianchi (MB337)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026503/medium/a98b0fc8ef5fa3095adac492aac5bf5f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732520,
+ "username": "matteo.boffo",
+ "fullName": "Matteo Boffo (matteo.boffo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732520/medium/5c3707bf4dd91f58d154eae8cab347dd.png",
+ "preTranslated": 0,
+ "totalCosts": 112
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 112
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 112,
+ "total": 112
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 97,
+ "total": 97
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 112,
+ "total": 112
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633448,
+ "username": "ilrado",
+ "fullName": "Matteo Radice (ilrado)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633448/medium/00e36a91231d5f6980f4ea96c1f24ab9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 34751
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34751
+ },
+ "translated": {
+ "tmMatch": 506,
+ "default": 34245,
+ "total": 34751
+ },
+ "targetTranslated": {
+ "tmMatch": 530,
+ "default": 33640,
+ "total": 34170
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 506,
+ "default": 34245,
+ "total": 34751
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14694992,
+ "username": "Matthiti",
+ "fullName": "Matthijs Roelink (Matthiti)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694992/medium/ebb3402bec51d93fc48118628f8befc7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 922
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 922
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 920,
+ "total": 922
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 927,
+ "total": 929
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 263,
+ "total": 263
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 920,
+ "total": 922
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748044,
+ "username": "toa_",
+ "fullName": "Mattia Rigo (toa_)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748044/medium/81571a43e54195bf3dc482cc4d83f9fd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14699102,
+ "username": "matiapa",
+ "fullName": "Matías Apablaza (matiapa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699102/medium/31f4ce23d48d93b6e6d1c1d3f3a8cc18.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 43
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14994299,
+ "username": "matiasj.lopez",
+ "fullName": "Matías López (matiasj.lopez)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994299/medium/c364edddc0c92088708266c5d0788ef9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 182
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 182
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 147,
+ "total": 182
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 155,
+ "total": 192
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 147,
+ "total": 182
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712126,
+ "username": "maudmcok",
+ "fullName": "Maud (maudmcok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712126/medium/9c0f3fa093a2a2354b275243d3061276.png",
+ "preTranslated": 0,
+ "totalCosts": 51
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 21,
+ "total": 51
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 11,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 30,
+ "default": 21,
+ "total": 51
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 21,
+ "total": 51
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000979,
+ "username": "mauri.lustosa",
+ "fullName": "Mauriano Lustosa (mauri.lustosa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000979/medium/d3463e880ee39ff00ec110108c7c1711.png",
+ "preTranslated": 0,
+ "totalCosts": 227
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 227
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 199,
+ "total": 227
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 214,
+ "total": 242
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 199,
+ "total": 227
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14616556,
+ "username": "M8-Research",
+ "fullName": "Maurice Hmr (M8-Research)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616556/medium/08dc4b444eeae3ffdb2c3f20533bdf85.png",
+ "preTranslated": 0,
+ "totalCosts": 1106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1106
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 1101,
+ "total": 1106
+ },
+ "targetTranslated": {
+ "tmMatch": 79,
+ "default": 1131,
+ "total": 1210
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 1101,
+ "total": 1106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838650,
+ "username": "sibannaccian",
+ "fullName": "Mauricio Serrano Rodriguez (sibannaccian)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838650/medium/656027686a316709b3424730ef35fd49.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13935389,
+ "username": "mzfshark",
+ "fullName": "Mauricio Shark (mzfshark)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13935389/medium/02b9a2c2cace48461830694df7bece6b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 86,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14564674,
+ "username": "max.jatmanov",
+ "fullName": "Max Jatmanov (max.jatmanov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564674/medium/de3304771bd8b32c063e6567dbccf637.png",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865322,
+ "username": "muxelmann",
+ "fullName": "Max Zangs (muxelmann)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865322/medium/8e6a15dc96741d3a6c5b516d7f57fa61.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 125,
+ "total": 125
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14697544,
+ "username": "max.albarenque",
+ "fullName": "Maximiliano Albarenque (max.albarenque)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697544/medium/056b5b11875996b5a893af76d3ef6b9c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 302
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 302
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 302,
+ "total": 302
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 315,
+ "total": 315
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 294,
+ "total": 294
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 302,
+ "total": 302
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959165,
+ "username": "hanzoh",
+ "fullName": "Mayato Hattori (hanzoh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959165/medium/5b5d25560b26caab0ff4c839424126ab.jpg",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 60,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 166,
+ "total": 176
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 60,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14360816,
+ "username": "mayookh3508",
+ "fullName": "Mayookh M T (mayookh3508)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14360816/medium/d455976171e216f92c60e592a2e2ca8c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14027332,
+ "username": "m4z31995",
+ "fullName": "Mazakoo M4Z3 (m4z31995)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027332/medium/cd801d9c064287f739384640ea785026.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 122
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 122
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 118,
+ "total": 122
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 111,
+ "total": 115
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 118,
+ "total": 122
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12591126,
+ "username": "aikyu99",
+ "fullName": "MeArjiet (aikyu99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b0232e61a3ecdc0f29ed9ee87af4a6fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14237540,
+ "username": "MeganHo",
+ "fullName": "MeganHo",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14237540/medium/de8ae52ffc3474771c2b2fef499f5204.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 197,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 349,
+ "total": 372
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 197,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14878450,
+ "username": "mehdiag",
+ "fullName": "Mehdi (mehdiag)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878450/medium/7eec709640a78fd86c7d885c4ce79cf3.gif",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14720212,
+ "username": "Mehdiamirirad",
+ "fullName": "MehdiAmirirad (Mehdiamirirad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720212/medium/cfed5497d031cd84d81707be8efd1bd8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 41,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 42,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 41,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14805280,
+ "username": "EckoZhang",
+ "fullName": "Mengjia Zhang (EckoZhang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805280/medium/a294008196ce6b1800aa175fc7112ad0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1258
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1258
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 1207,
+ "total": 1258
+ },
+ "targetTranslated": {
+ "tmMatch": 102,
+ "default": 1626,
+ "total": 1728
+ },
+ "translatedByMt": {
+ "tmMatch": 16,
+ "default": 90,
+ "total": 106
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 1207,
+ "total": 1258
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14717284,
+ "username": "merthoca",
+ "fullName": "Mert Hoca Efendi ile Sahura Doğru (merthoca)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717284/medium/7f8c88453b5f3a9f5fe732b0beeaf699.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727044,
+ "username": "MetehanOzyurek",
+ "fullName": "Metehan Özyürek (MetehanOzyurek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727044/medium/185fcf0359203eb8d719570e8cf23646.png",
+ "preTranslated": 0,
+ "totalCosts": 149
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 149
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 101,
+ "total": 149
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 85,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 39,
+ "default": 0,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 101,
+ "total": 149
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14985003,
+ "username": "m.naeimy",
+ "fullName": "Meysam Naeimy (m.naeimy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985003/medium/0e21b7a5dcd802d0203fceadaf2ef22f.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14159957,
+ "username": "mishkap93",
+ "fullName": "Michael Pisarev (mishkap93)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14159957/medium/8de714a2a632207bc4ae635c5092d9dc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14113969,
+ "username": "mbiesiad",
+ "fullName": "Michal (mbiesiad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14113969/medium/5ac8b6a9f35466498ebb47b6c43e43df.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 285
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 285
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 222,
+ "total": 285
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 215,
+ "total": 282
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 63,
+ "default": 222,
+ "total": 285
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 8411,
+ "username": "nijel",
+ "fullName": "Michal Čihař (nijel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/abbcd6344e160597fb2694f25c46149f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738918,
+ "username": "tlumaczenia.kijowski",
+ "fullName": "Michał Kijowski (tlumaczenia.kijowski)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738918/medium/f23bbb027ce85512c533103a19cf0608.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815846,
+ "username": "biboufr",
+ "fullName": "Midori Nika (biboufr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815846/medium/e3ef6e9bf613468bccc78bf46b9ed89b.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14684140,
+ "username": "migangelo.espo",
+ "fullName": "Mig ESPO (migangelo.espo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684140/medium/38e31beaf887fdeb774e31912462166e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 15,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 18,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 15,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035521,
+ "username": "mrodasmunera",
+ "fullName": "Miguel angel Rodas munera (mrodasmunera)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035521/medium/5baccc971b5f496fa477b256fe411c8e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738064,
+ "username": "msprinceana",
+ "fullName": "Mihai Mihai (msprinceana)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738064/medium/36ee3d9e8af2e019299e5513f0039c1e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 34,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14983857,
+ "username": "shimonchick",
+ "fullName": "Mihail Kirov (shimonchick)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983857/medium/212e2f1bde341380eba33d9562c9695b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 100,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 121,
+ "total": 131
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 100,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14052148,
+ "username": "mikaelrb",
+ "fullName": "Mikael Robert (mikaelrb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14052148/medium/0194400d73fdeeb0e12eec633f88034d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14887798,
+ "username": "MikhailDemin",
+ "fullName": "Mikhail Demin (MikhailDemin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887798/medium/8141d544c3ddd3270fe04f02318d6760.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 204,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 161,
+ "total": 162
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 204,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14618330,
+ "username": "prosalife",
+ "fullName": "Mikhail Krainov (prosalife)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618330/medium/777cd082c17d5d200d9f46724992378b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14549416,
+ "username": "fymingf",
+ "fullName": "Min Fu (fymingf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549416/medium/fd35815355034e41f00470db0bbea34d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14648108,
+ "username": "klimaty.minecraft",
+ "fullName": "Minecraft Przygoda (klimaty.minecraft)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648108/medium/2a670a0c42bbaaf0404eecbed164d6ed.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14482564,
+ "username": "simona0823",
+ "fullName": "Mingyue Feng (simona0823)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14482564/medium/7dbbc716fc051260c3b37e7f13a08cf7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553512,
+ "username": "paromix",
+ "fullName": "Minho Yoo (paromix)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553512/medium/420c9f69984b66d1f5ac728802da42ad.jpg",
+ "preTranslated": 0,
+ "totalCosts": 178
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 178
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 176,
+ "total": 178
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 153,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 176,
+ "total": 178
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13991829,
+ "username": "twfhyr",
+ "fullName": "Mitu Tan (twfhyr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13991829/medium/ec5ddc6ce26e1723ffdcc48cb11e74c0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623146,
+ "username": "motube2030",
+ "fullName": "Mo Tube (motube2030)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623146/medium/7efc74358ea2f542a1bb2faec0dee427.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653510,
+ "username": "mo01024054097",
+ "fullName": "Mohamed Apd Elmoneim (mo01024054097)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653510/medium/87305353821b7321765b03ada442ef91.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14755480,
+ "username": "mohammad.famo",
+ "fullName": "Mohammad Famo (mohammad.famo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755480/medium/c00eecfb1c432d916c106b04ca4c3755.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709210,
+ "username": "mm.shirinnezhad",
+ "fullName": "Mohammad Mehdi (mm.shirinnezhad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709210/medium/4f91166a36102f000bfd7c53769952aa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 54,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 52,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 54,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14659246,
+ "username": "mohamed.faisal.alabsy",
+ "fullName": "Mohammed Faisal (mohamed.faisal.alabsy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659246/medium/563188834be6f03958979efc191b9f4a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 11,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 11,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14146415,
+ "username": "MonarthS",
+ "fullName": "Monarth (MonarthS)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146415/medium/df6676021062acadedbaf9d0935bcce3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 654
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 654
+ },
+ "translated": {
+ "tmMatch": 145,
+ "default": 509,
+ "total": 654
+ },
+ "targetTranslated": {
+ "tmMatch": 273,
+ "default": 886,
+ "total": 1159
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 145,
+ "default": 509,
+ "total": 654
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14696674,
+ "username": "msanrie",
+ "fullName": "Montserrat Sanchez Rierola (msanrie)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696674/medium/929ad678f44f069d6fea52844de795f7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14760662,
+ "username": "stepanov0808200",
+ "fullName": "MoolCooV (stepanov0808200)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760662/medium/0f50d9b003a29eec10bcce9ced1e43e4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 264
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 264
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 258,
+ "total": 264
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 167,
+ "total": 172
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 258,
+ "total": 264
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023359,
+ "username": "empresamorclo",
+ "fullName": "Morclo Empresa (empresamorclo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023359/medium/3370355ea7d096ade0905d238a24f26a.png",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 10,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 11,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 10,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14736264,
+ "username": "purtual",
+ "fullName": "Morten Lautrup (purtual)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736264/medium/bfa73783034f3c6b355dfc74f9a1a1cd.png",
+ "preTranslated": 0,
+ "totalCosts": 701
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 701
+ },
+ "translated": {
+ "tmMatch": 53,
+ "default": 648,
+ "total": 701
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 583,
+ "total": 635
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 452,
+ "total": 466
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 53,
+ "default": 648,
+ "total": 701
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689000,
+ "username": "mosaab.abumgarab",
+ "fullName": "Mosaab Abu Mgarab (mosaab.abumgarab)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689000/medium/e98e57aa51c058cb9e04d1d3bc9251df.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1174
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1174
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 1144,
+ "total": 1174
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 1015,
+ "total": 1045
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 739,
+ "total": 749
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 1144,
+ "total": 1174
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14361586,
+ "username": "zippoxer",
+ "fullName": "Moshe Revah (zippoxer)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14361586/medium/a4f460817c40656ad9863a2100816e77.png",
+ "preTranslated": 0,
+ "totalCosts": 684
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 684
+ },
+ "translated": {
+ "tmMatch": 191,
+ "default": 493,
+ "total": 684
+ },
+ "targetTranslated": {
+ "tmMatch": 164,
+ "default": 438,
+ "total": 602
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 191,
+ "default": 493,
+ "total": 684
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708696,
+ "username": "wmswms938",
+ "fullName": "Moshi Wei (wmswms938)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708696/medium/2303f2ec8760f6fa46ad1117e61d23b5.jpg",
+ "preTranslated": 0,
+ "totalCosts": 343
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 343
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 340,
+ "total": 343
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 582,
+ "total": 585
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 340,
+ "total": 343
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12335754,
+ "username": "MostafaAlSayed",
+ "fullName": "Mostafa Al Sayed (MostafaAlSayed)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a94708d63d7365a25b967474caecf104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984193,
+ "username": "Mourad820",
+ "fullName": "Mourad Tajja (Mourad820)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984193/medium/4f7d92fc7cf31a84b0319c093942aa1c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 645
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 645
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 594,
+ "total": 645
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 564,
+ "total": 623
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 594,
+ "total": 645
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14715384,
+ "username": "kemallbangus123",
+ "fullName": "Muhamad Kemal Pebriansyah (kemallbangus123)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715384/medium/1882a3be104737a70d57a761e223b721.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643044,
+ "username": "anezdoank03",
+ "fullName": "Muhammad Ariesta (anezdoank03)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643044/medium/e24977172eb4534e13257568b1fe6e93.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722958",
- "username": "colstuwjx",
- "fullName": "Jacky Wu (colstuwjx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722958/medium/bbb68b3330ed7ad572b7e987330078c4.jpg",
- "joined": "2021-04-25 23:33:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723100",
- "username": "JohnHeatz",
- "fullName": "Erick Gomez (JohnHeatz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723100/medium/572e16e10fed6641f8f3fae258157f53.jpeg",
- "joined": "2021-04-23 00:48:48"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14544610,
+ "username": "anezdoank84",
+ "fullName": "Muhammad Ariesta (anezdoank84)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544610/medium/4421d54e18059665ee9037d0bef6216c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13629413,
+ "username": "haikyuu.99",
+ "fullName": "Muhammad Pandam Pramudya (haikyuu.99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13629413/medium/b9910bfed553c9bb03b18ff1d614273b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 408
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 408
+ },
+ "translated": {
+ "tmMatch": 111,
+ "default": 297,
+ "total": 408
+ },
+ "targetTranslated": {
+ "tmMatch": 111,
+ "default": 280,
+ "total": 391
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 111,
+ "default": 297,
+ "total": 408
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14189901,
+ "username": "madloser3",
+ "fullName": "Muhammad Zubair M Zubair (madloser3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14189901/medium/331f887c46e3e7153693ce544aa7b39b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-IN",
+ "name": "Urdu (India)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558890,
+ "username": "muhammedfadlarslan",
+ "fullName": "Muhammed Fadıl Arslan (muhammedfadlarslan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558890/medium/381ff304f12355d66c226b2be8a7c63d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 106,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 77,
+ "total": 79
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 106,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14730796,
+ "username": "mukhamadkurniarrokhman",
+ "fullName": "Mukhamad kurniarrokhman (mukhamadkurniarrokhman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730796/medium/3e2f1ca6fbbc5a2785754c7e209a8358.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 224
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 224
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 222,
+ "total": 224
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 195,
+ "total": 197
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 222,
+ "total": 224
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14588496,
+ "username": "rouftomb",
+ "fullName": "Muller Roufaou (rouftomb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588496/medium/5eb12f2bb5362b62230035bbb00bb093.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 248
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 246,
+ "total": 248
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 317,
+ "total": 320
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 246,
+ "total": 248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814538,
+ "username": "multilkyx",
+ "fullName": "Multi lkyx (multilkyx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814538/medium/a758db833b50a769463ef35c5d5b99f1.gif",
+ "preTranslated": 0,
+ "totalCosts": 488
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 488
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 467,
+ "total": 488
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 443,
+ "total": 478
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 467,
+ "total": 488
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14648284,
+ "username": "fgawlas2115",
+ "fullName": "Muminek Zapasowy (fgawlas2115)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648284/medium/9d0d57ee2c4c97fce816dc11b4b0bb52.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14320650,
+ "username": "muratboy",
+ "fullName": "Murat Boy (muratboy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320650/medium/563cf8bdc4cfd02d50c0b0d53706022b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999587,
+ "username": "muratgozel",
+ "fullName": "Murat Gözel (muratgozel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999587/medium/e65a2434011d9519ff52ade683b53b8c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1176
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1176
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1163,
+ "total": 1176
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 755,
+ "total": 767
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1163,
+ "total": 1176
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14103549,
+ "username": "mrtbrr",
+ "fullName": "Murat Han (mrtbrr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14103549/medium/a6110a8040a839711e89ed55a576d363.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14593580,
+ "username": "murilooon",
+ "fullName": "Murilo Olvieira (murilooon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593580/medium/31bad597428d9b341f63226cced204ac.png",
+ "preTranslated": 0,
+ "totalCosts": 125
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 125
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 98,
+ "total": 125
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 103,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 40,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 98,
+ "total": 125
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14154609,
+ "username": "mustafaturan",
+ "fullName": "Mustafa Turan (mustafaturan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14154609/medium/3855733ddf0efc6bcbdf6889afd13a76.png",
+ "preTranslated": 0,
+ "totalCosts": 613
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 613
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 592,
+ "total": 613
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 464,
+ "total": 486
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 592,
+ "total": 613
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708760,
+ "username": "hypebeans",
+ "fullName": "Muumi (ミュウミ) (hypebeans)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708760/medium/f039dc85a8469b65d9e3e2413f9c4710.png",
+ "preTranslated": 0,
+ "totalCosts": 10330
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 235
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 206,
+ "total": 235
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 342,
+ "total": 387
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 26,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 206,
+ "total": 235
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723820",
- "username": "NOT_DECENT",
- "fullName": "NOT_DECENT",
- "avatarUrl": "https://www.gravatar.com/avatar/61aef0952edd798ba69afa6c386334b9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 12:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727256",
- "username": "daniela108",
- "fullName": "daniela (daniela108)",
- "avatarUrl": "https://www.gravatar.com/avatar/5b73016b6311188aaa3eaeeb0d2a8c88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 09:03:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727190",
- "username": "chakibnori",
- "fullName": "chakibnori",
- "avatarUrl": "https://www.gravatar.com/avatar/97c01b1b73f91f10614cac8567b7317d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 08:10:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723976",
- "username": "hadifarzipour",
- "fullName": "hadi farzipour (hadifarzipour)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723976/medium/36b4fdd006e31b3568685828aad778c5.jpeg",
- "joined": "2021-04-23 14:26:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724324",
- "username": "BadaevDenis",
- "fullName": "BadaevDenis",
- "avatarUrl": "https://www.gravatar.com/avatar/f2ad363045553d75ec1354568b36e51a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 22:36:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726900",
- "username": "hassanatef312",
- "fullName": "Hassan Atef (hassanatef312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726900/medium/58cf487ada651b35a1d57a135b52650f.jpeg",
- "joined": "2021-04-26 03:37:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726702",
- "username": "m.mirgolbabaei666",
- "fullName": "Mohammad Mirgolbabaei (m.mirgolbabaei666)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726702/medium/2fb4c1a6333de898cb2ba671be78222a.jpg",
- "joined": "2021-04-30 02:54:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726566",
- "username": "Cronaldo",
- "fullName": "Cronaldo",
- "avatarUrl": "https://www.gravatar.com/avatar/ea2ae1349e64d8ad4d36a0f3bf231ea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 19:29:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728134",
- "username": "lamphor",
- "fullName": "Nikhil Nigam (lamphor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728134/medium/ca927d6270c363e3dfb94161c0d9d671.png",
- "joined": "2021-04-27 02:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726558",
- "username": "jpsossavi",
- "fullName": "jpsossavi",
- "avatarUrl": "https://www.gravatar.com/avatar/fb2b7d0bdefc2ba5bca029ef0382b209?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 19:20:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726406",
- "username": "MartoEpo",
- "fullName": "MartoEpo",
- "avatarUrl": "https://www.gravatar.com/avatar/ea584d4c746d9d5b1da12c32138fed2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 15:37:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724390",
- "username": "robsonp2109",
- "fullName": "robsonp2109",
- "avatarUrl": "https://www.gravatar.com/avatar/159ffdb921fd1535caee08517f904554?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 00:34:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724692",
- "username": "adamlaska",
- "fullName": "Адамласка (adamlaska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724692/medium/7e5d108d470e50bde1397858e2e63f31.jpeg",
- "joined": "2021-05-15 05:53:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726110",
- "username": "dugarte.z981",
- "fullName": "Daniel Horacio Ugarte (dugarte.z981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726110/medium/6ce23defc916504b5bf20fade6532619.jpeg",
- "joined": "2021-04-25 12:05:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726036",
- "username": "wangyanghr",
- "fullName": "Yang Wang (wangyanghr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726036/medium/5448c6150411b094b13b79d8fe4a3f29.jpeg",
- "joined": "2021-04-25 10:52:15"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7271
+ },
+ "translated": {
+ "tmMatch": 137,
+ "default": 7134,
+ "total": 7271
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 6649,
+ "total": 6786
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 137,
+ "default": 7134,
+ "total": 7271
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725996",
- "username": "alvilica.bouanani",
- "fullName": "Stormisausore (alvilica.bouanani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725996/medium/40e18610dc51e592ef05c698d2904e5d.png",
- "joined": "2021-04-25 09:41:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724780",
- "username": "arnabethu",
- "fullName": "arnabethu",
- "avatarUrl": "https://www.gravatar.com/avatar/b89e7d5a2b18f4fc465d6ef6ebb4343d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 08:03:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725036",
- "username": "ergngndz",
- "fullName": "bawer ceqtar (ergngndz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725036/medium/1971b811cb0120336703db7a1a27ff8f.jpg",
- "joined": "2021-04-24 12:14:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727978",
- "username": "moilui",
- "fullName": "moilui",
- "avatarUrl": "https://www.gravatar.com/avatar/f4ffa63acc404899932a5c05085aeea1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 16:36:17"
- },
- "languages": [
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2824
+ },
+ "translated": {
+ "tmMatch": 288,
+ "default": 2536,
+ "total": 2824
+ },
+ "targetTranslated": {
+ "tmMatch": 695,
+ "default": 6387,
+ "total": 7082
+ },
+ "translatedByMt": {
+ "tmMatch": 48,
+ "default": 528,
+ "total": 576
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 288,
+ "default": 2536,
+ "total": 2824
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14619062,
+ "username": "Muuri93",
+ "fullName": "Muuri93",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619062/medium/9fcb67976c6aca6baf74395a86438728.png",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14762626,
+ "username": "mykolasalata7",
+ "fullName": "Mykola Salata (mykolasalata7)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762626/medium/ef496f3afd20230d8775e3cfb6175c14.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 114
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 114
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14900694,
+ "username": "NagasaiCrowdin",
+ "fullName": "NAGASAI BASVOJU (NagasaiCrowdin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900694/medium/c0786b1def4799c4c8a7c6881a66bb08.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 96,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14159293,
+ "username": "yb191080",
+ "fullName": "NAKON90120952 (yb191080)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14159293/medium/1fdcda9f5e1b51692fef0e63b8e79473.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 18711,
+ "username": "NCAA",
+ "fullName": "NCAA",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/11ce5effae85ae26135368340cbb32fe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2380
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2380
+ },
+ "translated": {
+ "tmMatch": 68,
+ "default": 2312,
+ "total": 2380
+ },
+ "targetTranslated": {
+ "tmMatch": 60,
+ "default": 1934,
+ "total": 1994
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 56,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 68,
+ "default": 2312,
+ "total": 2380
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14736936,
+ "username": "Nagihan",
+ "fullName": "Nagihan Erbaş (Nagihan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736936/medium/da62b14c0eb800dba5863fc2834f35f7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14642418,
+ "username": "nailsahin85",
+ "fullName": "Nail Şahin (nailsahin85)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642418/medium/dddfec0190d3ec04d464182f0e8e0cd9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 36
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 36
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 27,
+ "total": 36
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 27,
+ "total": 36
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14248418,
+ "username": "4289nakorn6395",
+ "fullName": "Nakorn Pornrattanawong (4289nakorn6395)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14248418/medium/b996a0480fee75e906548f8849851290.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14918055,
+ "username": "caibangtimvoyeu1",
+ "fullName": "Nam Bảo (caibangtimvoyeu1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918055/medium/caa90ddfc06eec603e36f31baf208c3e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14017439,
+ "username": "hoainama8",
+ "fullName": "Nam Ngô (hoainama8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14017439/medium/8b8b669377a509774445a42c0c45ca23.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 602
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 602
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 597,
+ "total": 602
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 790,
+ "total": 797
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 597,
+ "total": 602
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14197302,
+ "username": "Nanshulot",
+ "fullName": "Nans.hulot (Nanshulot)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197302/medium/757e43b5b53dcd888a681e6dfa5c4997.png",
+ "preTranslated": 0,
+ "totalCosts": 713
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 713
+ },
+ "translated": {
+ "tmMatch": 338,
+ "default": 375,
+ "total": 713
+ },
+ "targetTranslated": {
+ "tmMatch": 399,
+ "default": 428,
+ "total": 827
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 338,
+ "default": 375,
+ "total": 713
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14386068,
+ "username": "minaminao",
+ "fullName": "Naoya Okanami (minaminao)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14386068/medium/f08582fddeff0960412994f51377126c.png",
+ "preTranslated": 0,
+ "totalCosts": 5758
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5758
+ },
+ "translated": {
+ "tmMatch": 979,
+ "default": 4779,
+ "total": 5758
+ },
+ "targetTranslated": {
+ "tmMatch": 2747,
+ "default": 11479,
+ "total": 14226
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 115,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 979,
+ "default": 4779,
+ "total": 5758
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003615,
+ "username": "coffe67",
+ "fullName": "Narciso Avalos (coffe67)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003615/medium/6595139d2c5d5e19f74d7859d0f0bea8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14638656,
+ "username": "naser.aljaari78",
+ "fullName": "Naser Aljaari (naser.aljaari78)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638656/medium/711d73ae43c9400d4bdd0574f6b0ce6c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 25,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 25,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 25,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14524548,
+ "username": "bhattg",
+ "fullName": "Naveen Bhatt (bhattg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14524548/medium/14197a8630271202eb6371b01ec63028.png",
+ "preTranslated": 0,
+ "totalCosts": 17999
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17999
+ },
+ "translated": {
+ "tmMatch": 590,
+ "default": 17409,
+ "total": 17999
+ },
+ "targetTranslated": {
+ "tmMatch": 1024,
+ "default": 29893,
+ "total": 30917
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 590,
+ "default": 17409,
+ "total": 17999
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14048477,
+ "username": "N-C-M",
+ "fullName": "Neenu Chacko (N-C-M)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048477/medium/da5258d8f19d1a2a0b643904d7246453.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 29,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 44,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 29,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14060897,
+ "username": "neeraj2000Kumar",
+ "fullName": "Neeraj Kumar (neeraj2000Kumar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14060897/medium/434f70fb0e7f7e9ba044704d8ba2b668.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 22,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 46,
+ "total": 97
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 22,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14904476,
+ "username": "shady_neli98",
+ "fullName": "Nelkka Dobrewa (shady_neli98)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904476/medium/9094393854d8e690e3ff1870061cdb5f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14767082,
+ "username": "necouo",
+ "fullName": "Nemanja Stefanović (necouo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767082/medium/0fccf3a82fbadce0ebb0435a070a3bdf.png",
+ "preTranslated": 0,
+ "totalCosts": 626
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 626
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 620,
+ "total": 626
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 593,
+ "total": 603
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 620,
+ "total": 626
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14209450,
+ "username": "nestorbonilla",
+ "fullName": "Nestor Bonilla (nestorbonilla)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14209450/medium/ffcdb73f831098c16883ec2b9e13bc2a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 201
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 201
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 170,
+ "total": 201
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 176,
+ "total": 210
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 170,
+ "total": 201
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14943437,
+ "username": "trungan1511",
+ "fullName": "Nguyen An (trungan1511)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943437/medium/03d7b6c2f65c04c60b008a38a221cf5f.png",
+ "preTranslated": 0,
+ "totalCosts": 4775
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4775
+ },
+ "translated": {
+ "tmMatch": 178,
+ "default": 4597,
+ "total": 4775
+ },
+ "targetTranslated": {
+ "tmMatch": 304,
+ "default": 7271,
+ "total": 7575
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 15,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 178,
+ "default": 4597,
+ "total": 4775
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815080,
+ "username": "0904508678duy",
+ "fullName": "Nguyen Duy (0904508678duy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815080/medium/d175930e28a0382f4ad6127ee47c961a.png",
+ "preTranslated": 0,
+ "totalCosts": 96
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728190",
- "username": "Marcus27UK",
- "fullName": "Marcus27UK",
- "avatarUrl": "https://www.gravatar.com/avatar/ea761150b8eb3a29b899a1bad118010b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 03:40:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717554",
- "username": "daviswong888",
- "fullName": "立即看以下連結 (daviswong888)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717554/medium/c8d726281f2436bec681f541c5654779.jpeg",
- "joined": "2021-04-19 01:37:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730026",
- "username": "joandeportol",
- "fullName": "joandeportol",
- "avatarUrl": "https://www.gravatar.com/avatar/569e25fc4405d1f17ad069c9fbf1303e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 09:48:36"
- },
- "languages": [
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717736",
- "username": "Milo4ka",
- "fullName": "Milo4ka",
- "avatarUrl": "https://www.gravatar.com/avatar/3ae11cea942d03283e004c796c936316?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 05:04:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718082",
- "username": "subekti_87",
- "fullName": "Subekti (subekti_87)",
- "avatarUrl": "https://www.gravatar.com/avatar/86c71ab75f5d8fbf99bcecd64e034fd4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 09:54:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718088",
- "username": "lh430051",
- "fullName": "lh430051",
- "avatarUrl": "https://www.gravatar.com/avatar/ad89f50a49f4f4be32a2e9b6ee053e99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 10:01:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730452",
- "username": "pperezcolombia",
- "fullName": "Pedro Fabián Pérez Arteaga (pperezcolombia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730452/medium/9755c40f928912583a0ca30b50bc7d01.jpeg",
- "joined": "2021-04-28 15:53:09"
- },
- "languages": [
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 40,
+ "total": 43
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 39,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 40,
+ "total": 43
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730432",
- "username": "fkilic13",
- "fullName": "fkilic13",
- "avatarUrl": "https://www.gravatar.com/avatar/428994f60afeff7073ce6489d5f813b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 15:24:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730402",
- "username": "ramboo45",
- "fullName": "ramboo45",
- "avatarUrl": "https://www.gravatar.com/avatar/5d666cdc930b84ca18d4397304df72fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 15:04:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718170",
- "username": "Mhakimfh",
- "fullName": "Mhakimfh",
- "avatarUrl": "https://www.gravatar.com/avatar/145c239816a75ad35e8c56040b904c8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 11:02:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718240",
- "username": "sallimibehbood20",
- "fullName": "Behbood Sallimi (sallimibehbood20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718240/medium/292875e637ccc216bc7b67d5b1a8afba.jpeg",
- "joined": "2021-04-19 12:04:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730036",
- "username": "shoyu",
- "fullName": "shoyu",
- "avatarUrl": "https://www.gravatar.com/avatar/63482119a319a16ec7701c49c531212c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 09:53:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729712",
- "username": "Dharmayudha",
- "fullName": "Dharmayudha",
- "avatarUrl": "https://www.gravatar.com/avatar/101efaf88524ecc7518f1af1bf14494e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 05:29:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728346",
- "username": "qiuchunse",
- "fullName": "qiuchunse",
- "avatarUrl": "https://www.gravatar.com/avatar/42cf23315b5cc4f43fc547bea4e466ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 06:34:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718672",
- "username": "Al7eroglu",
- "fullName": "Al7eroglu",
- "avatarUrl": "https://www.gravatar.com/avatar/98c51c1cc547518ee67f9e4539ebbad5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 20:05:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718748",
- "username": "piglet1989",
- "fullName": "piglet1989",
- "avatarUrl": "https://www.gravatar.com/avatar/a0931dda1a7e9e0fc46c8287fec78762?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 22:00:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720048",
- "username": "dkngalam86",
- "fullName": "dkngalam86",
- "avatarUrl": "https://www.gravatar.com/avatar/ce4a0cbcc02580f25fa4b2f0d7301f5c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 17:34:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729438",
- "username": "adnankattekaden",
- "fullName": "Adnan Kattekaden (adnankattekaden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729438/medium/bc7d6ec3824e1fde2c8e408044662f2e.jpg",
- "joined": "2021-04-28 01:30:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14721452",
- "username": "abedirhan",
- "fullName": "abedirhan",
- "avatarUrl": "https://www.gravatar.com/avatar/45790482c9a92962180e914b267a0dcd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-21 18:26:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729310",
- "username": "STEPHANIEHERMANO9",
- "fullName": "STEPHANIEHERMANO9",
- "avatarUrl": "https://www.gravatar.com/avatar/5e76a79d22610c337e2b829b14ee505e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 22:11:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722162",
- "username": "Gengshanhe",
- "fullName": "Gengshanhe",
- "avatarUrl": "https://www.gravatar.com/avatar/f760f521a90eb200cae08c77323280f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-22 07:35:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728892",
- "username": "kaan.ezerr",
- "fullName": "kaan.ezerr",
- "avatarUrl": "https://www.gravatar.com/avatar/2480cd9ca1aa823a659bdd33c42642e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 13:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728652",
- "username": "gaokunjie",
- "fullName": "gaokunjie",
- "avatarUrl": "https://www.gravatar.com/avatar/46c53eacc7017d1df19251a99975ef24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 10:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722610",
- "username": "aldobr80",
- "fullName": "aldobr80",
- "avatarUrl": "https://www.gravatar.com/avatar/263ec92e408bff9a7f60e23302d85363?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-22 13:41:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709234",
- "username": "Maha_balieash",
- "fullName": "Maha_balieash",
- "avatarUrl": "https://www.gravatar.com/avatar/aa338505ce5ec408182ea0801620ce2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 20:17:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737456",
- "username": "mobin1398",
- "fullName": "Mobin (mobin1398)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737456/medium/076fa1a5de7808f091883768edc14981.jpeg",
- "joined": "2021-05-04 05:18:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693118",
- "username": "kingwar0296",
- "fullName": "Truơng Xuân Bin (kingwar0296)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693118/medium/66a81986470154b0dd7d5e74b6d34c7a.jpeg",
- "joined": "2021-04-01 09:21:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747934",
- "username": "Maneken",
- "fullName": "Maneken",
- "avatarUrl": "https://www.gravatar.com/avatar/549cff34b13c40001110d4ce45bd31bb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 15:50:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695868",
- "username": "xiong-pro",
- "fullName": "熊 (xiong-pro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695868/medium/74486c49b99ce4bc42a685e4d81d14b3.jpeg",
- "joined": "2021-04-12 07:01:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749536",
- "username": "nstnst",
- "fullName": "nstnst",
- "avatarUrl": "https://www.gravatar.com/avatar/ff3326744878afed6dc6ca78c892f33f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 12:40:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748896",
- "username": "geutopia",
- "fullName": "geutopia",
- "avatarUrl": "https://www.gravatar.com/avatar/fc2352d0363872f52e581c5a719614e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 05:39:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748742",
- "username": "loveleber",
- "fullName": "Stepan Leber (loveleber)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748742/medium/c81304317050a97d89692769a62275ef.png",
- "joined": "2021-05-10 03:48:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748730",
- "username": "33501164chen",
- "fullName": "33501164chen",
- "avatarUrl": "https://www.gravatar.com/avatar/6354d1ecab28e3679c9b479e9d7cb6b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 03:38:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696354",
- "username": "Tarekmou688",
- "fullName": "Tarekmou688",
- "avatarUrl": "https://www.gravatar.com/avatar/5acdc961959365efed3914d8936e73e5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 19:34:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696454",
- "username": "sandroserra672",
- "fullName": "SANDRO GAMES (sandroserra672)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696454/medium/f131157d18a06069a2e0ee970f353fc9.jpeg",
- "joined": "2021-04-03 22:16:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748176",
- "username": "manojmsritgokak",
- "fullName": "manojmsritgokak",
- "avatarUrl": "https://www.gravatar.com/avatar/7334ff6f013be8e734f2102c31f09e52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 18:21:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697402",
- "username": "faurt",
- "fullName": "faurt",
- "avatarUrl": "https://www.gravatar.com/avatar/43925abf1225de2379433eb97cc5de27?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-04 16:50:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747640",
- "username": "rostislavov6",
- "fullName": "rostislavov6",
- "avatarUrl": "https://www.gravatar.com/avatar/ad42117749964a92f3802770193807f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 13:11:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749944",
- "username": "omer.t",
- "fullName": "omer.t",
- "avatarUrl": "https://www.gravatar.com/avatar/826fc802fb2f74200a3bed705e6bfa0d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 18:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747588",
- "username": "monmode",
- "fullName": "mon mo (monmode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747588/medium/e91af5ff0b1fb64dbf6de00f43a9a17d.png",
- "joined": "2021-05-09 12:48:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747314",
- "username": "zx50365",
- "fullName": "zx50365",
- "avatarUrl": "https://www.gravatar.com/avatar/a23e1034e3596ddc2d220318c061bbe3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 10:32:09"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747312",
- "username": "JEANNETTE-SANCHEZ",
- "fullName": "JEANNETTE-SANCHEZ",
- "avatarUrl": "https://www.gravatar.com/avatar/5fa03a32dba8170724a22f6e7c619ea0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 10:29:38"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14764846,
+ "username": "mrvuong.bitcoin",
+ "fullName": "Ngọc Vương Trương (mrvuong.bitcoin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764846/medium/68d83ddd0632b9ff5d0ab6b85b038317.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 235
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 235
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 229,
+ "total": 235
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 301,
+ "total": 312
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 229,
+ "total": 235
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15031079,
+ "username": "jvxon",
+ "fullName": "Nhơn Võ (jvxon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031079/medium/1099cf15f2a152105f5014bb6e748954.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14087195,
+ "username": "nicklcanada",
+ "fullName": "Nicolae Liviu (nicklcanada)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ba04182461bb02bcf5d19d81c9b1cb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 104583
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104583
+ },
+ "translated": {
+ "tmMatch": 6536,
+ "default": 98047,
+ "total": 104583
+ },
+ "targetTranslated": {
+ "tmMatch": 6684,
+ "default": 101791,
+ "total": 108475
+ },
+ "translatedByMt": {
+ "tmMatch": 167,
+ "default": 4536,
+ "total": 4703
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6536,
+ "default": 98047,
+ "total": 104583
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14710992,
+ "username": "nihadermina2010",
+ "fullName": "Nihad Mahovic (nihadermina2010)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710992/medium/47ec1a0e2ee639420cf6fbf258eefd7f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 1,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 1,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669694,
+ "username": "txlyre",
+ "fullName": "Nika Kalanakova (txlyre)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669694/medium/a562de0efbc590c1b69f67c3308c47ed.jpg",
+ "preTranslated": 0,
+ "totalCosts": 478
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 478
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 473,
+ "total": 478
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 436,
+ "total": 440
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 473,
+ "total": 478
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14569424,
+ "username": "nikolajanke",
+ "fullName": "Nikola Jankovic (nikolajanke)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569424/medium/ae78764c40ae6a2b22cbd5b83e7a8bac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 65
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 49,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 48,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 49,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13856939,
+ "username": "Fooftilly",
+ "fullName": "Nikola Perović (Fooftilly)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13856939/medium/fa8d8cedef0ed56ad4d28a37bf19e389.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 13,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 12,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 13,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14543498,
+ "username": "numdar335",
+ "fullName": "Nikolaos Karellas (numdar335)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14543498/medium/86c5a5e34804ba36df795323383d16d9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 136
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 80
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 56,
+ "total": 80
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 60,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 56,
+ "total": 80
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 29,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 29,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 14,
+ "total": 16
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 29,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14740026,
+ "username": "nikunjsixteen",
+ "fullName": "Nikunj Prajapati (nikunjsixteen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740026/medium/0272b374779158ad11c0b85811365104.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 23,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 37,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 23,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14372734,
+ "username": "nilslberg",
+ "fullName": "Nils Lundberg (nilslberg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14372734/medium/8e7ff729c6a37721feec66e8da5f4cbd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13659341,
+ "username": "nimapourazad52",
+ "fullName": "Nima Pourazad (nimapourazad52)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13659341/medium/4ad7ae1e017a3fd4ddba1d1a8c30bb51.jpg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 47,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 88,
+ "total": 90
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 47,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14736586,
+ "username": "nixonogoi",
+ "fullName": "Nixon W. Ogoi (nixonogoi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736586/medium/ec41b3ccb42bed3514461d6998cf6e18.png",
+ "preTranslated": 0,
+ "totalCosts": 251
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 251
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 235,
+ "total": 251
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 187,
+ "total": 203
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 235,
+ "total": 251
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929161,
+ "username": "nonglekkaewkang60",
+ "fullName": "Nonglek Keawkang (nonglekkaewkang60)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929161/medium/94141a2c17bad7643d8b54e7d7137224.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eu",
+ "name": "Basque",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14693718,
+ "username": "cseac",
+ "fullName": "Noufel Mostufaoui (cseac)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693718/medium/7991d1cddf045a88d625e74c5723c2d8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 229
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 229
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 216,
+ "total": 229
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 183,
+ "total": 202
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 216,
+ "total": 229
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14715690,
+ "username": "chrischengdzonglee",
+ "fullName": "Nru Dzong (chrischengdzonglee)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715690/medium/b16e71c8140694d52d36a746d33d78d7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1936
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1936
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 1898,
+ "total": 1936
+ },
+ "targetTranslated": {
+ "tmMatch": 81,
+ "default": 2994,
+ "total": 3075
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 1898,
+ "total": 1936
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632172,
+ "username": "NryxMusic",
+ "fullName": "Nryx (NryxMusic)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632172/medium/9b192bb4cb67d5b37ba5c7d6d6a52880.png",
+ "preTranslated": 0,
+ "totalCosts": 469
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 469
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 457,
+ "total": 469
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 429,
+ "total": 446
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 457,
+ "total": 469
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14027913,
+ "username": "lopezi",
+ "fullName": "Nuno Lopes (lopezi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027913/medium/2adaffec100d7d6b3135442363319ea4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1969
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1969
+ },
+ "translated": {
+ "tmMatch": 72,
+ "default": 1897,
+ "total": 1969
+ },
+ "targetTranslated": {
+ "tmMatch": 68,
+ "default": 1989,
+ "total": 2057
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 455,
+ "total": 455
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 72,
+ "default": 1897,
+ "total": 1969
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14955021,
+ "username": "nurulayunikasra",
+ "fullName": "Nurul Ayuni Kasra (nurulayunikasra)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955021/medium/27403315b43bdeb02c23ac60235a8f74.png",
+ "preTranslated": 0,
+ "totalCosts": 757
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 757
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 747,
+ "total": 757
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 729,
+ "total": 745
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 747,
+ "total": 757
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14650202,
+ "username": "tomiy007",
+ "fullName": "Ogün Şenyiğit (tomiy007)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650202/medium/b8780422027597662112864f8c966216.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14703638,
+ "username": "okabrionz",
+ "fullName": "Oka bRionZ (okabrionz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703638/medium/d155aad65f6574ce5dc850691e4f7342.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838604,
+ "username": "lieolik",
+ "fullName": "Olga Shablykina (lieolik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/16597afc89da43effc248922ddd94267?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13017030,
+ "username": "yavorysynka",
+ "fullName": "Olga Yavorska (yavorysynka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13017030/medium/0ee0bf7d9ee331160d16e596b5e3f102.jpg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14930727,
+ "username": "ms_lechka",
+ "fullName": "Olia Tkachuk (ms_lechka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14930727/medium/41a455be95082d8b26b9eb5065dd6aac.jpg",
+ "preTranslated": 0,
+ "totalCosts": 332
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 332
+ },
+ "translated": {
+ "tmMatch": 39,
+ "default": 293,
+ "total": 332
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 250,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 39,
+ "default": 293,
+ "total": 332
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14734372,
+ "username": "oliver-soeser",
+ "fullName": "Oliver Söser (oliver-soeser)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734372/medium/4ef6d9d2327019661cc5b9191ce2ad32.png",
+ "preTranslated": 0,
+ "totalCosts": 476
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 476
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 433,
+ "total": 476
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 359,
+ "total": 400
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 433,
+ "total": 476
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12948080,
+ "username": "omarmear",
+ "fullName": "Omar Faruque (omarmear)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12948080/medium/1ca86fa82896019c17c87f3c0814de94.JPG",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 21,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 32,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 21,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759974,
+ "username": "onurf",
+ "fullName": "Onur F. Özben (onurf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759974/medium/f4393009ab051483d1e3fb647bff34bb.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 5,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 4,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 5,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786318,
+ "username": "raptoright",
+ "fullName": "Orhun Onar (raptoright)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786318/medium/7ea95d1beaa64d32c9af167ec73c44bc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 143
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 143
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 143,
+ "total": 143
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 143,
+ "total": 143
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563490,
+ "username": "GPorlando",
+ "fullName": "Orlando García Parra (GPorlando)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563490/medium/c606f7aa932c65e87021cb8aa275b579.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 0,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 0,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 0,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974005,
+ "username": "ovg1953",
+ "fullName": "Orson Galvão (ovg1953)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974005/medium/e21cf3c4cdf45b9bcdcf7d5451a647cf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 99,
+ "total": 99
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14694870,
+ "username": "osman.celikkol09",
+ "fullName": "Osman Çelikkol (osman.celikkol09)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694870/medium/e69e8de92b877174018cbbdfc588bd83.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 3,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 2,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 3,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14774492,
+ "username": "osmanliperde46",
+ "fullName": "Osmanlı Perde (osmanliperde46)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774492/medium/bac7237fa5c3b19cf42e68a90e98e016.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896966,
+ "username": "Oswaldoge444",
+ "fullName": "Oswaldo Gabriel Chacin Padrino (Oswaldoge444)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896966/medium/5e2b5aa7c19a63995192eede5cb187f8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 192
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 192
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 146,
+ "total": 192
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 169,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 55,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 146,
+ "total": 192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553586,
+ "username": "Otec_mk",
+ "fullName": "Otec_mk",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553586/medium/f7f9e730efd68d9bbf92991f88470a7e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1145
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1145
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 1134,
+ "total": 1145
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 1006,
+ "total": 1018
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 1134,
+ "total": 1145
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14055632,
+ "username": "Oymate",
+ "fullName": "Oymate",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14055632/medium/6307fe5e309a2baaa3b414482d2f4fe7.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 1,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 96,
+ "default": 2,
+ "total": 98
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 1,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14701334,
+ "username": "ozora-ogino",
+ "fullName": "Ozora Ogino (ozora-ogino)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14701334/medium/3b0ac84d5b08a7171e0157caba5e6ece.png",
+ "preTranslated": 0,
+ "totalCosts": 6350
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6350
+ },
+ "translated": {
+ "tmMatch": 207,
+ "default": 6143,
+ "total": 6350
+ },
+ "targetTranslated": {
+ "tmMatch": 469,
+ "default": 14583,
+ "total": 15052
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 630,
+ "total": 633
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 207,
+ "default": 6143,
+ "total": 6350
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837284,
+ "username": "PaN-0-1",
+ "fullName": "PaN-0-1",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837284/medium/7f1ad04832bb028fe66564804f5326ee.png",
+ "preTranslated": 0,
+ "totalCosts": 1492
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1492
+ },
+ "translated": {
+ "tmMatch": 64,
+ "default": 1428,
+ "total": 1492
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 1436,
+ "total": 1489
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 690,
+ "total": 695
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 64,
+ "default": 1428,
+ "total": 1492
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14856464,
+ "username": "redtux",
+ "fullName": "Pablo Hörtner (redtux)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/609316eff93c34d3ed62daa2d30dbaa8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 183
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 183
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 179,
+ "total": 183
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 176,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 179,
+ "total": 183
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14810002,
+ "username": "pettinarip",
+ "fullName": "Pablo Pettinari (pettinarip)",
+ "userRole": "Manager",
+ "avatarUrl": "https://www.gravatar.com/avatar/ba86a933c7e919a2b12f9a431e54fd9a?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 504,
+ "total": 509
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 593,
+ "total": 598
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13188316,
+ "username": "pakokrew",
+ "fullName": "Pacien Boisson (pakokrew)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13188316/medium/dc5354eac07cccb2529a5e207b1fad5b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13651371,
+ "username": "Pactera_Caiping",
+ "fullName": "Pactera_Vietnamese_Proofreader (Pactera_Caiping)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3661624d771e84aa4f4d472588a5d823?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 679
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 679
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 616,
+ "total": 679
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 925,
+ "total": 1003
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 63,
+ "default": 616,
+ "total": 679
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14920051,
+ "username": "panatagama",
+ "fullName": "Panatagama (panatagama)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920051/medium/9ba58eec03e143bcd1acbe5b2ecf8250.jpg",
+ "preTranslated": 0,
+ "totalCosts": 322
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 322
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 320,
+ "total": 322
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 288,
+ "total": 289
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 320,
+ "total": 322
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779586,
+ "username": "patrick020804",
+ "fullName": "Patrick D. Halberg (patrick020804)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779586/medium/e95f76f316fe199da587bb52cdb0e89d.png",
+ "preTranslated": 0,
+ "totalCosts": 480
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 480
+ },
+ "translated": {
+ "tmMatch": 102,
+ "default": 378,
+ "total": 480
+ },
+ "targetTranslated": {
+ "tmMatch": 97,
+ "default": 384,
+ "total": 481
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 276,
+ "total": 281
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 102,
+ "default": 378,
+ "total": 480
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837068,
+ "username": "parpok",
+ "fullName": "Patryk (parpok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837068/medium/ac82c254eca9f7c56757c56079b775c2.png",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 15,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 299,
+ "default": 94,
+ "total": 393
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 15,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14718060,
+ "username": "patrykremiszewski95",
+ "fullName": "Patryk Remiszewski (patrykremiszewski95)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718060/medium/703056468685f001cd29edf00e36549b.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14755848,
+ "username": "patryksko",
+ "fullName": "Patryk Skowroński (patryksko)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755848/medium/ede17321578c50cfee8060e1932673c6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 101
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 101
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 100,
+ "total": 101
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 63,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 100,
+ "total": 101
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14922727,
+ "username": "mookmook",
+ "fullName": "Pattaraporn Tripiyaratana (mookmook)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922727/medium/bb4344fb73b75a86661d7acaf9f8d1f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 107
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 107
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14047067,
+ "username": "molecula451",
+ "fullName": "Paul (molecula451)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14047067/medium/c9557eae6e796e2d6dbf0039bb95b7fc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 37,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 42,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 37,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896794,
+ "username": "Paulchemouni",
+ "fullName": "Paul Chemouni (Paulchemouni)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896794/medium/7c6117fe2c7fda4e2d5cc0c089d1d9e4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1559
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1559
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1546,
+ "total": 1559
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 1650,
+ "total": 1664
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 478,
+ "total": 480
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1546,
+ "total": 1559
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575966,
+ "username": "wackerow",
+ "fullName": "Paul Wackerow (wackerow)",
+ "userRole": "Manager",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575966/medium/1e22043e754e8830a78257791e1c6bad.png",
+ "preTranslated": 7,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 7,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14677262,
+ "username": "paulagoes",
+ "fullName": "Paula Goes (paulagoes)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677262/medium/abca98edc7fcbc7867e6aa1e9d6bddfb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 233
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 233
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 231,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 229,
+ "total": 231
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 231,
+ "total": 233
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14552668,
+ "username": "PAEPE",
+ "fullName": "Paulo Peres (PAEPE)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14552668/medium/3244c6b581c128c9acfbe381d35db6f3.png",
+ "preTranslated": 0,
+ "totalCosts": 154
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 154
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 137,
+ "total": 154
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 136,
+ "total": 152
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 137,
+ "total": 154
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14811680,
+ "username": "pavelmac06",
+ "fullName": "Pavel Macicek (pavelmac06)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811680/medium/6fff82b72c07e37f66ee0974314f0acb.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951249,
+ "username": "Paul_Lelet",
+ "fullName": "Pavlo Lelet (Paul_Lelet)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/07aabb98c3af5848cad5d3b955c8bc04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3064
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3064
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 3043,
+ "total": 3064
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 2537,
+ "total": 2557
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 76,
+ "total": 80
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 3043,
+ "total": 3064
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14013247,
+ "username": "zoul.dev",
+ "fullName": "Pavlo Makarov (zoul.dev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14013247/medium/2dc6b8dada85152cca8cacd239f65933.png",
+ "preTranslated": 0,
+ "totalCosts": 2728
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2728
+ },
+ "translated": {
+ "tmMatch": 946,
+ "default": 1782,
+ "total": 2728
+ },
+ "targetTranslated": {
+ "tmMatch": 991,
+ "default": 1934,
+ "total": 2925
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 946,
+ "default": 1782,
+ "total": 2728
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14610974,
+ "username": "siefca",
+ "fullName": "Paweł Wilk (siefca)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/09605c8aa8a94992806e6982bc79195f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2779
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2779
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 2751,
+ "total": 2779
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 2325,
+ "total": 2352
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 2751,
+ "total": 2779
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14699214,
+ "username": "pearl.kapoor.675",
+ "fullName": "Pearl Kapoor (pearl.kapoor.675)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699214/medium/12a7352656324f8a8d4375991d29f061.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14432240,
+ "username": "pedroocalado",
+ "fullName": "Pedro Calado (pedroocalado)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ddcc06f414afca43cae54ab7b8089dcc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 17,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 20,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 17,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959769,
+ "username": "pgsrcorreia",
+ "fullName": "Pedro Correia (pgsrcorreia)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959769/medium/4f0f9e379aa753defec44c63ca34e553.png",
+ "preTranslated": 0,
+ "totalCosts": 182
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 182
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 182,
+ "total": 182
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 186,
+ "total": 186
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 182,
+ "total": 182
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959431,
+ "username": "pedrorivera",
+ "fullName": "Pedro Rivera (pedrorivera)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959431/medium/5b94294dd0b65203871821c8f2c74f4c.png",
+ "preTranslated": 0,
+ "totalCosts": 1041
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1041
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 1023,
+ "total": 1041
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 1052,
+ "total": 1070
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 1023,
+ "total": 1041
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14886470,
+ "username": "pegzerthugger",
+ "fullName": "PegzOff TLPV (pegzerthugger)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886470/medium/b560016f96838976470e87b2f9077243.png",
+ "preTranslated": 0,
+ "totalCosts": 76
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 76
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959141,
+ "username": "peijie",
+ "fullName": "Peijie (peijie)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959141/medium/82f925f467905ab620b70a4b48eb25e8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 592
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 592
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 578,
+ "total": 592
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 981,
+ "total": 1007
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 578,
+ "total": 592
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13830805,
+ "username": "kecrily",
+ "fullName": "Percy (kecrily)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13830805/medium/93feb6bb91075026d6409acb05c90edd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 386
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 386
+ },
+ "translated": {
+ "tmMatch": 106,
+ "default": 280,
+ "total": 386
+ },
+ "targetTranslated": {
+ "tmMatch": 138,
+ "default": 362,
+ "total": 500
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 106,
+ "default": 280,
+ "total": 386
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14840702,
+ "username": "EmpirePers",
+ "fullName": "Persacho (EmpirePers)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840702/medium/dab9b07237a7db5ed0e7b5a526edeb9d.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 14,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838076,
+ "username": "pd.duvnjak",
+ "fullName": "Petar Duvnjak (pd.duvnjak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838076/medium/300021775f969ae9e2137cafb3c4b61e.png",
+ "preTranslated": 0,
+ "totalCosts": 80
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 80
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14717562,
+ "username": "PeterTakahashi",
+ "fullName": "Peter Takahashi (PeterTakahashi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717562/medium/0a655e422c3b96351c89bb35120cdb02.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14977831,
+ "username": "PeterKecman",
+ "fullName": "Peter Škoda Kecman (PeterKecman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977831/medium/e1e3f150ce524a6cb88fccb8b4f52422.png",
+ "preTranslated": 0,
+ "totalCosts": 49405
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49405
+ },
+ "translated": {
+ "tmMatch": 998,
+ "default": 48407,
+ "total": 49405
+ },
+ "targetTranslated": {
+ "tmMatch": 934,
+ "default": 43726,
+ "total": 44660
+ },
+ "translatedByMt": {
+ "tmMatch": 78,
+ "default": 18,
+ "total": 96
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 998,
+ "default": 48407,
+ "total": 49405
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14811054,
+ "username": "podiumdesu",
+ "fullName": "PetnaKanojo (podiumdesu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811054/medium/425ba0ebc0a6bf2478e9bda9c233e4d1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13979819,
+ "username": "petr.eli.cz",
+ "fullName": "Petr Eliáš (petr.eli.cz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13979819/medium/acece5759ed12f18bedfd2ef2e5f11fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3356
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3356
+ },
+ "translated": {
+ "tmMatch": 83,
+ "default": 3273,
+ "total": 3356
+ },
+ "targetTranslated": {
+ "tmMatch": 80,
+ "default": 3125,
+ "total": 3205
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 83,
+ "default": 3273,
+ "total": 3356
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14654988,
+ "username": "phamtrongtan27091992",
+ "fullName": "Phamtrongtan Pham (phamtrongtan27091992)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654988/medium/57ed17587fa8f8f5d0b383cda16bb695.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14825546,
+ "username": "ph4ni",
+ "fullName": "Phanindra (ph4ni)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825546/medium/34f82ec0a369275b6764b4d12b91cf48.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14245260,
+ "username": "phichayut_N",
+ "fullName": "Phichayut Ngoennim (phichayut_N)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/306a9b5263f98bbabfa9bdd42f265133?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 413
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 413
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 371,
+ "total": 413
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 143,
+ "total": 169
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 371,
+ "total": 413
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952363,
+ "username": "ensingerphilipp",
+ "fullName": "Philipp Ensinger (ensingerphilipp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952363/medium/491e25bf6c69040369e342c3b1d12249.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6187
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6187
+ },
+ "translated": {
+ "tmMatch": 198,
+ "default": 5989,
+ "total": 6187
+ },
+ "targetTranslated": {
+ "tmMatch": 184,
+ "default": 5878,
+ "total": 6062
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 68,
+ "total": 72
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 198,
+ "default": 5989,
+ "total": 6187
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553038,
+ "username": "philippseifert",
+ "fullName": "Philipp Seifert (philippseifert)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553038/medium/57eeff85645c6b316f8fd2338ead7e06.JPG",
+ "preTranslated": 0,
+ "totalCosts": 2451
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2451
+ },
+ "translated": {
+ "tmMatch": 149,
+ "default": 2302,
+ "total": 2451
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 2168,
+ "total": 2305
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 189,
+ "total": 195
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 149,
+ "default": 2302,
+ "total": 2451
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660858,
+ "username": "Mahmoudalsyd",
+ "fullName": "Philosophy فَلْسَفَة (Mahmoudalsyd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660858/medium/18b0483f449f20999652cc9384994164.jpg",
+ "preTranslated": 0,
+ "totalCosts": 456
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 456
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 455,
+ "total": 456
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 450,
+ "total": 452
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 251,
+ "total": 251
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 455,
+ "total": 456
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969403,
+ "username": "hongthaipro",
+ "fullName": "Phạm Hồng Thái (hongthaipro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969403/medium/19300e3d649b1ad84292b1d4493307d6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665128,
+ "username": "Pierlu_be",
+ "fullName": "Pierluigi Belpassi (Pierlu_be)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b09dd2530fb46b957c0a8c72efb1fc5b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4623
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4623
+ },
+ "translated": {
+ "tmMatch": 351,
+ "default": 4272,
+ "total": 4623
+ },
+ "targetTranslated": {
+ "tmMatch": 308,
+ "default": 4231,
+ "total": 4539
+ },
+ "translatedByMt": {
+ "tmMatch": 90,
+ "default": 1617,
+ "total": 1707
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 351,
+ "default": 4272,
+ "total": 4623
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14763818,
+ "username": "fontainepr9",
+ "fullName": "Pierre Fontaine (fontainepr9)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763818/medium/7fe833564b2595abbcb1908ceada87bf.png",
+ "preTranslated": 0,
+ "totalCosts": 161
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 161
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 161,
+ "total": 161
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 155,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 161,
+ "total": 161
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14006913,
+ "username": "pjgeutjens",
+ "fullName": "Pieter Jan Geutjens (pjgeutjens)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14006913/medium/583d19dbd62b786dcf5a3affaf7ad07f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3117
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3117
+ },
+ "translated": {
+ "tmMatch": 112,
+ "default": 3005,
+ "total": 3117
+ },
+ "targetTranslated": {
+ "tmMatch": 121,
+ "default": 3040,
+ "total": 3161
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 434,
+ "total": 434
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 112,
+ "default": 3005,
+ "total": 3117
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14835760,
+ "username": "Pineapple010223",
+ "fullName": "Pineapple010223",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14835760/medium/36a5126df6f3fab680a105268d03592c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 535
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 535
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 518,
+ "total": 535
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 806,
+ "total": 848
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 518,
+ "total": 535
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14876410,
+ "username": "dlphin",
+ "fullName": "Pița Rareș (dlphin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876410/medium/e48734129bc32a7965b5c2f11bd36339.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 24,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 28,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 24,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733806,
+ "username": "PlutoXI",
+ "fullName": "Pluto (PlutoXI)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733806/medium/e09f8d8ae5c644cb039288e6af0a18cf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1570
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1570
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 1561,
+ "total": 1570
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 1398,
+ "total": 1407
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 870,
+ "total": 871
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 1561,
+ "total": 1570
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14645360,
+ "username": "Podda",
+ "fullName": "Podda",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645360/medium/7fe21c8131ede3095aefd1ae698697d6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12646942,
+ "username": "polhenarejos",
+ "fullName": "Pol Henarejos (polhenarejos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/06188d13a0a5f26e95a6136d18bde4a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1449
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1447
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 1352,
+ "total": 1447
+ },
+ "targetTranslated": {
+ "tmMatch": 114,
+ "default": 1448,
+ "total": 1562
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 1352,
+ "total": 1447
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747136",
- "username": "zgq",
- "fullName": "钟贵清 (zgq)",
- "avatarUrl": "https://www.gravatar.com/avatar/3782cfff6682dc36777a3ec9dd69b6ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 08:00:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746842",
- "username": "jeronimo534",
- "fullName": "jeronimo534",
- "avatarUrl": "https://www.gravatar.com/avatar/834692f32141005659815bade3df9ce3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 03:59:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698510",
- "username": "JIJUQI",
- "fullName": "JIJUQI",
- "avatarUrl": "https://www.gravatar.com/avatar/4305d26702c862e61679aa29e229c291?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 12:15:10"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14389094,
+ "username": "Pol_Lanski",
+ "fullName": "Pol_Lanski",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14389094/medium/7c36be19eeb088c45a38e21224aca68f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 147
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 147
+ },
+ "translated": {
+ "tmMatch": 75,
+ "default": 72,
+ "total": 147
+ },
+ "targetTranslated": {
+ "tmMatch": 80,
+ "default": 87,
+ "total": 167
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 75,
+ "default": 72,
+ "total": 147
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14385582,
+ "username": "pongpan",
+ "fullName": "Pongpan Nakkaew (pongpan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14385582/medium/306a571c35caa1c778b853fd1596ef1c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 171
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 171
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 128,
+ "total": 171
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 69,
+ "total": 110
+ },
+ "translatedByMt": {
+ "tmMatch": 42,
+ "default": 3,
+ "total": 45
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 128,
+ "total": 171
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14463078,
+ "username": "poojaranjan",
+ "fullName": "Pooja Ranjan (poojaranjan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14463078/medium/0f7b024651717543c907bb53c95160bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 64
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 64
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 51,
+ "total": 64
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 79,
+ "total": 106
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 51,
+ "total": 64
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14899686,
+ "username": "preetishpriyadarshi",
+ "fullName": "Preetish Priyadarshi Samal (preetishpriyadarshi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/648e4c1db799f61d97a4b0be7a1969cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 136,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 189,
+ "total": 193
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 136,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14724040,
+ "username": "novak.primoz88",
+ "fullName": "Primoz Novak (novak.primoz88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724040/medium/e251041b3f0c7892719ebf6dd03925ea.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 254
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 254
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 248,
+ "total": 254
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 237,
+ "total": 243
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 248,
+ "total": 254
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14406046,
+ "username": "pidproc",
+ "fullName": "Process Admin (pidproc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14406046/medium/f451ca8dc97fd25ace517f11543ca10e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 116,
+ "default": 0,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 202,
+ "default": 0,
+ "total": 202
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 116,
+ "default": 0,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13328854,
+ "username": "petraki",
+ "fullName": "Přemysl Čermák (petraki)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13328854/medium/4385b86d39f657caa0890af44d0c3bb4.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14556592,
+ "username": "rr440407",
+ "fullName": "QIUYU ZHANG (rr440407)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd7c43e7a307f73b2b6542de52f10734?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002503,
+ "username": "xuqiaose",
+ "fullName": "Qiao se Xu (xuqiaose)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002503/medium/e5d866fa06f7598f347de663345aff21.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 13,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 15,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 13,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14674090,
+ "username": "qingfend",
+ "fullName": "Qingfeng Du (qingfend)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674090/medium/2898446861662d939ca5907665a1acfe.jpg",
+ "preTranslated": 0,
+ "totalCosts": 233
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 233
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 232,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 368,
+ "total": 370
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 232,
+ "total": 233
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14118485,
+ "username": "quan25102001",
+ "fullName": "Quân Nguyễn (quan25102001)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14118485/medium/4dd3f368dd18eecee5fb92000e8e333e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907607,
+ "username": "dqduong102",
+ "fullName": "Quốc Dương Đàng (dqduong102)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907607/medium/4f8e413bd85cd3aabc332c49bab08fae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1186
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1186
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 1179,
+ "total": 1186
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 1663,
+ "total": 1678
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 1179,
+ "total": 1186
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546158,
+ "username": "mahesh.rba",
+ "fullName": "R Mahesh (mahesh.rba)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546158/medium/c97755abdd8e61793d456b3c584269a9.png",
+ "preTranslated": 0,
+ "totalCosts": 64
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 64
+ },
+ "translated": {
+ "tmMatch": 36,
+ "default": 28,
+ "total": 64
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 39,
+ "total": 76
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 36,
+ "default": 28,
+ "total": 64
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14571728,
+ "username": "rivaldosetiawan135",
+ "fullName": "R Samudra arc (rivaldosetiawan135)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571728/medium/eba3c27436fd6ea7ccd24667f5c6bead.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14188975,
+ "username": "radkobanchev00",
+ "fullName": "R. MorgenStern (radkobanchev00)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14188975/medium/a583eee4bd70b9585b2d7f00246490cc.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14658714,
+ "username": "rabihkhattar66",
+ "fullName": "Rabih Khattar (rabihkhattar66)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658714/medium/05db5d5aeff930184ab6bd6ffb367b2b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 45,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 225,
+ "default": 758,
+ "total": 983
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 45,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631192,
+ "username": "rafael.yanase",
+ "fullName": "Rafael Rezende (rafael.yanase)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631192/medium/543e6b0627ae51d46ab52d78181f46be.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1136
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1136
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 1124,
+ "total": 1136
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 1173,
+ "total": 1185
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 1124,
+ "total": 1136
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14158555,
+ "username": "Tested",
+ "fullName": "Raffy (Tested)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158555/medium/b86cc3992311f7cb381f5a20d087929d.png",
+ "preTranslated": 0,
+ "totalCosts": 112
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 112
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 66,
+ "total": 112
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 71,
+ "total": 123
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 66,
+ "total": 112
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14970323,
+ "username": "ragnolimichele99",
+ "fullName": "Ragn Oh (ragnolimichele99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970323/medium/fb22954c81db3329ada19b179d4f63f6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 133
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861756,
+ "username": "RahayuRafika_12",
+ "fullName": "Rahayu Rafikahwulan Sari (RahayuRafika_12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 13492
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 6,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698890",
- "username": "YuriNasci",
- "fullName": "Yuri A. Nascimento (YuriNasci)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698890/medium/513da602a6d73f3135da857f9193ecf1.jpeg",
- "joined": "2021-04-05 16:25:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746684",
- "username": "kilavuzolcay29",
- "fullName": "Olcay Kilavuz (kilavuzolcay29)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746684/medium/ef9d4a80d3fe7525665fab4a5ab3b7a5.jpeg",
- "joined": "2021-05-09 01:23:29"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746202",
- "username": "Yosef_533",
- "fullName": "Yosef_533",
- "avatarUrl": "https://www.gravatar.com/avatar/b184ae3908a109484a9177e598f6da4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 16:22:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695710",
- "username": "Macar",
- "fullName": "Macar",
- "avatarUrl": "https://www.gravatar.com/avatar/d40b460c3627565f67fe0aa35c45af08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 08:09:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695632",
- "username": "floch.1609",
- "fullName": "Florian Christ (floch.1609)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695632/medium/2e0d988d1b405f4d8d18dde5e68fec00.jpeg",
- "joined": "2021-04-03 07:09:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745882",
- "username": "q1445686457",
- "fullName": "刘正茂 (q1445686457)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745882/medium/d5c63e581f4fc3ce544be3f139970cae.png",
- "joined": "2021-05-08 12:58:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750534",
- "username": "giorgi.chibalashvili",
- "fullName": "Giorgi Chibalashvili (giorgi.chibalashvili)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750534/medium/875385af80fde6091496fd0e35087ca2.jpeg",
- "joined": "2021-05-11 04:10:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751612",
- "username": "Shoubair",
- "fullName": "Shoubair",
- "avatarUrl": "https://www.gravatar.com/avatar/f1cb6f523c135da8608cb81a69d2e74f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 15:44:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751494",
- "username": "ahdsadsdadsfa",
- "fullName": "ahdsadsdadsfa",
- "avatarUrl": "https://www.gravatar.com/avatar/d49dbd1d42281f1a375ceeda4dd4ea35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 14:02:16"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12713
+ },
+ "translated": {
+ "tmMatch": 331,
+ "default": 12382,
+ "total": 12713
+ },
+ "targetTranslated": {
+ "tmMatch": 295,
+ "default": 10236,
+ "total": 10531
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 331,
+ "default": 12382,
+ "total": 12713
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693136",
- "username": "velat62",
- "fullName": "VeLaT Kırmızı (velat62)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693136/medium/e3142b46dc57480848cbd863d4f66396.jpeg",
- "joined": "2021-04-01 09:34:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693526",
- "username": "baguspramono456",
- "fullName": "Bagoes Pramono Jati (baguspramono456)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693526/medium/5b6bc25f1c75e1854329f91efab10a4f.jpeg",
- "joined": "2021-04-01 14:55:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693814",
- "username": "RobertoReale",
- "fullName": "RobertoReale",
- "avatarUrl": "https://www.gravatar.com/avatar/fc82b753d20d17d202c031b54f2032c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 19:54:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751220",
- "username": "xinchencai",
- "fullName": "xinchencai",
- "avatarUrl": "https://www.gravatar.com/avatar/d7fe518b9aa784d43e88051c629cada2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 11:24:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693898",
- "username": "hiPOLIto",
- "fullName": "hiPOLIto",
- "avatarUrl": "https://www.gravatar.com/avatar/3154dcdde67077c9af439a4ab55e83e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 21:31:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750988",
- "username": "Godofdeath",
- "fullName": "Godofdeath",
- "avatarUrl": "https://www.gravatar.com/avatar/2d7386b24ae210f45290b9053f78595a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 08:59:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750760",
- "username": "11477398000106",
- "fullName": "11477398000106",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750760/medium/5b97c8e2cf14616660248a28e527d28c.png",
- "joined": "2021-05-11 06:41:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694234",
- "username": "hamadorakzai2",
- "fullName": "Hamad Orakzai (hamadorakzai2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694234/medium/047c3a44f244b0141ee36814745a91dc.jpeg",
- "joined": "2021-04-02 04:32:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750070",
- "username": "qnetvova",
- "fullName": "Вова Кащавцев (qnetvova)",
- "avatarUrl": "https://www.gravatar.com/avatar/df21222322ccf8cb8452c4204e88086d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 11:05:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750484",
- "username": "xiao_lichou",
- "fullName": "xiao_lichou",
- "avatarUrl": "https://www.gravatar.com/avatar/4620b9899ac3623b2c166b023e091e12?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 03:31:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694652",
- "username": "hungnoisoibm",
- "fullName": "hungnoisoibm",
- "avatarUrl": "https://www.gravatar.com/avatar/ad34e9211a7df137c4c3335802cbf373?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-02 10:30:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750398",
- "username": "pambered",
- "fullName": "박준서 (pambered)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750398/medium/16afd692cd7bbacd51f6cec08bc21cc3.png",
- "joined": "2021-05-11 02:14:33"
- },
- "languages": [
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694742",
- "username": "gabrielmartin686",
- "fullName": "Gabriel Martin (gabrielmartin686)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694742/medium/bbb0f5ba50472c0253dc368c3e39a37b.jpeg",
- "joined": "2021-04-02 11:50:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750364",
- "username": "loox",
- "fullName": "loox",
- "avatarUrl": "https://www.gravatar.com/avatar/d2bc83e28c75e075ca6c404503d31a51?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 01:36:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694868",
- "username": "asltr",
- "fullName": "asltr",
- "avatarUrl": "https://www.gravatar.com/avatar/a7fe4e457a16a6509e5c0a6f063f1e3e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-02 13:53:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750194",
- "username": "Jenniesong",
- "fullName": "Jenniesong",
- "avatarUrl": "https://www.gravatar.com/avatar/b0bbf4c548a65d1d5d44f9da650e8757?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 22:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750140",
- "username": "Jinosh",
- "fullName": "Jinosh",
- "avatarUrl": "https://www.gravatar.com/avatar/1f0ec10dc21445b1279340e5b8a2c517?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 21:51:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750136",
- "username": "Vit_Hue",
- "fullName": "빛나는돌멩이휴 (Vit_Hue)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750136/medium/8ce738246f2d3ed6e1f50369c20783fe.jpeg",
- "joined": "2021-05-10 21:43:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695574",
- "username": "Fady_alchaar",
- "fullName": "Fady_alchaar",
- "avatarUrl": "https://www.gravatar.com/avatar/7bb6c90b5772615da68bc1ec046527de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 06:14:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698900",
- "username": "najimediainf",
- "fullName": "arduino najimedia (najimediainf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698900/medium/48a20733cf1223fc7ae5dbe80e0475c3.jpeg",
- "joined": "2021-04-05 16:32:24"
- },
- "languages": [
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 765
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 725,
+ "total": 765
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 644,
+ "total": 711
+ },
+ "translatedByMt": {
+ "tmMatch": 35,
+ "default": 0,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 725,
+ "total": 765
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15032613,
+ "username": "3olotoy83",
+ "fullName": "Rahmatullo Abdullaev (3olotoy83)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032613/medium/bbddc287052a26aacbc92b56388427c9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 37,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 35,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 37,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14375988,
+ "username": "rajeshkumar757575",
+ "fullName": "Rajesh Kumar S (rajeshkumar757575)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14375988/medium/a81f95900709adc13e0a72e0c37ecb70.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3093
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3093
+ },
+ "translated": {
+ "tmMatch": 998,
+ "default": 2095,
+ "total": 3093
+ },
+ "targetTranslated": {
+ "tmMatch": 1800,
+ "default": 3797,
+ "total": 5597
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 998,
+ "default": 2095,
+ "total": 3093
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866212,
+ "username": "ramesh.jetsoft",
+ "fullName": "Ramesh R (ramesh.jetsoft)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866212/medium/1d8f9a5ae2f70dd83e171ebb1aeb3558.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 8,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14883776,
+ "username": "ramirolucasb",
+ "fullName": "Ramiro Baladron (ramirolucasb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883776/medium/b7bec81cb51a512c787582e9673a418a.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687594,
+ "username": "cruzgutierrezramiro46",
+ "fullName": "Ramiro Cruz Gutiérrez (cruzgutierrezramiro46)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687594/medium/d18d25f17f29d4266866f7bc9633e172.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15031031,
+ "username": "Ramonski88",
+ "fullName": "Ramonski (Ramonski88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031031/medium/131fb2000b0b7fb9c5b1e66b48efc721.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 750
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 750
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 715,
+ "total": 750
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 982,
+ "total": 1024
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 715,
+ "total": 750
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14641166,
+ "username": "Pentron",
+ "fullName": "Raphael Winkler (Pentron)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14641166/medium/fcdec0ce2fcd767a359f61677cddff59.jpg",
+ "preTranslated": 0,
+ "totalCosts": 185
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 185
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 178,
+ "total": 185
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 165,
+ "total": 172
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 178,
+ "total": 185
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14763978,
+ "username": "rayxeden",
+ "fullName": "Ray Eden (rayxeden)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763978/medium/4f9c92629cbbd74784e018e397fbf629.png",
+ "preTranslated": 0,
+ "totalCosts": 262
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 262
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 259,
+ "total": 262
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 252,
+ "total": 255
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 259,
+ "total": 262
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14348910,
+ "username": "reddynagendra2000",
+ "fullName": "Reddy Nagendra Kola (reddynagendra2000)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14348910/medium/c7841b89c57d45ab87d0b344bbe422e7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 9,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 8,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 9,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14962881,
+ "username": "xSpeed",
+ "fullName": "Reed-SolomonE (xSpeed)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962881/medium/0c409aba2e7ab01ee0fe436b87395698.JPG",
+ "preTranslated": 0,
+ "totalCosts": 522
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 522
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 514,
+ "total": 522
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 461,
+ "total": 469
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 514,
+ "total": 522
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14601794,
+ "username": "reinhold.puhr",
+ "fullName": "Reinhold Puhr (reinhold.puhr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601794/medium/7acb85a54ff8ea998e5446ddb67b0b2d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996511,
+ "username": "rlandeira",
+ "fullName": "Renato A. Landeira (rlandeira)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996511/medium/bc8903b9375a605c6351bc77c9976524.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14951241,
+ "username": "WhoamIXOXO00",
+ "fullName": "Renie Chung (WhoamIXOXO00)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951241/medium/764650e8547dad13f3e3a2c862c1d28a.png",
+ "preTranslated": 0,
+ "totalCosts": 736
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 736
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 662,
+ "total": 736
+ },
+ "targetTranslated": {
+ "tmMatch": 115,
+ "default": 1122,
+ "total": 1237
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 74,
+ "default": 662,
+ "total": 736
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632796,
+ "username": "good.studentsun",
+ "fullName": "Rentao Sun (good.studentsun)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632796/medium/7a8ea0a073a1a5944a23bd39d02cdcb8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14960405,
+ "username": "youssef_garib",
+ "fullName": "Rexson Rexson (youssef_garib)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960405/medium/3eddc7573634d80c4f9e5414242d21df.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14917179,
+ "username": "reinholland88",
+ "fullName": "Reza Al Farizi (reinholland88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917179/medium/92cd0de32c16fea70c7f00c6b3c2c9e4.PNG",
+ "preTranslated": 0,
+ "totalCosts": 3781
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3781
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 3739,
+ "total": 3781
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 3014,
+ "total": 3049
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 3739,
+ "total": 3781
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14364198,
+ "username": "rezaa_kh",
+ "fullName": "Reza Khojasteh (rezaa_kh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364198/medium/755513245ba7ad31b5565724a43e7757.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665754,
+ "username": "R3z4_Pr0gramm3r",
+ "fullName": "Reza Rafsanjani (R3z4_Pr0gramm3r)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665754/medium/72c1f853dc01a48166c2ac4476d4a63a.png",
+ "preTranslated": 0,
+ "totalCosts": 254
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 254
+ },
+ "translated": {
+ "tmMatch": 80,
+ "default": 174,
+ "total": 254
+ },
+ "targetTranslated": {
+ "tmMatch": 124,
+ "default": 194,
+ "total": 318
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 80,
+ "default": 174,
+ "total": 254
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14283246,
+ "username": "bitcardo",
+ "fullName": "Ricardo Carrasco (bitcardo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14283246/medium/391b9d56cdeca52c3182f89ff57ea712.jpg",
+ "preTranslated": 0,
+ "totalCosts": 802
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 802
+ },
+ "translated": {
+ "tmMatch": 491,
+ "default": 311,
+ "total": 802
+ },
+ "targetTranslated": {
+ "tmMatch": 531,
+ "default": 358,
+ "total": 889
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 491,
+ "default": 311,
+ "total": 802
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14777654,
+ "username": "rikcags",
+ "fullName": "Ricardo Gaxiola (rikcags)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777654/medium/2b82111d83c35beff3f05476b3a65b2f.png",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 77,
+ "total": 77
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14773280,
+ "username": "ricardosouzasantos12",
+ "fullName": "Ricardo Santos (ricardosouzasantos12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773280/medium/5a652d356da40908fe076115199f1edc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699434",
- "username": "odishosharbel",
- "fullName": "Sharbel Odisho (odishosharbel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699434/medium/131d2908929cf8a934584850536757f9.jpeg",
- "joined": "2021-04-06 01:52:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708658",
- "username": "adrian.olguin-ext",
- "fullName": "Adrian OLGUIN (adrian.olguin-ext)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708658/medium/b4843de838470aeb9a3c36510431bbb1.jpeg",
- "joined": "2021-10-30 13:49:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738426",
- "username": "lihaobhsfer",
- "fullName": "Hao Li (lihaobhsfer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738426/medium/8994ae5e1631a3f0717e38e266d353a1.png",
- "joined": "2021-05-04 19:46:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739298",
- "username": "nirasdib",
- "fullName": "nirasdib",
- "avatarUrl": "https://www.gravatar.com/avatar/02234bf5e832a5ad7a0dbc0013abec46?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 10:39:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739278",
- "username": "ram.vivek.d",
- "fullName": "Ram Vivek (ram.vivek.d)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739278/medium/4cf1e434cba4c773d0727df670681890.jpeg",
- "joined": "2021-05-05 10:14:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739134",
- "username": "rao_bayern",
- "fullName": "rao_bayern",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739134/medium/99aaf39da3c911445771db13a153f6ff.jpg",
- "joined": "2021-05-05 08:15:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739030",
- "username": "13770002197",
- "fullName": "13770002197",
- "avatarUrl": "https://www.gravatar.com/avatar/668d1387da6eefabf38c7f28498516f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 06:45:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705050",
- "username": "Loy123",
- "fullName": "Loy123",
- "avatarUrl": "https://www.gravatar.com/avatar/252e8412b5989108cae87794fd3b5e9b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 12:29:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705502",
- "username": "Majid959",
- "fullName": "Majid959",
- "avatarUrl": "https://www.gravatar.com/avatar/9333ec4d3f01f3a82c8cfd538bc5c55d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 21:12:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705630",
- "username": "markfherwig",
- "fullName": "markfherwig",
- "avatarUrl": "https://www.gravatar.com/avatar/9676acf7dc15de5553c0b07e8be9dfd5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 23:52:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706522",
- "username": "SebastianJorg",
- "fullName": "SebastianJorg",
- "avatarUrl": "https://www.gravatar.com/avatar/31cfe7d7873b42f0a790c9bc9a3f1d8f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 17:33:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738498",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/87a42c07ab562c259ab1750e1de1f063?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 21:23:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706884",
- "username": "Touka228",
- "fullName": "Touka228",
- "avatarUrl": "https://www.gravatar.com/avatar/30a47d6969a44689faeebb0a7c2f9a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 02:37:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739560",
- "username": "Keyjey",
- "fullName": "Keyjey",
- "avatarUrl": "https://www.gravatar.com/avatar/cfa407da67d423c769525a76f01c2ef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 14:43:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707204",
- "username": "962241455",
- "fullName": "weichao (962241455)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707204/medium/db57ab04312e7e22708d09efc96b367a.png",
- "joined": "2021-04-11 08:45:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707282",
- "username": "galuhoracel",
- "fullName": "Galuh Panduriksa Buana (galuhoracel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707282/medium/3850731d92534b6096de77e15292eb27.jpg",
- "joined": "2021-04-11 09:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707394",
- "username": "AntonioPelli",
- "fullName": "AntonioPelli",
- "avatarUrl": "https://www.gravatar.com/avatar/ef8a216fb930be15aece0e72e6128cb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 11:29:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707446",
- "username": "rafael007",
- "fullName": "rafael007",
- "avatarUrl": "https://www.gravatar.com/avatar/12ac8242f0b549cafb2e414cc29ebef5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 12:29:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707756",
- "username": "Khapouey",
- "fullName": "Nicolas Bueche (Khapouey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707756/medium/e47aebc801e052936c4f617c8a70d1af.jpeg",
- "joined": "2021-04-11 18:36:53"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14768694,
+ "username": "ricardo85x",
+ "fullName": "Ricardo T (ricardo85x)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14768694/medium/e63f9b8d3d789dc08be178d569abef0d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842386,
+ "username": "rxchard",
+ "fullName": "Richard (rxchard)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842386/medium/26d2e5d1d9b5f0e6ec25878feb24840b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1318
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1318
+ },
+ "translated": {
+ "tmMatch": 75,
+ "default": 1243,
+ "total": 1318
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 1156,
+ "total": 1221
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 75,
+ "default": 1243,
+ "total": 1318
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682564,
+ "username": "rich1n",
+ "fullName": "Richard Rodríguez (rich1n)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682564/medium/3198f898fb53f31fa32bf08236627a34.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 760
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 760
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 738,
+ "total": 760
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 778,
+ "total": 804
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 738,
+ "total": 760
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14994889,
+ "username": "t123987132",
+ "fullName": "Rick Ho (t123987132)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994889/medium/93d1e53923e9e7018fa27234967859e8.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13187413,
+ "username": "ridhoaliga",
+ "fullName": "Ridho Aliga (ridhoaliga)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/43f58da1a3e76a8bde665a986496b096?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 228
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 228
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 223,
+ "total": 228
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 207,
+ "total": 212
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 223,
+ "total": 228
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553216,
+ "username": "rielychen",
+ "fullName": "Riely (rielychen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/2fd387175612fea1ecb0db49b0178419.png",
+ "preTranslated": 0,
+ "totalCosts": 32535
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32534
+ },
+ "translated": {
+ "tmMatch": 1326,
+ "default": 31208,
+ "total": 32534
+ },
+ "targetTranslated": {
+ "tmMatch": 2140,
+ "default": 46529,
+ "total": 48669
+ },
+ "translatedByMt": {
+ "tmMatch": 81,
+ "default": 1646,
+ "total": 1727
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1326,
+ "default": 31208,
+ "total": 32534
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708002",
- "username": "Yongy-vers",
- "fullName": "Yongy-vers",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708002/medium/158184073958629bcb405fed4f8cd0e6.png",
- "joined": "2021-04-12 01:09:32"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14711482,
+ "username": "rfcheung",
+ "fullName": "Ring Fai Cheung (rfcheung)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711482/medium/541ada9b93f309d11b396afb79efbce5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 118
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 118
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 118,
+ "total": 118
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 134,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 118,
+ "total": 118
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13645461,
+ "username": "Rixcian",
+ "fullName": "Rixcian",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13645461/medium/49e26bb6cb92868a712624036a627dc3.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14816800,
+ "username": "Sumari",
+ "fullName": "Rizqie Alfian mutha (Sumari)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816800/medium/73d286f72b7399e0c4acb1ed4a3812b8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14357794,
+ "username": "robertdosa",
+ "fullName": "Robert Dosa (robertdosa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png",
+ "preTranslated": 0,
+ "totalCosts": 78308
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 78308
+ },
+ "translated": {
+ "tmMatch": 5476,
+ "default": 72832,
+ "total": 78308
+ },
+ "targetTranslated": {
+ "tmMatch": 5103,
+ "default": 62369,
+ "total": 67472
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5476,
+ "default": 72832,
+ "total": 78308
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14568310,
+ "username": "robert.sokic",
+ "fullName": "Robert Sokic (robert.sokic)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568310/medium/a49b0489bfcb2c7698c19e57fc1f0621.jpg",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 104,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 88,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 104,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14812426,
+ "username": "Robert-Me",
+ "fullName": "Robert-Me",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812426/medium/c6d86ade730b6777e9e90c4ab6ca2227.png",
+ "preTranslated": 0,
+ "totalCosts": 229
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 229
+ },
+ "translated": {
+ "tmMatch": 61,
+ "default": 168,
+ "total": 229
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 133,
+ "total": 195
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 61,
+ "default": 168,
+ "total": 229
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14576728,
+ "username": "celeste.roberto",
+ "fullName": "Roberto Celeste (celeste.roberto)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576728/medium/c8b5a113ef9b9fa558c05ef471a182d2.png",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14568946,
+ "username": "RockyJ",
+ "fullName": "Rocky (RockyJ)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568946/medium/c0d702a99ef9bdd2a9498d25255e2efd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 113
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 113
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 87,
+ "total": 113
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 84,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 87,
+ "total": 113
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12476506,
+ "username": "rodrigohenrik",
+ "fullName": "Rodrigo Henrik (rodrigohenrik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cf014358a25e10213239dd22e2814072?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 627
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 627
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 622,
+ "total": 627
+ },
+ "targetTranslated": {
+ "tmMatch": 200,
+ "default": 1288,
+ "total": 1488
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 81,
+ "total": 81
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 622,
+ "total": 627
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837106,
+ "username": "rofis",
+ "fullName": "Rofis Elias Filho (rofis)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837106/medium/e87698d84d41483de2a57483ff5d9455.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 276
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 276
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 275,
+ "total": 276
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 278,
+ "total": 279
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 275,
+ "total": 276
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024737,
+ "username": "rogertw87",
+ "fullName": "Roger CY LI (rogertw87)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024737/medium/1c947a00daf3ab3b6118b7080d28d672.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 233
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 233
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 188,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 351,
+ "total": 408
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 188,
+ "total": 233
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14000715,
+ "username": "rodgeraraujo",
+ "fullName": "Rogerio Araújo (rodgeraraujo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000715/medium/1f83cb72b3024f8d05bb7f445712ad07.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 43
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14785220,
+ "username": "rokinot",
+ "fullName": "Rokinot Channel (rokinot)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785220/medium/4a6f6852105b606735b08d45c74b0fd7.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669084,
+ "username": "romgille",
+ "fullName": "Romain Gille (romgille)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669084/medium/fd229db6a99e7b8d53d09bc0d4c44145.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14711642,
+ "username": "kenowlee",
+ "fullName": "Ronaldo Santos (kenowlee)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711642/medium/cc1ab7ad933f06b0fc99de7457c6b3c9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 131
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 131
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 129,
+ "total": 131
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 144,
+ "total": 146
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 129,
+ "total": 131
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14729416,
+ "username": "ronnyfahrudin",
+ "fullName": "Ronny Fahrudin (ronnyfahrudin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729416/medium/b86dd8784f1012350c8387237a5f6014.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 19,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 36,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 19,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632574,
+ "username": "Rorical",
+ "fullName": "Rorical",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632574/medium/278721df71dd6a9e56c9479c2cd46cd4.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665948,
+ "username": "rosdec",
+ "fullName": "Rosario De Chiara (rosdec)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665948/medium/1c9ce66f9649bddfc810e39ee52ebf90.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 759
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 759
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 717,
+ "total": 759
+ },
+ "targetTranslated": {
+ "tmMatch": 40,
+ "default": 745,
+ "total": 785
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 717,
+ "total": 759
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14666926,
+ "username": "ruchitrami",
+ "fullName": "Ruchit Rami (ruchitrami)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666926/medium/247af4069c989fa0999afad408eba72b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553630,
+ "username": "rudygt",
+ "fullName": "Rudy Alvarez (rudygt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553630/medium/9e2a515a92ed47bf1105715fe4be0b3f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 157
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 157
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 157,
+ "total": 157
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 161,
+ "total": 161
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 157,
+ "total": 157
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14033224,
+ "username": "rudy.hirusta",
+ "fullName": "Rudy Hirusta (rudy.hirusta)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033224/medium/2b2622a81698524fb73ccc6afdd36bb0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 108,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 108,
+ "total": 110
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 108,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14829178,
+ "username": "EffectChen",
+ "fullName": "Rui Chen (EffectChen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/13566f4f50fbac5c80fdecc351488099.png",
+ "preTranslated": 0,
+ "totalCosts": 5205
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4344
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 4289,
+ "total": 4344
+ },
+ "targetTranslated": {
+ "tmMatch": 88,
+ "default": 6733,
+ "total": 6821
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 669,
+ "total": 681
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 4289,
+ "total": 4344
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737778",
- "username": "darksrlacc",
- "fullName": "darksrlacc",
- "avatarUrl": "https://www.gravatar.com/avatar/8529b28c92caf5e2d19b644a091e8fce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 09:25:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708306",
- "username": "eln_ferdi_17120",
- "fullName": "Ferdi Elmas (eln_ferdi_17120)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708306/medium/7db13590f56454f87cc7593a2e0d6d6a.jpeg",
- "joined": "2021-04-12 05:50:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708418",
- "username": "binanceczrahim",
- "fullName": "Rahim Pourrahimi (binanceczrahim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708418/medium/8ec39aea97de9826679a60cf359138f8.jpg",
- "joined": "2021-04-12 07:23:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737524",
- "username": "Rasshepkin",
- "fullName": "Rasshepkin",
- "avatarUrl": "https://www.gravatar.com/avatar/ce43ec774ac109964b50f2124b80aab0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 06:19:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739390",
- "username": "extyy",
- "fullName": "ext (extyy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739390/medium/96eed724023903f33a485e5a76b77ca1.png",
- "joined": "2021-05-05 12:10:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739664",
- "username": "Sebasti",
- "fullName": "Sebasti",
- "avatarUrl": "https://www.gravatar.com/avatar/5a20bc3dd6c3feedfe8615a3ad69d065?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 16:22:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699456",
- "username": "Dailybetter",
- "fullName": "Daily better by one percent (Dailybetter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699456/medium/779d7d67ed3ad8c30f9ead5c16c91275.jpeg",
- "joined": "2021-04-06 02:08:29"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 856
+ },
+ "translated": {
+ "tmMatch": 65,
+ "default": 791,
+ "total": 856
+ },
+ "targetTranslated": {
+ "tmMatch": 92,
+ "default": 1053,
+ "total": 1145
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 65,
+ "default": 791,
+ "total": 856
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741418",
- "username": "pashckova7",
- "fullName": "Яна Пашкова (pashckova7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741418/medium/6ffbdca230bc5c5aafc8854f859723f5.jpeg",
- "joined": "2021-05-06 16:22:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745458",
- "username": "sebastien.ferrien",
- "fullName": "SebastienFERRIEN (sebastien.ferrien)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745458/medium/0148b8f185941fce1bdea8c802263b5f.jpeg",
- "joined": "2021-05-08 07:26:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699672",
- "username": "chen_jing",
- "fullName": "chen_jing",
- "avatarUrl": "https://www.gravatar.com/avatar/70f5b7edcd032a06a62b88dafcef340d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-06 04:52:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745024",
- "username": "CharlieBrown27",
- "fullName": "CharlieBrown27",
- "avatarUrl": "https://www.gravatar.com/avatar/bec2d95016d820102d74f44b71cb2d10?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 23:15:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14700950",
- "username": "Shusheng",
- "fullName": "Shusheng",
- "avatarUrl": "https://www.gravatar.com/avatar/885f2f3a4431b68bcf41b764ac373209?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-06 22:36:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743694",
- "username": "damis6286749",
- "fullName": "Damian Drozdowski (damis6286749)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14743694/medium/2420faac514071bff5bd9aec15ce8376.png",
- "joined": "2021-05-07 10:09:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14701968",
- "username": "19524809969",
- "fullName": "19524809969",
- "avatarUrl": "https://www.gravatar.com/avatar/fe1ea93178dc1f0ebb38817161515aae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-07 11:50:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14742992",
- "username": "pptuan",
- "fullName": "pptuan",
- "avatarUrl": "https://www.gravatar.com/avatar/0f83eb0fb3d777c69bcf272ca9805fd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 03:35:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14742726",
- "username": "kkguo",
- "fullName": "kkguo",
- "avatarUrl": "https://www.gravatar.com/avatar/c97990fd44c81b4ddc431c77707978b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 00:26:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741674",
- "username": "bomorales",
- "fullName": "Boris Morales (bomorales)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741674/medium/d72ea8fd1c3a094f037a5eaabbbe1992.jpeg",
- "joined": "2021-06-06 19:50:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741346",
- "username": "Yury777",
- "fullName": "Yury777",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741346/medium/f0687e3c3e3f859eb020e579f5362e66.jpg",
- "joined": "2021-05-06 15:55:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705048",
- "username": "daniel.zhang",
- "fullName": "daniel.zhang",
- "avatarUrl": "https://www.gravatar.com/avatar/d3472257e40f015e5ca52b709b271503?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 12:28:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740952",
- "username": "Copime",
- "fullName": "Cony Ravn (Copime)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740952/medium/99db2583b6433ea4eddf19060c4559f8.jpeg",
- "joined": "2021-05-06 13:42:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740768",
- "username": "jordanxp",
- "fullName": "Bitcoinjs (jordanxp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740768/medium/0f73e7f6699ec62626abaca438ebcb18.png",
- "joined": "2021-05-06 10:57:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703322",
- "username": "zy_sky",
- "fullName": "zy_sky",
- "avatarUrl": "https://www.gravatar.com/avatar/32aac151c1ff032dd6b9ea0c64d612cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-08 10:00:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740510",
- "username": "firatcelikj",
- "fullName": "firatcelikj",
- "avatarUrl": "https://www.gravatar.com/avatar/606799cd05fa39f95a3aa5d559390f8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 07:52:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740274",
- "username": "yorkzhong",
- "fullName": "York Zhong (yorkzhong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740274/medium/5c15a5af5447fd487b5408236ec883f2.jpeg",
- "joined": "2021-05-06 04:09:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740064",
- "username": "jesusmurga80",
- "fullName": "Jesús Murguia (jesusmurga80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740064/medium/d8cdf73705d2954f808441733cab0d21.jpeg",
- "joined": "2021-05-06 00:32:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703406",
- "username": "mertaliop93",
- "fullName": "Ali Mert (mertaliop93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703406/medium/089126b78aad61af9e9a31b729884057.png",
- "joined": "2021-04-08 10:58:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704396",
- "username": "KyrieLee0823",
- "fullName": "KyrieLee0823",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704396/medium/93e86f6f825e26f41ce75353166d2e5f.jpeg",
- "joined": "2021-04-09 04:32:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704716",
- "username": "Sansey89",
- "fullName": "Sansey89",
- "avatarUrl": "https://www.gravatar.com/avatar/2ceaa48f718cf0499b5eccd82570f13c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 08:35:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704910",
- "username": "Tibounne",
- "fullName": "Tibounne",
- "avatarUrl": "https://www.gravatar.com/avatar/30f36ea7b3997d6bf4e816a2f95722fd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 10:38:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787830",
- "username": "Novalina26",
- "fullName": "Novalina26",
- "avatarUrl": "https://www.gravatar.com/avatar/12c84e9c2167c20221fdab982da8ae3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 22:46:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787988",
- "username": "thaiduckman",
- "fullName": "Suppatach Sabpisal (thaiduckman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787988/medium/9524a35b654ed1767e2ed2aeddf23edb.jpeg",
- "joined": "2021-06-06 02:49:18"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14691832,
+ "username": "imrulo.eth",
+ "fullName": "Ruslan Ferrales (imrulo.eth)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691832/medium/edac3ef58631bde43e40ac815ef18dc5.png",
+ "preTranslated": 0,
+ "totalCosts": 625
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 625
+ },
+ "translated": {
+ "tmMatch": 78,
+ "default": 547,
+ "total": 625
+ },
+ "targetTranslated": {
+ "tmMatch": 156,
+ "default": 719,
+ "total": 875
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 111,
+ "total": 116
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 78,
+ "default": 547,
+ "total": 625
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14848176,
+ "username": "rustamg23",
+ "fullName": "Rustam Gubaydullin (rustamg23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848176/medium/31ad821cd8075115d725d13c885e9669.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9823
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9823
+ },
+ "translated": {
+ "tmMatch": 201,
+ "default": 9622,
+ "total": 9823
+ },
+ "targetTranslated": {
+ "tmMatch": 174,
+ "default": 7243,
+ "total": 7417
+ },
+ "translatedByMt": {
+ "tmMatch": 36,
+ "default": 1859,
+ "total": 1895
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 201,
+ "default": 9622,
+ "total": 9823
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737902,
+ "username": "ruthiel",
+ "fullName": "Ruthiel Trevisan (ruthiel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737902/medium/e80d38870c2a31088c929bdee3c74491.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14275472,
+ "username": "solehsetiawan4987gmai.com",
+ "fullName": "S setiawan (solehsetiawan4987gmai.com)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14275472/medium/38b43c4a4b8f4869574c444575dc6039.gif",
+ "preTranslated": 0,
+ "totalCosts": 53
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 53
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 1,
+ "total": 53
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 1,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 1,
+ "total": 53
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14031890,
+ "username": "Saravud2534",
+ "fullName": "SARAWUT NAKKOED (Saravud2534)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14031890/medium/d907438d4cc32dc13aab3685892a4e52.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14408684,
+ "username": "sadanaitongnun",
+ "fullName": "SGTDANAITONGNUN TH# แม๊กเหนือเมฆ (sadanaitongnun)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14408684/medium/2f40952af4e1418b6c27bfe6b919a705.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14652378,
+ "username": "ST19990909",
+ "fullName": "ST19990909",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652378/medium/6898cf09dad007fbb48cae095467baf1.png",
+ "preTranslated": 0,
+ "totalCosts": 5747
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5747
+ },
+ "translated": {
+ "tmMatch": 76,
+ "default": 5671,
+ "total": 5747
+ },
+ "targetTranslated": {
+ "tmMatch": 133,
+ "default": 8115,
+ "total": 8248
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 1558,
+ "total": 1568
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 76,
+ "default": 5671,
+ "total": 5747
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002975,
+ "username": "Sabine.Goesker",
+ "fullName": "Sabine Gösker (Sabine.Goesker)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002975/medium/c27bb77b234f3e4492a3880925ffa6f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 695
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 695
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 600,
+ "total": 695
+ },
+ "targetTranslated": {
+ "tmMatch": 82,
+ "default": 598,
+ "total": 680
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 600,
+ "total": 695
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14997983,
+ "username": "saitalay86",
+ "fullName": "Sait ALAY (saitalay86)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14997983/medium/8a892e10792fe564e2bfad9938fb2cf2.png",
+ "preTranslated": 0,
+ "totalCosts": 130
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 130
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 111,
+ "total": 130
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 90,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 111,
+ "total": 130
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732192,
+ "username": "sajadsm1979",
+ "fullName": "Sajad Saraf-Moghadam (sajadsm1979)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732192/medium/bb9cb9241c6d42b09206ec449534d22f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 233
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 233
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 193,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 230,
+ "total": 286
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 193,
+ "total": 233
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14713486,
+ "username": "Mr.sajad_shirazi",
+ "fullName": "Sajad Shirazi (Mr.sajad_shirazi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/998b7b85f1a4c127a0d1d0e7257320a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14831696,
+ "username": "sajjad.k.btc",
+ "fullName": "Sajjad Kadkhodayi (sajjad.k.btc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831696/medium/761047e774f85ccbe49fdf1cbce4a429.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 248
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 234,
+ "total": 248
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 235,
+ "total": 249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 234,
+ "total": 248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13975691,
+ "username": "samajammin",
+ "fullName": "Sam Richards (samajammin)",
+ "userRole": "Manager",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13975691/medium/3e46a11d03a06145d4fadc5cecc54b4c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 0,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894890",
- "username": "lishubin",
- "fullName": "lishubin",
- "avatarUrl": "https://www.gravatar.com/avatar/79ae6df98209bdfdd5d2c2b22b5675e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 02:54:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618130",
- "username": "tomengo18",
- "fullName": "tomengo18",
- "avatarUrl": "https://www.gravatar.com/avatar/7d0bcc43e2ff06f7f28bcc858aee99e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-10 06:56:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616052",
- "username": "goggle.sup.exe",
- "fullName": "Sports Dünyasí (goggle.sup.exe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616052/medium/bdedc6818b854bb25aa7080325dc9870.jpg",
- "joined": "2021-02-09 02:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857906",
- "username": "MaltMaster",
- "fullName": "MaltMaster",
- "avatarUrl": "https://www.gravatar.com/avatar/43e7cae952e6f90fff0da05fbb2323ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-29 12:40:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616204",
- "username": "xnscripter",
- "fullName": "Случайный Василий (xnscripter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616204/medium/342965f0f9c89dd68cd14a6d84dc2f89.jpeg",
- "joined": "2021-02-09 04:47:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616616",
- "username": "Rykov7",
- "fullName": "Rykov7",
- "avatarUrl": "https://www.gravatar.com/avatar/12062dc199074f191507f6bf32998110?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 09:29:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617170",
- "username": "zemoreno",
- "fullName": "zemoreno",
- "avatarUrl": "https://www.gravatar.com/avatar/a80afb30dda4d2df512cb4ca992d56b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 15:47:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617538",
- "username": "kinpatucom821",
- "fullName": "神垣徹 (kinpatucom821)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617538/medium/94ef6e179ce2466820a8be176a23fe58.jpeg",
- "joined": "2021-02-09 21:45:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856606",
- "username": "palivodatana",
- "fullName": "Таня Паливода (palivodatana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14856606/medium/7cc259b0abd0db950d0976a759006cf9.jpeg",
- "joined": "2021-07-28 15:32:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617970",
- "username": "GabinF",
- "fullName": "GabinF",
- "avatarUrl": "https://www.gravatar.com/avatar/bd3f91f6748ff6c0e25ce47533346a6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-10 04:57:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855682",
- "username": "yuriko627",
- "fullName": "yuriko627",
- "avatarUrl": "https://www.gravatar.com/avatar/0f0ad27df78e1732f726d245c20395f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 21:09:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855440",
- "username": "noezsoph",
- "fullName": "noezsoph",
- "avatarUrl": "https://www.gravatar.com/avatar/2e88cd889e295539bd27dfdaa4713131?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 15:07:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861524",
- "username": "72784246",
- "fullName": "72784246",
- "avatarUrl": "https://www.gravatar.com/avatar/3fbe91500f10fd7fba47af0d7f7a82e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 03:35:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618526",
- "username": "amirreza.jamadi123",
- "fullName": "amirreza jamadi (amirreza.jamadi123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618526/medium/5aac4b3dbe9d850974f3ab3762200af0.jpeg",
- "joined": "2021-11-14 04:28:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618822",
- "username": "boberghakan",
- "fullName": "Håkan Boberg (boberghakan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618822/medium/1826c536c279dedfb90a18f976d4a677.jpg",
- "joined": "2021-02-10 16:01:24"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 121,
+ "default": 0,
+ "total": 121
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854540",
- "username": "hashem.klash",
- "fullName": "هاشم الجراح (hashem.klash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854540/medium/44ec31371796e47f23251fafd424015e.jpeg",
- "joined": "2021-07-27 01:11:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618984",
- "username": "globaldiamond",
- "fullName": "Sergio Baptista (globaldiamond)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618984/medium/4a2d0cce4cc15092229eb8f77fb31e90.jpeg",
- "joined": "2021-02-10 18:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853708",
- "username": "JoshuaDouglas",
- "fullName": "Joshua Douglas (JoshuaDouglas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853708/medium/e03f5506eb972011709a8245c9ca8a2c.png",
- "joined": "2021-08-13 10:50:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619184",
- "username": "felixastin",
- "fullName": "Felix Astin (felixastin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619184/medium/c0d6e6cdce8a04c6662634e6b9cc2e63.jpg",
- "joined": "2021-02-10 23:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853062",
- "username": "qlan9895",
- "fullName": "qlan9895",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853062/medium/5867c0d015e37fd74ddae64343408f57.jpeg",
- "joined": "2021-07-25 21:06:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619272",
- "username": "WELLSMATOS",
- "fullName": "WELLSMATOS",
- "avatarUrl": "https://www.gravatar.com/avatar/159495cd24610fb5a088553d90b3c113?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 00:50:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619372",
- "username": "Moriarty6086",
- "fullName": "Moriarty6086",
- "avatarUrl": "https://www.gravatar.com/avatar/60f7578976768c64d31ae8a8436fdf80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 03:08:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14860374",
- "username": "dai12307614257",
- "fullName": "dai12307614257",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14860374/medium/87c4ff8904e9214a7933b2dc87f8ec4b.jpg",
- "joined": "2021-07-31 05:01:57"
- },
- "languages": [
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 0,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 0,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616048",
- "username": "chenchi12345",
- "fullName": "chenchi12345",
- "avatarUrl": "https://www.gravatar.com/avatar/4354042aaddab1540b7a80ec2d710ca2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 02:55:34"
- },
- "languages": [
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851694",
- "username": "HediBoughrara",
- "fullName": "HediBoughrara",
- "avatarUrl": "https://www.gravatar.com/avatar/ad2089e2b82fc3ac1966ee67f7ed698e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 12:56:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614626",
- "username": "Twait",
- "fullName": "Twait",
- "avatarUrl": "https://www.gravatar.com/avatar/fcebf23a0dd6c8322fccdb3152af705b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 05:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611762",
- "username": "huba123456",
- "fullName": "huba123456",
- "avatarUrl": "https://www.gravatar.com/avatar/dbbf5a9f9b3c44cdf72c3d3c7a9075e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 06:18:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14612716",
- "username": "xuserx",
- "fullName": "xuserx",
- "avatarUrl": "https://www.gravatar.com/avatar/d7df7e67ab9d995c15db71542368ce5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 20:20:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614264",
- "username": "nobuyo.fujiwara",
- "fullName": "nobuyo.fujiwara",
- "avatarUrl": "https://www.gravatar.com/avatar/8fb7ee72f4232c7e8b9fdc61d3016272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 23:33:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865892",
- "username": "Nikita210787",
- "fullName": "Никита Сычев (Nikita210787)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865892/medium/e16ba7a43b37ec6937faaabacb2a2db9.jpeg",
- "joined": "2021-08-04 05:18:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614476",
- "username": "Cespada",
- "fullName": "Cespada",
- "avatarUrl": "https://www.gravatar.com/avatar/ed71f48cb267a8ad50d88eb856578ea1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 03:37:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865552",
- "username": "Gabi10",
- "fullName": "Gabi10",
- "avatarUrl": "https://www.gravatar.com/avatar/e170911914f7ef59e6cb4ff6a39cfbbf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 22:35:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614484",
- "username": "eamirkhanizade",
- "fullName": "eamirkhanizade",
- "avatarUrl": "https://www.gravatar.com/avatar/c5e81281e3d1253f6c8d598590eddef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 03:45:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614490",
- "username": "johnvan7",
- "fullName": "Giovanni Vella (johnvan7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614490/medium/aef0021503ebb295fcc9a9b00376ef6d.jpeg",
- "joined": "2021-05-20 06:10:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614576",
- "username": "ramarei",
- "fullName": "ramarei",
- "avatarUrl": "https://www.gravatar.com/avatar/6fa48dcaa57be1b87277c31b5fd2c93f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 04:49:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615220",
- "username": "djzamok5",
- "fullName": "Виктор Журавлев (djzamok5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615220/medium/954cd8dfceafc6d22808e84e512fcb64.jpeg",
- "joined": "2021-02-08 12:45:44"
- },
- "languages": [
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 107,
+ "default": 0,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616034",
- "username": "okdonga",
- "fullName": "Katie Dong-Yoon Ok (okdonga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616034/medium/0d97f449662816d3d7d7d25842b8d5ee.jpeg",
- "joined": "2021-02-14 20:19:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14864484",
- "username": "Marie_S",
- "fullName": "Marie_S",
- "avatarUrl": "https://www.gravatar.com/avatar/4e343fca70d9176a4b52fc4db519e737?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 05:40:37"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 96,
+ "default": 0,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14864064",
- "username": "hernanmaidana1988",
- "fullName": "hernan orlando maidana (hernanmaidana1988)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14864064/medium/46975b940c9a2ca74d08dbf12e478132.png",
- "joined": "2021-08-02 22:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615472",
- "username": "heidonomm",
- "fullName": "Heido Nõmm (heidonomm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615472/medium/465b048e8f24a7e392ef1a8cd0049585.jpeg",
- "joined": "2021-02-08 15:32:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14863046",
- "username": "Dariya.N.",
- "fullName": "Dariya.N.",
- "avatarUrl": "https://www.gravatar.com/avatar/30084612ca4522708638906df410cdac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 12:12:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615600",
- "username": "Salimcenter",
- "fullName": "Salimcenter",
- "avatarUrl": "https://www.gravatar.com/avatar/8ed5a375f178a962134c71de40950d32?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 17:04:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862854",
- "username": "patrickmelessen85",
- "fullName": "Patrick Melessen (patrickmelessen85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862854/medium/1c9dc7127c050ab9aae8313057085940.png",
- "joined": "2021-08-02 03:27:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862764",
- "username": "Letmein130470",
- "fullName": "Letmein130470",
- "avatarUrl": "https://www.gravatar.com/avatar/3376cdf2bf0e54cf5835afeb714f308f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 01:53:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615680",
- "username": "ossip",
- "fullName": "Ossip Kaehr (ossip)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615680/medium/2001bfe527e063d6d6babb618985242d.jpeg",
- "joined": "2021-02-08 18:28:48"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 63,
+ "default": 0,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615710",
- "username": "xuandat261020002",
- "fullName": "Xuân Đạt (xuandat261020002)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615710/medium/94d0bddf3ce101d66c551350beb056e2.jpeg",
- "joined": "2021-02-08 19:22:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862102",
- "username": "ChongmingDu",
- "fullName": "Bill Du (ChongmingDu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862102/medium/23d4d96ff9036edbd983e9f16f3fb990.png",
- "joined": "2021-08-01 12:59:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619508",
- "username": "truongx",
- "fullName": "truongx",
- "avatarUrl": "https://www.gravatar.com/avatar/c4af4eee56e0ad6323a85a7bc1588c1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 05:08:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851418",
- "username": "leow1702",
- "fullName": "leow1702",
- "avatarUrl": "https://www.gravatar.com/avatar/d2309e85fa2c541c3de3625e3dc57279?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 07:22:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866708",
- "username": "guillea",
- "fullName": "guillea",
- "avatarUrl": "https://www.gravatar.com/avatar/120a638f56532289a422f47622640a47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 17:02:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839804",
- "username": "lyn716",
- "fullName": "Lyn Lu (lyn716)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14839804/medium/256e57264762872cea7bc4a0f921bf0e.jpeg",
- "joined": "2021-07-14 15:48:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844290",
- "username": "kecajemu89",
- "fullName": "Kecaj (kecajemu89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844290/medium/3ebac622b3b983234dda6ae7f1712ec5.gif",
- "joined": "2021-07-18 12:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623346",
- "username": "babayori1",
- "fullName": "babayori1",
- "avatarUrl": "https://www.gravatar.com/avatar/21c859b297929b547ab9c4059045328b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 20:24:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14624552",
- "username": "noxigniter",
- "fullName": "Pyotr Romanov (noxigniter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14624552/medium/19431a499f1f1835d67a2704d2a01aaf.png",
- "joined": "2021-02-14 19:40:17"
- },
- "languages": [
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842776",
- "username": "crayon_chan",
- "fullName": "程乾宇 (crayon_chan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842776/medium/1aeb461b887d1bf88a5bad9bb3bb2cc8.png",
- "joined": "2021-07-17 03:44:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14841648",
- "username": "LeeTC",
- "fullName": "LeeTC",
- "avatarUrl": "https://www.gravatar.com/avatar/9254f476936dfbb26f5164eafc4d0f74?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 04:05:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625440",
- "username": "xoxolchuk1313",
- "fullName": "Антон Дума (xoxolchuk1313)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625440/medium/5da34b9b57561beafbe83f2134fb0b57.jpeg",
- "joined": "2021-02-15 10:16:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625604",
- "username": "gmmabin",
- "fullName": "Bin Ma (gmmabin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625604/medium/58e5c243bb7de920fbccc96e3ae3f92f.jpg",
- "joined": "2021-02-15 12:46:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840592",
- "username": "Antonakak",
- "fullName": "Antonakak",
- "avatarUrl": "https://www.gravatar.com/avatar/dc7e9e9b57cb4ad65063f8aa759afc4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-15 07:59:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840438",
- "username": "Pavel666999",
- "fullName": "Pavel666999",
- "avatarUrl": "https://www.gravatar.com/avatar/689316eabf17212c13f2fbee16df9ee8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-15 05:14:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839310",
- "username": "Crescen.dll",
- "fullName": "Crescen.dll",
- "avatarUrl": "https://www.gravatar.com/avatar/1d706200f0d846e124ed9a2c34ecde96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 09:06:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844658",
- "username": "Soulman16",
- "fullName": "Soulman16",
- "avatarUrl": "https://www.gravatar.com/avatar/8147d51da1bfcb240fcc927fce6fa04b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 21:27:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625850",
- "username": "voluntario.crowdin",
- "fullName": "voluntario.crowdin",
- "avatarUrl": "https://www.gravatar.com/avatar/d3ebe01a94716cae69fbb51684d26a98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 16:54:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838842",
- "username": "kerimkoca88",
- "fullName": "Kerim Koca (kerimkoca88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838842/medium/fefd07d2e53e2b807c9cadda3a333da6.jpeg",
- "joined": "2021-08-05 07:56:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627276",
- "username": "Iva12",
- "fullName": "Iva12",
- "avatarUrl": "https://www.gravatar.com/avatar/067a50157fc8bc03d96d1ffca3e563e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-16 14:33:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627652",
- "username": "Faielle03",
- "fullName": "Faielle03",
- "avatarUrl": "https://www.gravatar.com/avatar/e422d2a1dc994a58fb34b2a26b8d630b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-16 17:21:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838770",
- "username": "gatyo",
- "fullName": "gatyo",
- "avatarUrl": "https://www.gravatar.com/avatar/5b1fa67f081714fba603d8fdda34227a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 01:33:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627852",
- "username": "lybsanradnaev1979",
- "fullName": "Лубсан Раднаев (lybsanradnaev1979)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627852/medium/a50107a5ee39a0aa838bd5dd59998fb6.jpeg",
- "joined": "2021-02-17 00:18:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627914",
- "username": "shane.hung",
- "fullName": "Shane Hung (shane.hung)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627914/medium/3417db7761d1d00691eb3200883f254c.jpg",
- "joined": "2021-02-17 00:45:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837686",
- "username": "ant.polastri",
- "fullName": "Antonio Polastri (ant.polastri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837686/medium/51b79101860a525d4509fb482f0cc335.jpeg",
- "joined": "2021-07-13 05:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14628636",
- "username": "Jayeye3",
- "fullName": "Jayeye3",
- "avatarUrl": "https://www.gravatar.com/avatar/8fbbb887b5ada7e0c5658161f2a9ebf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 10:09:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623132",
- "username": "chaoyu1015",
- "fullName": "韩超宇 (chaoyu1015)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623132/medium/c323f4ca9d9fab20b6c89d18a7037e89.jpg",
- "joined": "2021-02-16 01:55:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622478",
- "username": "nizamdelibass",
- "fullName": "nizamdelibass",
- "avatarUrl": "https://www.gravatar.com/avatar/46d50291a93a590c80d14ffdf62e39f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 05:29:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619612",
- "username": "CA212",
- "fullName": "CA212",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619612/medium/870934f531cf24cb60756f4636d06625.png",
- "joined": "2021-04-24 11:50:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848766",
- "username": "HsuWei",
- "fullName": "Comedy (HsuWei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848766/medium/6212cabff0202100889ef2ca4cfb75f3.png",
- "joined": "2021-07-25 22:16:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851224",
- "username": "ladybear7817",
- "fullName": "Seanna Price (ladybear7817)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851224/medium/696955991fca8ffd1257ac24ebe8200a.jpeg",
- "joined": "2021-07-24 03:28:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850830",
- "username": "seoyourlife",
- "fullName": "Maksim Golovanov (seoyourlife)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850830/medium/60eaa4d97d53013df099dcd268e40f8f.jpeg",
- "joined": "2021-07-23 17:15:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620004",
- "username": "Goiasterraboa",
- "fullName": "Goiasterraboa",
- "avatarUrl": "https://www.gravatar.com/avatar/48bbb932aae2cd7b3f5ac90dd87af026?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 11:43:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850666",
- "username": "asahiocean",
- "fullName": "ASAHI OCEAN (asahiocean)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850666/medium/132858901f4f7bf503a23379fa70ebe8.jpeg",
- "joined": "2021-07-23 14:12:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850620",
- "username": "kasirajr",
- "fullName": "kasirajr",
- "avatarUrl": "https://www.gravatar.com/avatar/23d880eb1495c6e5706a7b813867abdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-23 13:28:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620462",
- "username": "patelli",
- "fullName": "patelli",
- "avatarUrl": "https://www.gravatar.com/avatar/f3752fba59805c404fc5aa9400c3839c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 17:52:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849192",
- "username": "pradesa",
- "fullName": "pradesa",
- "avatarUrl": "https://www.gravatar.com/avatar/a257bd6a3113924b001afd6e7f51dbbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 10:42:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849142",
- "username": "PaulEmilio",
- "fullName": "Paul Emilio Washington (PaulEmilio)",
- "avatarUrl": "https://www.gravatar.com/avatar/77d019ddd7fc23003aa33ac899fa45b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 10:12:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848888",
- "username": "kubekow",
- "fullName": "Jakub Owsianik (kubekow)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848888/medium/341f1925fe30ba8c1e7e30647bf4933e.jpeg",
- "joined": "2021-07-22 05:42:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620620",
- "username": "idecorehk",
- "fullName": "idecore service (idecorehk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620620/medium/5749b64d2107c996a9b3a303cf720585.jpg",
- "joined": "2021-02-11 21:26:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622360",
- "username": "alperfindik",
- "fullName": "alperfindik",
- "avatarUrl": "https://www.gravatar.com/avatar/b4b68015c4d14ead63ad0124f7141686?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 03:28:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14555448",
- "username": "CanuckRx8",
- "fullName": "CanuckRx8",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555448/medium/b0bc4b97a4db21b56c812f10192834ea.png",
- "joined": "2020-12-30 03:04:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620726",
- "username": "ArturVargas",
- "fullName": "ArturVargas",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620726/medium/fd339970dd740148bafe87bf7ce9f897.jpeg",
- "joined": "2021-02-12 00:14:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621436",
- "username": "MOUBINe",
- "fullName": "MOUBINe",
- "avatarUrl": "https://www.gravatar.com/avatar/d6f83d31d15921b36852efe8ff2077a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 10:14:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621526",
- "username": "Y495shiri",
- "fullName": "Y495shiri",
- "avatarUrl": "https://www.gravatar.com/avatar/b003dc0fec88ed44935f8a5f16b967cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 11:26:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621724",
- "username": "CryptoChica",
- "fullName": "CryptoChica",
- "avatarUrl": "https://www.gravatar.com/avatar/c3d820137cfc47d36978dfccf3b8fafb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 13:48:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845776",
- "username": "shishiying2001",
- "fullName": "shishiying2001",
- "avatarUrl": "https://www.gravatar.com/avatar/67a325eee876b28070c9c97c364de35d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 16:11:19"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 73,
+ "default": 0,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845734",
- "username": "rbovier",
- "fullName": "Ricardo Bovier (rbovier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845734/medium/46bc267ea814c05828315a4ab582dbac.png",
- "joined": "2021-07-19 15:24:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622256",
- "username": "dema.genezis1992",
- "fullName": "Furby (dema.genezis1992)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14622256/medium/d34982dbdd712875fb2132f342ff381b.jpeg",
- "joined": "2021-02-13 01:21:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622328",
- "username": "Onur.dogruyoll",
- "fullName": "Onur.dogruyoll",
- "avatarUrl": "https://www.gravatar.com/avatar/a086677a3cacd34df1dec66b27c81c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 02:53:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845348",
- "username": "JGD",
- "fullName": "Jacobo G. Domínguez (JGD)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845348/medium/633d82cc4cc5c9906dd9e1341ef919f9.png",
- "joined": "2021-07-19 09:50:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611700",
- "username": "sany69",
- "fullName": "sany69",
- "avatarUrl": "https://www.gravatar.com/avatar/10b084b724207d91bc0394826b9f19cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 05:23:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866774",
- "username": "doutrinador_pela_liberdade",
- "fullName": "doutrinador_pela_liberdade",
- "avatarUrl": "https://www.gravatar.com/avatar/759a0d1056b121e86a9eeb8afcf0ee88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 18:17:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629846",
- "username": "HarryBO88",
- "fullName": "Peter Kleister (HarryBO88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14629846/medium/0ebb6a878dd530b5d781f1477c949cda.jpeg",
- "joined": "2021-02-18 07:33:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594226",
- "username": "spzpro92",
- "fullName": "Tony Berruet (spzpro92)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594226/medium/a5f26b01062480a2d981436914695f14.jpg",
- "joined": "2021-01-25 18:48:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886772",
- "username": "LuisNunes",
- "fullName": "LuisNunes",
- "avatarUrl": "https://www.gravatar.com/avatar/76f752d1aca3debd787902689d576b0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-18 21:07:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591574",
- "username": "yuanmeng",
- "fullName": "yuanmeng",
- "avatarUrl": "https://www.gravatar.com/avatar/f8c3d51fd941ce4320f3acd44ace80a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 00:47:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886520",
- "username": "doibour",
- "fullName": "Doina Bour (doibour)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886520/medium/8570e9ac2f71b71358b767d4b6b0d8c2.png",
- "joined": "2021-08-18 16:33:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592104",
- "username": "miguelemos",
- "fullName": "Miguel Lemos (miguelemos)",
- "avatarUrl": "https://www.gravatar.com/avatar/5d0a86ffbcf96fd240a7b26f5dee07d5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 10:02:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14885218",
- "username": "JJacky_Chen",
- "fullName": "JJacky_Chen",
- "avatarUrl": "https://www.gravatar.com/avatar/cf0561071e628000b7d831b5dbb4c033?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 21:21:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592524",
- "username": "SIGNUPNOW",
- "fullName": "SIGNUPNOW",
- "avatarUrl": "https://www.gravatar.com/avatar/86e468d8b6a481de06164635142c8034?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 15:56:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592530",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/8938b6a78f7ceb96eaacaccd8d22bdf0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 16:02:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592792",
- "username": "990191395",
- "fullName": "990191395",
- "avatarUrl": "https://www.gravatar.com/avatar/aa9de214331d6db40faf32396d0105c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 21:18:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594104",
- "username": "ertugrul.ishak.koseoglu",
- "fullName": "ertuğrul ishak köseoğlu (ertugrul.ishak.koseoglu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594104/medium/8ab4750df39885b6c983d2a0e73f3f2d.jpg",
- "joined": "2021-01-25 16:29:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594386",
- "username": "ExercitoGamer",
- "fullName": "ExercitoGamer",
- "avatarUrl": "https://www.gravatar.com/avatar/92407fa41fb764beb60360db518f6890?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-25 22:31:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591424",
- "username": "AleksandraPaw",
- "fullName": "AleksandraPaw",
- "avatarUrl": "https://www.gravatar.com/avatar/e0bc0d01f86f2dcbb59be7da8e97f2e6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 20:23:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594644",
- "username": "dogukan1334",
- "fullName": "Dogukan balık (dogukan1334)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594644/medium/ad7c3e3a12bd5140de1312301bfb4aa1.jpg",
- "joined": "2021-01-26 03:56:20"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 73,
+ "default": 0,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883816",
- "username": "Yosuke6",
- "fullName": "Yosuke6",
- "avatarUrl": "https://www.gravatar.com/avatar/829bfc533db531c2fe368a0da6706582?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 02:49:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883814",
- "username": "stagbeetle70",
- "fullName": "stagbeetle70",
- "avatarUrl": "https://www.gravatar.com/avatar/818198e176b7deb56dea96661d574716?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 02:47:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594806",
- "username": "kutaytosun",
- "fullName": "kutay tosun (kutaytosun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594806/medium/a176cc9e01ec59f3a2e342f4ac5a5474.jpeg",
- "joined": "2021-01-26 06:10:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883096",
- "username": "TiGi123",
- "fullName": "Tiago Kühn (TiGi123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883096/medium/a0327baa437ef0b259ab5a7ccbf9ca87.jpeg",
- "joined": "2021-08-27 09:03:35"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 77,
+ "default": 0,
+ "total": 77
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14596824",
- "username": "manuzecchin",
- "fullName": "Manuel Garcia Zecchin (manuzecchin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14596824/medium/8da2cadba4cf986427e7b1d5e4c0a70c.jpeg",
- "joined": "2021-01-27 10:24:08"
- },
- "languages": [
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599232",
- "username": "hakan.kayhan.98",
- "fullName": "HAKAN KAYHAN (hakan.kayhan.98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599232/medium/0f0679b277ee1d0456250a72665a9d69.jpeg",
- "joined": "2021-01-28 17:47:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599766",
- "username": "jragosa",
- "fullName": "Jimmy Ragosa (jragosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599766/medium/eb89f1cdeef5dfea1bac330f9c80b58a.jpeg",
- "joined": "2021-01-29 05:40:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600334",
- "username": "Lemzor",
- "fullName": "Lemzor",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600334/medium/884d6f77400a5da964d62a0a7bdb4f0d.png",
- "joined": "2021-05-05 16:20:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591426",
- "username": "d4r3d3v1l",
- "fullName": "d4r3d3v1l",
- "avatarUrl": "https://www.gravatar.com/avatar/a181c862430c28f8bb80b67a576dacb1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 20:25:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888200",
- "username": "Juancpx",
- "fullName": "Juan Cabrera (Juancpx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888200/medium/34a366e0eae73122238b508f60d3826e.jpeg",
- "joined": "2021-08-19 20:03:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600994",
- "username": "SotJJou",
- "fullName": "SotJJou",
- "avatarUrl": "https://www.gravatar.com/avatar/bd97e5a858fd2d68cfc078f8d9c0a95f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 01:24:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892722",
- "username": "ejoaquin",
- "fullName": "ejoaquin",
- "avatarUrl": "https://www.gravatar.com/avatar/efa956c0943ab02776447cbc35c9c70e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-23 11:17:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894676",
- "username": "1597",
- "fullName": "1597",
- "avatarUrl": "https://www.gravatar.com/avatar/2262567db09c4c3987662706e1464deb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-24 20:58:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894620",
- "username": "steveleem",
- "fullName": "steveleem",
- "avatarUrl": "https://www.gravatar.com/avatar/3eda941cb2dd34becfcd420a5b289997?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-24 19:27:12"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894560",
- "username": "estela.capri",
- "fullName": "Matthew Griffith (estela.capri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894560/medium/4c4495d27a82bbeaef8ac78b3914d43f.png",
- "joined": "2021-08-24 17:48:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584044",
- "username": "a01080138661",
- "fullName": "원은규 (a01080138661)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584044/medium/8404342f7c2ef68c5fb676b2af498df0.jpg",
- "joined": "2021-01-19 06:48:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584702",
- "username": "Krzychu_gru",
- "fullName": "Krzychu_gru",
- "avatarUrl": "https://www.gravatar.com/avatar/c4aeee4d49eb96da11c2c00620701fc7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 13:45:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893782",
- "username": "Tango5614",
- "fullName": "王文杰 (Tango5614)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893782/medium/3af733ec86304922fabcf1fa9bb0b26e.png",
- "joined": "2021-08-24 06:38:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584712",
- "username": "lucaspajarocauzzi",
- "fullName": "Lucas pajaro (lucaspajarocauzzi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584712/medium/aa718aec76bcbb0ddc95dc91b3859963.jpeg",
- "joined": "2021-01-19 13:53:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14585298",
- "username": "soowindance",
- "fullName": "Wayne Sun (soowindance)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14585298/medium/cc3c796eba4ead635857d98846edd07a.jpeg",
- "joined": "2021-01-19 23:10:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14585744",
- "username": "rambo_tugaaaa",
- "fullName": "Rui Pedro (rambo_tugaaaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14585744/medium/404c3cd6a926a84a0a3b396f6f20f843.jpeg",
- "joined": "2021-01-20 05:45:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587342",
- "username": "Sokunthaneth",
- "fullName": "Sokunthaneth Chhoy (Sokunthaneth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587342/medium/5ce1465fc00493ef6f537debcccd0ded.png",
- "joined": "2021-01-21 05:03:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888560",
- "username": "psycoda",
- "fullName": "psycoda",
- "avatarUrl": "https://www.gravatar.com/avatar/19a38afceccf6152a11b3bed6325f4ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-20 03:49:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891450",
- "username": "ribas.f.h_",
- "fullName": "ribas.f.h_",
- "avatarUrl": "https://www.gravatar.com/avatar/7ec1876396ce91bd4ce693fd395dd124?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 12:42:06"
- },
- "languages": [
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 81,
+ "default": 0,
+ "total": 81
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588318",
- "username": "h.g.azizov",
- "fullName": "Hasan Azizov (h.g.azizov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588318/medium/3997b6bd85899fbe07b4362ed1258033.jpeg",
- "joined": "2021-01-21 15:49:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890672",
- "username": "Joao-ava",
- "fullName": "João Alex (Joao-ava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890672/medium/99077a8e90b1ef4c7092b55a2fb1dc74.jpeg",
- "joined": "2021-08-28 14:30:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588858",
- "username": "Daniil200618",
- "fullName": "Daniil200618",
- "avatarUrl": "https://www.gravatar.com/avatar/c4324135172baf2e1dc9ff750c38d1dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 03:00:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590048",
- "username": "Datovo",
- "fullName": "Datovo",
- "avatarUrl": "https://www.gravatar.com/avatar/a54b7d1e27a8449187005eb7a013e5d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 19:20:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590642",
- "username": "Zlotumone",
- "fullName": "Zlotumone",
- "avatarUrl": "https://www.gravatar.com/avatar/89ce1760be1914bb86f5c916ff2d834b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 07:08:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889450",
- "username": "ghgh349",
- "fullName": "김진섭 (ghgh349)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889450/medium/51c324105656eff21dcdf944c49b95a7.jpeg",
- "joined": "2021-08-20 16:16:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889400",
- "username": "Jysor",
- "fullName": "Jysor",
- "avatarUrl": "https://www.gravatar.com/avatar/7994b14c34ee71462d8fd81d164d8911?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-20 15:40:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888806",
- "username": "depuma",
- "fullName": "Ade Pundan Narwisma (depuma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888806/medium/232c643d2e8ba2cd9177e8e1c43b203a.jpeg",
- "joined": "2021-08-20 07:36:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591120",
- "username": "16815081",
- "fullName": "16815081",
- "avatarUrl": "https://www.gravatar.com/avatar/13b8780c4f3bf754ccb39796af9dca74?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 14:01:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879724",
- "username": "osamah907",
- "fullName": "osama sport (osamah907)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879724/medium/337078bcc61358a66130f751e67d4b2e.jpeg",
- "joined": "2021-08-14 08:19:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601114",
- "username": "meou",
- "fullName": "b (meou)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601114/medium/066b37756d6393693b6d7f56794efa09.png",
- "joined": "2021-01-30 04:29:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866854",
- "username": "fernandezjoel502",
- "fullName": "joel fernandez (fernandezjoel502)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866854/medium/be2071a62682e4ad2e951060b356942f.png",
- "joined": "2021-08-04 20:29:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868426",
- "username": "HsuWei00",
- "fullName": "coinex 后台-许威 (HsuWei00)",
- "avatarUrl": "https://www.gravatar.com/avatar/899ba949a894af073f55fb721d794a72?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 03:21:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608784",
- "username": "huzayozbek",
- "fullName": "huzayozbek",
- "avatarUrl": "https://www.gravatar.com/avatar/9f85c9f9719371398da415ee82871d40?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 06:10:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869640",
- "username": "jiangjun1998",
- "fullName": "jiangjun1998",
- "avatarUrl": "https://www.gravatar.com/avatar/73f67f0e75e3933f7e56a40fc34352d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-07 04:08:37"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 73,
+ "default": 0,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 68,
+ "default": 0,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 165,
+ "default": 0,
+ "total": 165
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 58,
+ "default": 0,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 31,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 87,
+ "default": 31,
+ "total": 118
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 61,
+ "default": 0,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 0,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 0,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 0,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "ru-UA",
+ "name": "Russian, Ukraine",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 0,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 0,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 0,
+ "total": 69
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869634",
- "username": "cryptokaaran",
- "fullName": "Crypto King (cryptokaaran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869634/medium/fee08344928ae6b64f18bf3166d46a7c.png",
- "joined": "2021-08-07 04:04:39"
- },
- "languages": [
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609508",
- "username": "Irene1010",
- "fullName": "Irene1010",
- "avatarUrl": "https://www.gravatar.com/avatar/abeea5ddb053e902cfcb5b1882a77ef6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 15:41:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725740",
- "username": "paolo.mantovani",
- "fullName": "Paolo Mantovani (paolo.mantovani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725740/medium/209c984838eb1bee4aede9f0e6c5dee6.jpeg",
- "joined": "2021-04-25 04:39:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609932",
- "username": "lucashl1704",
- "fullName": "lucas henrique (lucashl1704)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609932/medium/19a902ec95e9d99b9c881c7168e7ee6c.jpeg",
- "joined": "2021-02-05 00:39:43"
- },
- "languages": [
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868772",
- "username": "AlgoRepublic",
- "fullName": "AlgoRepublic",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868772/medium/91ce05513eaf31e8ae0936223d565edb.png",
- "joined": "2021-08-06 08:57:18"
- },
- "languages": [
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609984",
- "username": "r3ddm15t",
- "fullName": "Tony Scott (r3ddm15t)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609984/medium/0d81a9e82f9e187b9cd2309c46ed1485.png",
- "joined": "2021-02-05 01:46:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610528",
- "username": "AmithReddy",
- "fullName": "AmithReddy",
- "avatarUrl": "https://www.gravatar.com/avatar/f21848f96d67c39436938ff1955ac705?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 09:03:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868384",
- "username": "Minchillo4",
- "fullName": "Minchillo4",
- "avatarUrl": "https://www.gravatar.com/avatar/ac9549c9938032f01ccdf75cdb37ff6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 02:37:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608568",
- "username": "AntOnion",
- "fullName": "AntOnion",
- "avatarUrl": "https://www.gravatar.com/avatar/a3cf4b0e675f1b5adbc5cd70ef043f00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 03:41:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868162",
- "username": "eiytsi",
- "fullName": "Li Jiali (eiytsi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868162/medium/5f378c7ed2d7f4548c38cd7e19d2c445.jpeg",
- "joined": "2021-08-05 21:22:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868070",
- "username": "LauriLankots",
- "fullName": "Lauri Lankots (LauriLankots)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868070/medium/cabd605b1a33066cd8a3113ce533ab92.jpg",
- "joined": "2021-08-05 18:22:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611052",
- "username": "Diekks",
- "fullName": "Diekks",
- "avatarUrl": "https://www.gravatar.com/avatar/680c65be5ef0dfe0aad616a152a3a811?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 15:56:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611076",
- "username": "davidperalta",
- "fullName": "davidperalta",
- "avatarUrl": "https://www.gravatar.com/avatar/6e0955b79a0a568c37c090c87a76f1e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 16:31:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867248",
- "username": "asd01248967",
- "fullName": "小宗 (asd01248967)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867248/medium/d2ba89b961a4de27a226fdb3fe324d60.png",
- "joined": "2021-08-05 04:43:53"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 74,
+ "default": 0,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 0,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14985249,
+ "username": "Venenosa03",
+ "fullName": "Samantha H. (Venenosa03)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985249/medium/bb7a19c923d2a36d7c69d2b92f448c17.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14714470,
+ "username": "samedmertoglu",
+ "fullName": "Samed Mertoğlu (samedmertoglu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714470/medium/1da0c147be6e060995a0bfb20ed7a92f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 988
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 988
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 946,
+ "total": 988
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 783,
+ "total": 821
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 946,
+ "total": 988
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14791670,
+ "username": "nestisamet",
+ "fullName": "Samet TEMIZER (nestisamet)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791670/medium/9ebd2f349d30bf2a7ea46cf7b33ff0ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 11,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 11,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786554,
+ "username": "themorit",
+ "fullName": "Sami H. (themorit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786554/medium/3e41ddf73b067709e17114acc3057c3d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1263
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1263
+ },
+ "translated": {
+ "tmMatch": 471,
+ "default": 792,
+ "total": 1263
+ },
+ "targetTranslated": {
+ "tmMatch": 464,
+ "default": 692,
+ "total": 1156
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 471,
+ "default": 792,
+ "total": 1263
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14736246,
+ "username": "Sami.staar",
+ "fullName": "Sami Najem (Sami.staar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736246/medium/f963438693a03d07d9b914e6839f09f1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 20,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 14,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914333,
+ "username": "SamB",
+ "fullName": "Samira Bourai (SamB)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d0de1488d23af8d721dca29ccec7577?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 756
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 756
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 748,
+ "total": 756
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 707,
+ "total": 717
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 748,
+ "total": 756
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866558,
+ "username": "sjijioff74",
+ "fullName": "Sammy KH (sjijioff74)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866558/medium/c2ca15a21e982f87474214a24e0fd487.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14812492,
+ "username": "samuelPapranec",
+ "fullName": "Samuel Papranec (samuelPapranec)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812492/medium/b30337d97ba9d1f073a090434191e294.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3492
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3492
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 3484,
+ "total": 3492
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 2875,
+ "total": 2885
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 3484,
+ "total": 3492
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020309,
+ "username": "sandeepsahu",
+ "fullName": "Sandeep Kumar Sahu (sandeepsahu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020309/medium/19858a2b34be230b1d361e5a0be59757.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14888266,
+ "username": "sandrogomes101",
+ "fullName": "Sandro Gomes (sandrogomes101)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888266/medium/ec3720087a2af8b90ac90119f026a2f8.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903111,
+ "username": "philnshoo",
+ "fullName": "Sangphil Kim (philnshoo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903111/medium/48315081e91573a7ac2f784e04651cbc.png",
+ "preTranslated": 0,
+ "totalCosts": 1188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1188
+ },
+ "translated": {
+ "tmMatch": 79,
+ "default": 1109,
+ "total": 1188
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 1081,
+ "total": 1143
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 79,
+ "default": 1109,
+ "total": 1188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14962567,
+ "username": "San2165",
+ "fullName": "Santiago Borja D (San2165)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962567/medium/d0b9fc67a12e64ec189bbe5f3982457e.png",
+ "preTranslated": 0,
+ "totalCosts": 199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 199
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 169,
+ "total": 199
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 171,
+ "total": 205
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 169,
+ "total": 199
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14986013,
+ "username": "santosmichael3856",
+ "fullName": "Santos Michael (santosmichael3856)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14986013/medium/7145f141cdce5146f180f8455875b76c.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14599152,
+ "username": "Sawansolanki",
+ "fullName": "Sawan Solanki (Sawansolanki)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599152/medium/0c8ff52eed5f9ed85e4f204472e0f412.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030216,
+ "username": "udinujang",
+ "fullName": "Sayid Almahdy (udinujang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14030216/medium/a9f8489aeec48632cf519aa826d8350c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 929
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 929
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 901,
+ "total": 929
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 908,
+ "total": 936
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 901,
+ "total": 929
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13256540,
+ "username": "Scruffy",
+ "fullName": "Scruffy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6945acf728d14d64c7b660a31ddd9f8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12852
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12852
+ },
+ "translated": {
+ "tmMatch": 3761,
+ "default": 9091,
+ "total": 12852
+ },
+ "targetTranslated": {
+ "tmMatch": 3791,
+ "default": 8996,
+ "total": 12787
+ },
+ "translatedByMt": {
+ "tmMatch": 206,
+ "default": 2454,
+ "total": 2660
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3761,
+ "default": 9091,
+ "total": 12852
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14890296,
+ "username": "sehitzler",
+ "fullName": "Sebastian Hitzler (sehitzler)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890296/medium/404ffc28f8996aa26eb3ce5bdc1e3d3f.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14562222,
+ "username": "Vinterlich",
+ "fullName": "Sebastian Voina-Winter (Vinterlich)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562222/medium/ee18e8630ea2f2287f2dcb7d0d1419ea.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 115,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 113,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13559834,
+ "username": "DasMergo",
+ "fullName": "Seied Ali Mirkarimi (DasMergo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559834/medium/1022545f1391447b44113ac76076957a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 50,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 54,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 50,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14753704,
+ "username": "leonardo.seji",
+ "fullName": "Seiji K (leonardo.seji)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753704/medium/24de8f63b8599b59e7f9da5045ca34d6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 58
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 58
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 34,
+ "total": 58
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 34,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 34,
+ "total": 58
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14936915,
+ "username": "seilkhankulzhanov",
+ "fullName": "Seilkhan Kulzhanov (seilkhankulzhanov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936915/medium/be75dda81c208776fb04ab0e365f3e49.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12358726,
+ "username": "cardex",
+ "fullName": "Selim Unver (cardex)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12358726/medium/b3cea9e8e6ca4b84de7d0b0d3f071827.jpg",
+ "preTranslated": 0,
+ "totalCosts": 472
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 472
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 463,
+ "total": 472
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 358,
+ "total": 368
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 463,
+ "total": 472
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14764738,
+ "username": "semprepk13",
+ "fullName": "Sempre Patricia Kelly (semprepk13)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764738/medium/dc4b07533773785e8353c86472ba6fe0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 542
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 542
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 525,
+ "total": 542
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 595,
+ "total": 662
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 525,
+ "total": 542
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633214,
+ "username": "deities822",
+ "fullName": "Sen Yang (deities822)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633214/medium/f93964e553214494956759ae55266c8c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 237
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 237
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 233,
+ "total": 237
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 349,
+ "total": 357
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 233,
+ "total": 237
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14548590,
+ "username": "psc2321",
+ "fullName": "Seongchoon Park (psc2321)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548590/medium/f5528d7f057dd720d8c7498d0499b712.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 103
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 103
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 98,
+ "total": 103
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 53,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 98,
+ "total": 103
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12759752,
+ "username": "seppewyns",
+ "fullName": "Seppe (seppewyns)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4ceda449ddbb73e2b42b6bb0a63dcdbb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1179
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1179
+ },
+ "translated": {
+ "tmMatch": 155,
+ "default": 1024,
+ "total": 1179
+ },
+ "targetTranslated": {
+ "tmMatch": 153,
+ "default": 1065,
+ "total": 1218
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 118,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 155,
+ "default": 1024,
+ "total": 1179
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14057576,
+ "username": "sercanbasaran",
+ "fullName": "Sercan Başaran (sercanbasaran)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057576/medium/87f3ebf91dd2cf3be230d1dc717a4967.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 24,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 24,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 24,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14645998,
+ "username": "Sercangnc",
+ "fullName": "Sercan Genç (Sercangnc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645998/medium/8f30fe98be89f8eb293918567bbf6bdd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 399
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 399
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 390,
+ "total": 399
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 305,
+ "total": 315
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 390,
+ "total": 399
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867044,
+ "username": "Sercelik",
+ "fullName": "Sercelik",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867044/medium/d25753e6bc7cb3b8ddbf025dac169b4f.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 23,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 23,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995627,
+ "username": "slelrlelgla",
+ "fullName": "Sergey (slelrlelgla)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995627/medium/5c9cc272fc1131cd84293a6c6a69e5fe.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14559632,
+ "username": "lvchnk88",
+ "fullName": "Sergii Levchenko (lvchnk88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559632/medium/2f466f4630615ab7f0494094c24736e9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 36,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 33,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 36,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002823,
+ "username": "sdominguez894",
+ "fullName": "Sergio Domínguez (sdominguez894)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002823/medium/1d1caae3bcae5e7a54ddaa3a4b15784b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14857060,
+ "username": "slobato711",
+ "fullName": "Sergio Lobato Ramos (slobato711)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14857060/medium/16b052b6094cc8e9e2a1b9d493e20c30.png",
+ "preTranslated": 0,
+ "totalCosts": 326
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 326
+ },
+ "translated": {
+ "tmMatch": 140,
+ "default": 186,
+ "total": 326
+ },
+ "targetTranslated": {
+ "tmMatch": 124,
+ "default": 178,
+ "total": 302
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 140,
+ "default": 186,
+ "total": 326
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14554590,
+ "username": "s.morales1994",
+ "fullName": "Sergio Morales (s.morales1994)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554590/medium/6131b744b822e28dc51b0e23466c270d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 542
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 542
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 539,
+ "total": 542
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 575,
+ "total": 578
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 539,
+ "total": 542
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865420,
+ "username": "Sergitxin",
+ "fullName": "Sergitxin22 (Sergitxin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865420/medium/c93a1a81a1c919979a6da85151c0bf66.png",
+ "preTranslated": 0,
+ "totalCosts": 881
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 881
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 867,
+ "total": 881
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 830,
+ "total": 842
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 28,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 867,
+ "total": 881
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14875422,
+ "username": "T37B60",
+ "fullName": "Sergiu Gelu Stoica (T37B60)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875422/medium/2e2cc48eb16214729aa8f09f43fe49ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14056606,
+ "username": "sekoo196351",
+ "fullName": "Serkan Aydın (sekoo196351)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14056606/medium/c1669d0e4cebfb1ec83ab85c00b01f83.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903063,
+ "username": "somniumism",
+ "fullName": "SeungMin Lee (somniumism)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903063/medium/504504c3a481b7774dba86fbd2872016.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 321
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 321
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 321,
+ "total": 321
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 266,
+ "total": 266
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 321,
+ "total": 321
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15019927,
+ "username": "Sewon",
+ "fullName": "Sewon Park (Sewon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019927/medium/0ebf5c870c1c120a265fccba1a0d9d9a.png",
+ "preTranslated": 0,
+ "totalCosts": 925
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 925
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 921,
+ "total": 925
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 700,
+ "total": 703
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 921,
+ "total": 925
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12529583,
+ "username": "Khan27",
+ "fullName": "ShahinF27 (Khan27)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0cf99c0cb60485c150ea182afa7669f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 945
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "az",
+ "name": "Azerbaijani",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 945
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 918,
+ "total": 945
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 859,
+ "total": 885
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 918,
+ "total": 945
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990849,
+ "username": "shanehung",
+ "fullName": "Shane Hung (shanehung)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5211f9577580f012f260838835943be6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 101
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 101
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 97,
+ "total": 101
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 142,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 97,
+ "total": 101
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14250810,
+ "username": "sharthan",
+ "fullName": "Sharthan Simoons (sharthan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14250810/medium/265247c7a05f29a0d5c04c63e5a85e9f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 16,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14765612,
+ "username": "mintleaf",
+ "fullName": "Shawna Lee (mintleaf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765612/medium/95146c9af272a6aa0fe1ee9060d19ab4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 390
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 390
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 350,
+ "total": 390
+ },
+ "targetTranslated": {
+ "tmMatch": 83,
+ "default": 695,
+ "total": 778
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 350,
+ "total": 390
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13992489,
+ "username": "shehazrin",
+ "fullName": "Sheik Hazrin Bin Sheik Othman (shehazrin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13992489/medium/0c72d2c9f06da9369b1feceaf3d0f648.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 0,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 0,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 0,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14976705,
+ "username": "shenruiqi3",
+ "fullName": "Shen ruiqi (shenruiqi3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14976705/medium/920ef0e477bc510958724bfedbafe0fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748368,
+ "username": "i-shivamsoni",
+ "fullName": "Shivam Soni (i-shivamsoni)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748368/medium/e03c2dbecb8b847dac210c562882112b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14576088,
+ "username": "shivanshu4755",
+ "fullName": "Shivanshu Mishra (shivanshu4755)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576088/medium/16fdde265fa36b6f9a1be9712e83d1d9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582152,
+ "username": "Shokhe",
+ "fullName": "Shokhrukh Ermanov (Shokhe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582152/medium/4fc89c53adc0e65a7af6a181eba9a10d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 14921
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14921
+ },
+ "translated": {
+ "tmMatch": 1860,
+ "default": 13061,
+ "total": 14921
+ },
+ "targetTranslated": {
+ "tmMatch": 1436,
+ "default": 11292,
+ "total": 12728
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1860,
+ "default": 13061,
+ "total": 14921
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14786918,
+ "username": "shuaishao",
+ "fullName": "Shuai Shao (shuaishao)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786918/medium/683fae422ad7adbf5241cbfbfd5d08f9.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14926377,
+ "username": "ShubhamKukreti",
+ "fullName": "Shubham Kukreti (ShubhamKukreti)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926377/medium/c23d2146ea906d371c9ea8af48d3832f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 42,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14967831,
+ "username": "shugo.eth",
+ "fullName": "Shugo (shugo.eth)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967831/medium/767a4323cc726a28c6ee0fe469d3d2a7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 615
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 615
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 601,
+ "total": 615
+ },
+ "targetTranslated": {
+ "tmMatch": 54,
+ "default": 1814,
+ "total": 1868
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 601,
+ "total": 615
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667296,
+ "username": "shyamsundarb",
+ "fullName": "ShyamSundarB (shyamsundarb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667296/medium/c002d83a0fdab4848fc1d3bbd5f1157c.png",
+ "preTranslated": 0,
+ "totalCosts": 131
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 131
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 113,
+ "total": 131
+ },
+ "targetTranslated": {
+ "tmMatch": 31,
+ "default": 229,
+ "total": 260
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 113,
+ "total": 131
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14754906,
+ "username": "Mohamed.Ghadi",
+ "fullName": "Simo Ghadi (Mohamed.Ghadi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754906/medium/3f7ddede5807ef7bd87e1721b9d214c4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14901100,
+ "username": "simakpele65",
+ "fullName": "Simon Akpele (simakpele65)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901100/medium/c3354f71aa0f27ef6f54a83b0ea8968d.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 120,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13081328,
+ "username": "spolrot",
+ "fullName": "Simon Polrot (spolrot)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13081328/medium/ed09cf991faa0301f004879cac6df50b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14923593,
+ "username": "simone.pana.2",
+ "fullName": "Simone Panattoni (simone.pana.2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14923593/medium/d109453b70ed12f8e71960dd652efd17.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1054
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1054
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 1016,
+ "total": 1054
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 1105,
+ "total": 1148
+ },
+ "translatedByMt": {
+ "tmMatch": 23,
+ "default": 948,
+ "total": 971
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 1016,
+ "total": 1054
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958739,
+ "username": "divinxu",
+ "fullName": "Siri Ɛ: (divinxu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958739/medium/213d691dc3b4936181aa01b16f08abee.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14340230,
+ "username": "sivasakthivel.ss9",
+ "fullName": "Sivasakthivel (sivasakthivel.ss9)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14340230/medium/86f1bb9fd8307475f467bec86d3ed22c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 62,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 62,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 62,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14785924,
+ "username": "KaerMorh",
+ "fullName": "SkyEternal (KaerMorh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785924/medium/c4f322ead0ea660939705b498e4614ad.png",
+ "preTranslated": 0,
+ "totalCosts": 78
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 78
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 143,
+ "total": 143
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950197,
+ "username": "SlashHash",
+ "fullName": "SlashHash",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950197/medium/20d99cde077abaee189a2dc7908d26f2.png",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13388084,
+ "username": "tom.savela",
+ "fullName": "Slipstejn (tom.savela)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13388084/medium/d60a2780076220b818dd3e5fc713340b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 23,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 21,
+ "total": 40
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 23,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14364644,
+ "username": "me.airee",
+ "fullName": "Snachi (me.airee)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364644/medium/beb7fb27693baf8b3d4d4aa4fbeb8a4c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14042441,
+ "username": "Solexplorer",
+ "fullName": "Solexplorer",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14042441/medium/efa15b8331a5e51208658d9e00824c68.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 311
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 311
+ },
+ "translated": {
+ "tmMatch": 145,
+ "default": 166,
+ "total": 311
+ },
+ "targetTranslated": {
+ "tmMatch": 143,
+ "default": 163,
+ "total": 306
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 145,
+ "default": 166,
+ "total": 311
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949373,
+ "username": "s_yuzva",
+ "fullName": "Solomia Yuzva (s_yuzva)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949373/medium/d4c3f633842279994b178a207831025d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2162
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 2154,
+ "total": 2162
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 1891,
+ "total": 1904
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 328,
+ "total": 330
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 2154,
+ "total": 2162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14057178,
+ "username": "takira182542",
+ "fullName": "Somsak Takira (takira182542)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057178/medium/919e590a4f53fe42033a55c90cefdd9f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14904502,
+ "username": "keslon762",
+ "fullName": "Sonho De Jogador (keslon762)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904502/medium/79750cc0fb5d2a1b16f80d91284d485c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 152
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 152
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 151,
+ "total": 152
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 180,
+ "total": 181
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 151,
+ "total": 152
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14547948,
+ "username": "sonja.richter89",
+ "fullName": "Sonja Ri (sonja.richter89)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547948/medium/7b4873057f37d4a3bc90b1f338a9362c.PNG",
+ "preTranslated": 0,
+ "totalCosts": 2017
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 126,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 152,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 126,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1888
+ },
+ "translated": {
+ "tmMatch": 77,
+ "default": 1811,
+ "total": 1888
+ },
+ "targetTranslated": {
+ "tmMatch": 83,
+ "default": 1886,
+ "total": 1969
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 77,
+ "default": 1811,
+ "total": 1888
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14378524,
+ "username": "toya8118",
+ "fullName": "Sorasuk Sakon (toya8118)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14378524/medium/9c73355a594a13b26d97fb4af23b4621.jpg",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 18,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 18,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 18,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884566,
+ "username": "sparsacolligodutwitter",
+ "fullName": "Sparsa Colligo (sparsacolligodutwitter)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884566/medium/c1f416e00e569be883a1c6d8f566d117.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 356
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 356
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 323,
+ "total": 356
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 314,
+ "total": 347
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 185,
+ "total": 185
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 323,
+ "total": 356
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14935615,
+ "username": "bratzconstantino",
+ "fullName": "Spoiled Bratz (bratzconstantino)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935615/medium/f41b61d9982f8da04237aae32a48a9ab.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 44,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 69,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 44,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13616778,
+ "username": "spoorthi_s",
+ "fullName": "Spoorthi Satish (spoorthi_s)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13616778/medium/b3ca39ba82be6d81f60d6f90aeb7f5b0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738314,
+ "username": "srecko.ivetic",
+ "fullName": "Srećko Ivetić (srecko.ivetic)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738314/medium/d980606aa34d961b2ee524edf09502b8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14614610,
+ "username": "Zimza44",
+ "fullName": "Stef Stagos (Zimza44)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614610/medium/557435f19b7b63c55a7f33a01231832d.png",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 75,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 94,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 75,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14672944,
+ "username": "stefanosandrin4",
+ "fullName": "Stefano Sandrin (stefanosandrin4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14672944/medium/0e9d49182df4578430e29159304dc22e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 81
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 81
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 61,
+ "total": 81
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 70,
+ "total": 90
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 45,
+ "total": 47
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 61,
+ "total": 81
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14099615,
+ "username": "Stelita",
+ "fullName": "Stela (Stelita)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14099615/medium/eddaa7939390c9b280fda8d68ebe2262.png",
+ "preTranslated": 0,
+ "totalCosts": 151
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 151
+ },
+ "translated": {
+ "tmMatch": 151,
+ "default": 0,
+ "total": 151
+ },
+ "targetTranslated": {
+ "tmMatch": 166,
+ "default": 0,
+ "total": 166
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 151,
+ "default": 0,
+ "total": 151
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14707408,
+ "username": "Stev110",
+ "fullName": "Stev110",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707408/medium/06bb638d445604925d0bcaa58768558b.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712250,
+ "username": "XiG",
+ "fullName": "Steve Hu (XiG)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712250/medium/cf8f4951e71da77514310bcd86b2a825.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 111,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 158,
+ "total": 165
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 111,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13243539,
+ "username": "gilbertginsberg",
+ "fullName": "Steven Gilbert (gilbertginsberg)",
+ "userRole": "Manager",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13243539/medium/a9e7442c74a08d1eab055e952f41fa44.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14761864,
+ "username": "stevensun9046",
+ "fullName": "Steven Sun (stevensun9046)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761864/medium/040069d06c6dc89e287ef60bde6c7968.png",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 26,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 47,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 26,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13976107,
+ "username": "HelaBasa",
+ "fullName": "Store (HelaBasa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976107/medium/ab4177e8d90665d4603e548488d15c68.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "si-LK",
+ "name": "Sinhala",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14964959,
+ "username": "NdrXbrain",
+ "fullName": "Student Student (NdrXbrain)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964959/medium/60e018a3f4f93080e7f4ae7867a617bc.png",
+ "preTranslated": 0,
+ "totalCosts": 214
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 214
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 214,
+ "total": 214
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 186,
+ "total": 186
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 214,
+ "total": 214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581964,
+ "username": "sulispriyantoro",
+ "fullName": "Sulis Priyantoro (sulispriyantoro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581964/medium/8cec45f68672c9fba30109b03be32b91.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 190
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 190
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 190,
+ "total": 190
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 151,
+ "total": 151
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 190,
+ "total": 190
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14772374,
+ "username": "ssm82009",
+ "fullName": "Sultan Alzahrani (ssm82009)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14772374/medium/a564a83de3921010741be671f5e9f229.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14136535,
+ "username": "HolyMoly",
+ "fullName": "Sun Glasses (HolyMoly)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136535/medium/326620bd5f24578d4fc8c9d322497660.jpg",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 26,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14451648,
+ "username": "vadimibr",
+ "fullName": "Sunday Night (vadimibr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14451648/medium/00ffc7066a6e832c974569d04fc320d2.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14731202,
+ "username": "Sungbin",
+ "fullName": "Sungbin Lee (Sungbin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731202/medium/8766d6dd42fc7373d7b9580769ff4baa.jpg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689716,
+ "username": "Super-Cereal",
+ "fullName": "Super-Cereal",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689716/medium/16879ee365ed3e71eddbb9889908ca1c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 233
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 233
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 227,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 213,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 227,
+ "total": 233
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14402624,
+ "username": "Tom5656",
+ "fullName": "Supoht jobdee (Tom5656)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14402624/medium/c48ee62c7d3e37b9d60d426139546da7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14038309,
+ "username": "planepisode",
+ "fullName": "Suraneti Rodsuwan (planepisode)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14038309/medium/ad02fc352bbe13108d588527c438815d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 798
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 798
+ },
+ "translated": {
+ "tmMatch": 112,
+ "default": 686,
+ "total": 798
+ },
+ "targetTranslated": {
+ "tmMatch": 52,
+ "default": 444,
+ "total": 496
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 112,
+ "default": 686,
+ "total": 798
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14647298,
+ "username": "ViPratap72",
+ "fullName": "Surender Pratap Singh (ViPratap72)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647298/medium/4ad8368a7ffa55bb7e086a1f7f5a967d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14386026,
+ "username": "msuresh85",
+ "fullName": "Suresh Kumar (msuresh85)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14386026/medium/9ce1fa7bce1e86459117924566fcb1e0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 0,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682718,
+ "username": "ketut",
+ "fullName": "Surya A (ketut)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e644b803450efad75abaa47513cb0ab9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 244
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 244
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 231,
+ "total": 244
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 216,
+ "total": 236
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 231,
+ "total": 244
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14357586,
+ "username": "ubunteroz",
+ "fullName": "Surya Handika Putratama (ubunteroz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357586/medium/4a3bea1ed33291bb01efa4318a919438.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 340
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 340
+ },
+ "translated": {
+ "tmMatch": 175,
+ "default": 165,
+ "total": 340
+ },
+ "targetTranslated": {
+ "tmMatch": 172,
+ "default": 157,
+ "total": 329
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 175,
+ "default": 165,
+ "total": 340
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14765250,
+ "username": "syamjayaraj",
+ "fullName": "Syamlal C M (syamjayaraj)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765250/medium/bf911d033e60adbf046de5f66fb0b8a0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12381015,
+ "username": "shuuji3",
+ "fullName": "TAKAHASHI Shuuji (shuuji3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12381015/medium/35e3557fd61d85f9a5b84545d9e3feb4.png",
+ "preTranslated": 0,
+ "totalCosts": 125
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 125
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 122,
+ "total": 125
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 301,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 122,
+ "total": 125
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735822,
+ "username": "tsukasanomori",
+ "fullName": "TM (tsukasanomori)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/159bc9f99bc6f8b607acf7cd9c0c716d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 872
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 872
+ },
+ "translated": {
+ "tmMatch": 79,
+ "default": 793,
+ "total": 872
+ },
+ "targetTranslated": {
+ "tmMatch": 240,
+ "default": 1585,
+ "total": 1825
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 79,
+ "default": 793,
+ "total": 872
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12895198,
+ "username": "lacriment",
+ "fullName": "Taha İbrahim (lacriment)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12895198/medium/0e6b5e9d61eb2b57e7f98330c84a6c3d.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14437788,
+ "username": "talgatbek",
+ "fullName": "Talgatbek Kainarov (talgatbek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14437788/medium/613193fea546da673bb8490a504d993d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727746,
+ "username": "boygirlln1",
+ "fullName": "Tamxom da1992 (boygirlln1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727746/medium/bb9d9d833f8280f65c9f53620fc789b3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14206176,
+ "username": "tee.arjchaidan",
+ "fullName": "Tee Arjchaidan (tee.arjchaidan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14206176/medium/6682219ceae5ab132142a9590040c165.jpg",
+ "preTranslated": 0,
+ "totalCosts": 182
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 182
+ },
+ "translated": {
+ "tmMatch": 37,
+ "default": 145,
+ "total": 182
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 109,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 37,
+ "default": 145,
+ "total": 182
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14601398,
+ "username": "teknolojiohk",
+ "fullName": "Teknoloji Oyun ve Haber (teknolojiohk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601398/medium/a5ae295c0bcf756cb94fda1cb805af5f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14889596,
+ "username": "thallesamott",
+ "fullName": "Thalles Caramão (thallesamott)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889596/medium/3e50df6563e8389c67e773c0adc8bbc5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 39,
+ "total": 103
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553420,
+ "username": "Blockchaineur",
+ "fullName": "Thibault Langlois-Berthelot (Blockchaineur)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553420/medium/ea46ae87fbc87da1a97ae30fc4c7cbb0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14634768,
+ "username": "FireTom",
+ "fullName": "Thomas Riotte (FireTom)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634768/medium/ab495d03cf23779673a9c1101625106d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14759534,
+ "username": "ThTy56",
+ "fullName": "Thomas T. (ThTy56)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4cac9a501952bdb258c2b786bac7335a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14609240,
+ "username": "tiagogontias",
+ "fullName": "Tiago Martins Gontias (tiagogontias)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609240/medium/ae7855a4b988007f53cebde5456cccba.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 1,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14307842,
+ "username": "tiagomesquita",
+ "fullName": "Tiago Mesquita (tiagomesquita)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14307842/medium/286c5d14d3436b1f58cb218e781f24cc.PNG",
+ "preTranslated": 0,
+ "totalCosts": 502
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 502
+ },
+ "translated": {
+ "tmMatch": 253,
+ "default": 249,
+ "total": 502
+ },
+ "targetTranslated": {
+ "tmMatch": 260,
+ "default": 259,
+ "total": 519
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 127,
+ "total": 130
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 253,
+ "default": 249,
+ "total": 502
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14005383,
+ "username": "dTilen",
+ "fullName": "Tilen Držan (dTilen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14005383/medium/bec643ba44c64e50df99683bab7f3efc.png",
+ "preTranslated": 0,
+ "totalCosts": 1449
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1449
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 1411,
+ "total": 1449
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 1349,
+ "total": 1387
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 1411,
+ "total": 1449
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982689,
+ "username": "Sioux",
+ "fullName": "Timothee Manh (Sioux)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982689/medium/fdc76838236e97df852a1fc98077f7d7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2986
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2986
+ },
+ "translated": {
+ "tmMatch": 93,
+ "default": 2893,
+ "total": 2986
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 3223,
+ "total": 3333
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 838,
+ "total": 848
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 93,
+ "default": 2893,
+ "total": 2986
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14594664,
+ "username": "tintokaradin",
+ "fullName": "Tinto Karadin (tintokaradin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594664/medium/80d1ab062af1d4539b5eb9e1a45345e8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 43
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 36,
+ "total": 43
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 34,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 36,
+ "total": 43
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865340,
+ "username": "tolunaydundar",
+ "fullName": "Tolunay Dündar (tolunaydundar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865340/medium/66516d0d0ba888ac686b0fcc44b9e321.jpg",
+ "preTranslated": 0,
+ "totalCosts": 574
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 574
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 529,
+ "total": 574
+ },
+ "targetTranslated": {
+ "tmMatch": 46,
+ "default": 441,
+ "total": 487
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 529,
+ "total": 574
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14664432,
+ "username": "sewoyl",
+ "fullName": "Tom O (sewoyl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664432/medium/76d5a3fb5606dbd3bc3a6d35e32a2f81.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 73
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 73
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 70,
+ "total": 73
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 73,
+ "total": 76
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 70,
+ "total": 73
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14670984,
+ "username": "piaoguangxue",
+ "fullName": "Tom Sirius (piaoguangxue)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14670984/medium/649b71541f103c94cfc301f43f06c547.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2390
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2390
+ },
+ "translated": {
+ "tmMatch": 234,
+ "default": 2156,
+ "total": 2390
+ },
+ "targetTranslated": {
+ "tmMatch": 337,
+ "default": 3452,
+ "total": 3789
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 253,
+ "total": 255
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 234,
+ "default": 2156,
+ "total": 2390
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 17032,
+ "username": "Tomasdd",
+ "fullName": "Tomas Darius Davainis (Tomasdd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/00fca4999843cb0ed6bf3a01841600f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14223422,
+ "username": "Tquintero",
+ "fullName": "Tomas Quintero (Tquintero)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14223422/medium/4dc704a8cdf6f34719fec8d794700484.jpg",
+ "preTranslated": 0,
+ "totalCosts": 413
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 413
+ },
+ "translated": {
+ "tmMatch": 109,
+ "default": 304,
+ "total": 413
+ },
+ "targetTranslated": {
+ "tmMatch": 123,
+ "default": 329,
+ "total": 452
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 73,
+ "total": 87
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 109,
+ "default": 304,
+ "total": 413
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14497466,
+ "username": "Tomasz80053950",
+ "fullName": "Tomasz80053950",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/210a492b28765302274b11cef115900e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 4,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 4,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14769148,
+ "username": "tomonakar",
+ "fullName": "Tomonakar (tomonakar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769148/medium/d22038e0d5ec47fc64ef9167da382c81.png",
+ "preTranslated": 0,
+ "totalCosts": 1903
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1903
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 1892,
+ "total": 1903
+ },
+ "targetTranslated": {
+ "tmMatch": 40,
+ "default": 4711,
+ "total": 4751
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 186,
+ "total": 186
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 1892,
+ "total": 1903
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778724,
+ "username": "tpereira2005",
+ "fullName": "Tomás Pereira (tpereira2005)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778724/medium/03bd53bd35c7863f67760bc34e0289f7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14659232,
+ "username": "sacripantitomas",
+ "fullName": "Tomás Sacripanti (sacripantitomas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659232/medium/0ad2b5e0ab8f9502bd4c244a3e743f5f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 208
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 208
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 207,
+ "total": 208
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 188,
+ "total": 190
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 207,
+ "total": 208
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14011521,
+ "username": "tmartinek3798",
+ "fullName": "Tomáš Martinek (tmartinek3798)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14011521/medium/11d2b8b7556c6f6d65d6653cb793380a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 370
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 370
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 368,
+ "total": 370
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 303,
+ "total": 305
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 368,
+ "total": 370
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582856,
+ "username": "toratj",
+ "fullName": "Tor Arne Tjåland (toratj)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582856/medium/10fe53b905f4f425e8a7ba079af50015.png",
+ "preTranslated": 0,
+ "totalCosts": 243
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 243
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 236,
+ "total": 243
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 229,
+ "total": 235
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 66,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 236,
+ "total": 243
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14879616,
+ "username": "ctossaphol",
+ "fullName": "Tossaphol Chintanaphan (ctossaphol)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879616/medium/2ec654c7bf81fc9fd46d1cafe971d586.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5646
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5646
+ },
+ "translated": {
+ "tmMatch": 213,
+ "default": 5433,
+ "total": 5646
+ },
+ "targetTranslated": {
+ "tmMatch": 152,
+ "default": 1993,
+ "total": 2145
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 213,
+ "default": 5433,
+ "total": 5646
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708670,
+ "username": "antoniodepaos",
+ "fullName": "Toño Pallarés (antoniodepaos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708670/medium/088fdcb540084a684d4a8f04acfd7144.jpg",
+ "preTranslated": 0,
+ "totalCosts": 395
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 395
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 395,
+ "total": 395
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 437,
+ "total": 437
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 395,
+ "total": 395
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14579816,
+ "username": "fullak",
+ "fullName": "Tristan Brochard (fullak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14579816/medium/86820f407ca3c52d5a2b7b81c18e7eec.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1126
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1126
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 1095,
+ "total": 1126
+ },
+ "targetTranslated": {
+ "tmMatch": 46,
+ "default": 1212,
+ "total": 1258
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 231,
+ "total": 243
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 1095,
+ "total": 1126
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12673951,
+ "username": "LQS_VI_linguist",
+ "fullName": "Truc Tran (LQS_VI_linguist)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ddd8677c1593059e7cd709b56c0e4161?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4081
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4081
+ },
+ "translated": {
+ "tmMatch": 1202,
+ "default": 2879,
+ "total": 4081
+ },
+ "targetTranslated": {
+ "tmMatch": 1781,
+ "default": 4087,
+ "total": 5868
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 9639
+ },
+ "translationCosts": {
+ "tmMatch": 1202,
+ "default": 2879,
+ "total": 4081
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14718510,
+ "username": "truewarlock",
+ "fullName": "Truewarlock (truewarlock)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718510/medium/ee2b5821e0cfda1fb4e191cb0e3d89be.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14898212,
+ "username": "tubelightmediaworks",
+ "fullName": "Tubelight Mediaworks (tubelightmediaworks)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14898212/medium/38ce60e4d7795a5a9f5f0e6995aaa96a.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14562420,
+ "username": "TunahanMurat",
+ "fullName": "Tunahan Murat (TunahanMurat)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562420/medium/1ada228f288ba76ea5984273822e32bc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 35,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 32,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 35,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14654666,
+ "username": "zennomi",
+ "fullName": "Tuấn Anh Nguyễn Đăng (zennomi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654666/medium/76a0948cea9c66434c3c6d8650a5e040.jpg",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 11,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 22,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 11,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14769082,
+ "username": "tzimpoulasnikos",
+ "fullName": "Tzimpoulas Nikolaos (tzimpoulasnikos)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769082/medium/2c98bf823fc33865c306a4bb16e2c8b4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 323
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 323
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 323,
+ "total": 323
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 308,
+ "total": 308
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 156,
+ "total": 156
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 323,
+ "total": 323
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950443,
+ "username": "UX404",
+ "fullName": "UX404",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950443/medium/06561e4c02ad1005099caaf66d873fd2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 973
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 973
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 969,
+ "total": 973
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 1538,
+ "total": 1546
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 969,
+ "total": 973
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14263150,
+ "username": "uliana.didych",
+ "fullName": "Uliana Didych (uliana.didych)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263150/medium/9db80e6f09691536123f44762cc9429c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 270
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 270
+ },
+ "translated": {
+ "tmMatch": 109,
+ "default": 161,
+ "total": 270
+ },
+ "targetTranslated": {
+ "tmMatch": 120,
+ "default": 164,
+ "total": 284
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 109,
+ "default": 161,
+ "total": 270
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13200563,
+ "username": "umatos99",
+ "fullName": "Ulisses Silva (umatos99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13200563/medium/7595c22d7ec598c605890934a944f824.jpg",
+ "preTranslated": 0,
+ "totalCosts": 109
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 109
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 107,
+ "total": 109
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 112,
+ "total": 115
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 41,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 107,
+ "total": 109
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902040,
+ "username": "umarhidayatullah16",
+ "fullName": "Umar Hidayatullah (umarhidayatullah16)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902040/medium/873a0fe05a4609c6b051ecec7c6c9508.png",
+ "preTranslated": 0,
+ "totalCosts": 625
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 625
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 570,
+ "total": 625
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 475,
+ "total": 500
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 570,
+ "total": 625
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13937453,
+ "username": "umeshjha1998",
+ "fullName": "Umesh Jha (umeshjha1998)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13937453/medium/11a2603b1de4e5ee8da759de59f6df47.jpg",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 32,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 50,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 32,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956823,
+ "username": "Usuao_Silver",
+ "fullName": "Usuao_Silver",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956823/medium/f56b919f0846170cf8731272b8726bd7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690454,
+ "username": "sekoman01",
+ "fullName": "Uğur Daloğlu (sekoman01)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690454/medium/595a121d4a7427f7a21b75b32017c247.jpg",
+ "preTranslated": 0,
+ "totalCosts": 10436
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10436
+ },
+ "translated": {
+ "tmMatch": 291,
+ "default": 10145,
+ "total": 10436
+ },
+ "targetTranslated": {
+ "tmMatch": 262,
+ "default": 8073,
+ "total": 8335
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 291,
+ "default": 10145,
+ "total": 10436
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738796,
+ "username": "fuweineng",
+ "fullName": "V Fu (fuweineng)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738796/medium/20a0e28d6dd706e253393cf8940af9e5.png",
+ "preTranslated": 0,
+ "totalCosts": 105
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 105
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 105,
+ "total": 105
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 175,
+ "total": 175
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 105,
+ "total": 105
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14312562,
+ "username": "ValentinDiscord",
+ "fullName": "Valentin (ValentinDiscord)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312562/medium/d65ab707acfea5a7acda465bd6b57a49.gif",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14711854,
+ "username": "Gamma-Software",
+ "fullName": "Valentin Rudloff (Gamma-Software)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711854/medium/0ae62f880c9fdec755310b2d551953ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9868
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9868
+ },
+ "translated": {
+ "tmMatch": 236,
+ "default": 9632,
+ "total": 9868
+ },
+ "targetTranslated": {
+ "tmMatch": 190,
+ "default": 9372,
+ "total": 9562
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 4683,
+ "total": 4688
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 236,
+ "default": 9632,
+ "total": 9868
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14934499,
+ "username": "c4r3fyl",
+ "fullName": "Valentino Gechev (c4r3fyl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934499/medium/2da67358d1967d920a109354e6dade53.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14034084,
+ "username": "vanderleiekobe",
+ "fullName": "Vanderlei Lima (vanderleiekobe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034084/medium/47eab71fe955de8809e44de257853bd9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14035029,
+ "username": "nestoruk93",
+ "fullName": "Vasyl Nestoruk (nestoruk93)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035029/medium/3cfffe4656bea0462aacb77fc6429694.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950169,
+ "username": "byblos94",
+ "fullName": "Veljko Vranić (byblos94)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950169/medium/addf5330271e69946f7833fe3144d01d.png",
+ "preTranslated": 0,
+ "totalCosts": 73
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 73
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021217,
+ "username": "senthilvenkat",
+ "fullName": "Venkatachalam (senthilvenkat)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021217/medium/5b98edb188f1d3de5516a85f4c0d8348.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 33,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 59,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 33,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735846,
+ "username": "weronicamc",
+ "fullName": "Veronika Dudová (weronicamc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735846/medium/ade7898c29d686ea8682dbbe2cec816e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14872676,
+ "username": "VLN_1",
+ "fullName": "Vicente Lorente Noguera (VLN_1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872676/medium/8d173c43fac87f0975a31275048360c8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 714
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 714
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 714,
+ "total": 714
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 652,
+ "total": 652
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 343,
+ "total": 343
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 714,
+ "total": 714
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779700,
+ "username": "viktolas",
+ "fullName": "Victor B (viktolas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779700/medium/b093f2503629b02618afc9e43f1ec486.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 22,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 23,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 22,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14955237,
+ "username": "hvvctor",
+ "fullName": "Victor Hugo Lopes (hvvctor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955237/medium/17461070a3490237f8008d5eec7672da.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 66
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 71,
+ "total": 71
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12441464,
+ "username": "Ibragimov",
+ "fullName": "Victor Ibragimov (Ibragimov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ef1064d6709a9ec1e62ec115a0d499b7?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 185
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 185
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 185,
+ "total": 185
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 195,
+ "total": 195
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 185,
+ "total": 185
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033779,
+ "username": "victorsvn",
+ "fullName": "Victor SVN (victorsvn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033779/medium/528a08c0e6d0621aa6ac770be78d516b.png",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 98,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 139,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 98,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14227150,
+ "username": "vidhyanand",
+ "fullName": "Vidhyanand Cs (vidhyanand)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227150/medium/105fd3bc6a1a8f005dcb0b64a03d22a6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 28483
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 398
+ },
+ "translated": {
+ "tmMatch": 82,
+ "default": 316,
+ "total": 398
+ },
+ "targetTranslated": {
+ "tmMatch": 146,
+ "default": 554,
+ "total": 700
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 82,
+ "default": 316,
+ "total": 398
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611082",
- "username": "ceylan1971",
- "fullName": "ceylan1971",
- "avatarUrl": "https://www.gravatar.com/avatar/bed117dd221dcd5d539b3f784ec2f47d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 16:33:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611168",
- "username": "Geoyde",
- "fullName": "Geoyde",
- "avatarUrl": "https://www.gravatar.com/avatar/5074db9a13a4136d26c6ea4ceb1a65a2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 18:12:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611468",
- "username": "Tehuti33",
- "fullName": "Tehuti33",
- "avatarUrl": "https://www.gravatar.com/avatar/db888856d089757cc3b960eb1f7625bb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 00:31:18"
- },
- "languages": [
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28085
+ },
+ "translated": {
+ "tmMatch": 2257,
+ "default": 25828,
+ "total": 28085
+ },
+ "targetTranslated": {
+ "tmMatch": 3894,
+ "default": 43551,
+ "total": 47445
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 2,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2257,
+ "default": 25828,
+ "total": 28085
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14514124,
+ "username": "ViktorOn",
+ "fullName": "Vik (ViktorOn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514124/medium/070d8d1854a62bf318b2dcb1a02052b9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3465
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3464
+ },
+ "translated": {
+ "tmMatch": 66,
+ "default": 3398,
+ "total": 3464
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 2809,
+ "total": 2873
+ },
+ "translatedByMt": {
+ "tmMatch": 30,
+ "default": 473,
+ "total": 503
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 66,
+ "default": 3398,
+ "total": 3464
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611584",
- "username": "Alessandranicola",
- "fullName": "Alessandranicola",
- "avatarUrl": "https://www.gravatar.com/avatar/d7163af7fc33420783d7659e5bbe172b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 03:11:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866930",
- "username": "CaioRomeiro",
- "fullName": "Caio Romeiro (CaioRomeiro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866930/medium/859f5bcd4dd1d48edfa3a81c0f3c44ae.jpeg",
- "joined": "2021-08-04 22:42:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871056",
- "username": "byrmgrck",
- "fullName": "byrmgrck",
- "avatarUrl": "https://www.gravatar.com/avatar/43047e9f83b37ee78a06796c24a0e82f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 10:15:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871326",
- "username": "Tesloxi",
- "fullName": "Tesloxi",
- "avatarUrl": "https://www.gravatar.com/avatar/f51067ea2e8445728a81911be6df4aec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 15:38:43"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995749,
+ "username": "vikendrit",
+ "fullName": "Vikendrit Decentralized (vikendrit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995749/medium/dd27eac8759a2044212d1803d0965a7b.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ne-NP",
+ "name": "Nepali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 78,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 150,
+ "total": 168
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 78,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992351,
+ "username": "viljarkahari",
+ "fullName": "Viljar Kähari (viljarkahari)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992351/medium/6963ec089ec7a0d1f698c0ceefad6fb6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 99
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "et",
+ "name": "Estonian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 99
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 91,
+ "total": 99
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 74,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 91,
+ "total": 99
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959957,
+ "username": "vincentlg",
+ "fullName": "Vincent Le Gallic (vincentlg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959957/medium/6fecfb73bd02428094be6af1fd2de44a.png",
+ "preTranslated": 0,
+ "totalCosts": 155
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 155
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 125,
+ "total": 155
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 133,
+ "total": 172
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 125,
+ "total": 155
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13903787,
+ "username": "vinhci5",
+ "fullName": "Vinh (vinhci5)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903787/medium/41c8c511377c86ed67aa786be0c4ea33.png",
+ "preTranslated": 0,
+ "totalCosts": 897
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 897
+ },
+ "translated": {
+ "tmMatch": 37,
+ "default": 860,
+ "total": 897
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 1157,
+ "total": 1208
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 37,
+ "default": 860,
+ "total": 897
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14738174,
+ "username": "viniciusfortuna",
+ "fullName": "Vinicius Fortunato (viniciusfortuna)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738174/medium/a23ee260095a908ffd92c2aa8dd6d7e6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 413
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 413
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 407,
+ "total": 413
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 385,
+ "total": 391
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 147,
+ "total": 147
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 407,
+ "total": 413
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14289162,
+ "username": "viswanathkgp12",
+ "fullName": "Viswanath (viswanathkgp12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289162/medium/aef493424354f36254809317dbb62de1.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 0,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 0,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 0,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029535,
+ "username": "vitekurban0",
+ "fullName": "Vit Urban (vitekurban0)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029535/medium/d1920ed19810c05c35d43b4ea0a8ff85.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14722914,
+ "username": "vitalikovalchuk",
+ "fullName": "Vitalii Ko (vitalikovalchuk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722914/medium/6bab43c8cbf3e596e7d209f1ce7eed33.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968209,
+ "username": "vi_ryb05",
+ "fullName": "Vitaliia Rybenchuk (vi_ryb05)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968209/medium/02c2aae41308eec65dac12117f9dfc8d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3670
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3670
+ },
+ "translated": {
+ "tmMatch": 119,
+ "default": 3551,
+ "total": 3670
+ },
+ "targetTranslated": {
+ "tmMatch": 85,
+ "default": 3049,
+ "total": 3134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 119,
+ "default": 3551,
+ "total": 3670
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14014865,
+ "username": "VitorCarminatti",
+ "fullName": "Vitor Carminatti (VitorCarminatti)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14014865/medium/f2e87f0515e1dc27581553b414edead1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737370,
+ "username": "vitalik.mv.13cross",
+ "fullName": "Vitto Gang (vitalik.mv.13cross)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737370/medium/48590bdefeea5905954dcf0793f12676.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12425646,
+ "username": "-klinsky-",
+ "fullName": "Vlad Klinsky (-klinsky-)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/454088a3c4838cf352ec793f63d5aa3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 252
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 252
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 247,
+ "total": 252
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 261,
+ "total": 265
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 16,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 247,
+ "total": 252
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884278,
+ "username": "snoopey",
+ "fullName": "Vlad Styopin (snoopey)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884278/medium/6b9b5c53c7e1fbcc9ecb49f7171ac225.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 881
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 881
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 859,
+ "total": 881
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 668,
+ "total": 693
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 859,
+ "total": 881
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12841010,
+ "username": "slyadmin",
+ "fullName": "Vladimir (slyadmin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12841010/medium/844c2fb2c1a8866c2b873b171d9b994d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 264
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 264
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 250,
+ "total": 264
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 228,
+ "total": 242
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 114,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 250,
+ "total": 264
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028671,
+ "username": "folo2010",
+ "fullName": "Vladimir Alexandrovich (folo2010)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028671/medium/ba01b8798dfc582c1878e173533aeae3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2005
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2005
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 1953,
+ "total": 2005
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 1633,
+ "total": 1678
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 714,
+ "total": 732
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 1953,
+ "total": 2005
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14586642,
+ "username": "key2russia",
+ "fullName": "Vladimir Pochinov (key2russia)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ce138bb68bff7ffa76d0c1a09fdd2388?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14611130,
+ "username": "PeterAdrian",
+ "fullName": "Vlado Bošnjaković (PeterAdrian)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14611130/medium/4620c8912d5e34aacdd0f143ecc13219.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15760
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15760
+ },
+ "translated": {
+ "tmMatch": 532,
+ "default": 15228,
+ "total": 15760
+ },
+ "targetTranslated": {
+ "tmMatch": 536,
+ "default": 14020,
+ "total": 14556
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 532,
+ "default": 15228,
+ "total": 15760
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14718940,
+ "username": "Vojtch",
+ "fullName": "Vojtch",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718940/medium/18bee628523146dfcfbac68c4cb8367d.png",
+ "preTranslated": 0,
+ "totalCosts": 965
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 965
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 952,
+ "total": 965
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 789,
+ "total": 802
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 109,
+ "total": 109
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 952,
+ "total": 965
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14008271,
+ "username": "comodoro",
+ "fullName": "Vojtěch Drábek (comodoro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008271/medium/c7b5cf629f7c0a1a3c8be6944f69983e.png",
+ "preTranslated": 0,
+ "totalCosts": 10337
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10337
+ },
+ "translated": {
+ "tmMatch": 2928,
+ "default": 7409,
+ "total": 10337
+ },
+ "targetTranslated": {
+ "tmMatch": 2967,
+ "default": 7273,
+ "total": 10240
+ },
+ "translatedByMt": {
+ "tmMatch": 64,
+ "default": 762,
+ "total": 826
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2928,
+ "default": 7409,
+ "total": 10337
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14253108,
+ "username": "chervol",
+ "fullName": "Volodymyr Cherepanyak (chervol)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14253108/medium/fc1083e2e10c3ebe3d5a82a3ec525c5f.png",
+ "preTranslated": 0,
+ "totalCosts": 921
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 921
+ },
+ "translated": {
+ "tmMatch": 147,
+ "default": 774,
+ "total": 921
+ },
+ "targetTranslated": {
+ "tmMatch": 136,
+ "default": 754,
+ "total": 890
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 147,
+ "default": 774,
+ "total": 921
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14556868,
+ "username": "Toms_Amway",
+ "fullName": "Voper Tom (Toms_Amway)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14556868/medium/e73365d23b16289c375cdc7b684c7150.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2540
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2540
+ },
+ "translated": {
+ "tmMatch": 66,
+ "default": 2474,
+ "total": 2540
+ },
+ "targetTranslated": {
+ "tmMatch": 120,
+ "default": 3795,
+ "total": 3915
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 455,
+ "total": 464
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 66,
+ "default": 2474,
+ "total": 2540
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14560600,
+ "username": "Vraj142",
+ "fullName": "Vraj142",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560600/medium/4b643d6b30d2a8a6161cf5c52c46fc20.png",
+ "preTranslated": 0,
+ "totalCosts": 127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 127
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 122,
+ "total": 127
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 236,
+ "total": 245
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 122,
+ "total": 127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13180742,
+ "username": "gostovicvukasin46",
+ "fullName": "Vukasin Gostovic (gostovicvukasin46)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13180742/medium/a45a8a6c1ac78c9310b25f12ea1ea688.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14674814,
+ "username": "octoslav",
+ "fullName": "Vyacheslav Eliseev (octoslav)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674814/medium/1376cc6eec0f3d7197bcc675b2e942fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 11,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14784930,
+ "username": "vaclav.kyval",
+ "fullName": "Václav Kýval (vaclav.kyval)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784930/medium/124a3262e9172e0da7b788575a4c4f3d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 294
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 294
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 283,
+ "total": 294
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 240,
+ "total": 251
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 88,
+ "total": 88
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 283,
+ "total": 294
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732454,
+ "username": "Eliseowzy",
+ "fullName": "WangZY (Eliseowzy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732454/medium/02ecbccec638f087235f25edb54b61e4.png",
+ "preTranslated": 0,
+ "totalCosts": 439
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 439
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 436,
+ "total": 439
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 740,
+ "total": 746
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 436,
+ "total": 439
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13902877,
+ "username": "wanseob",
+ "fullName": "Wanseob Lim (wanseob)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13902877/medium/1f83176d2935849b5c4a30ef03cee94b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1648
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1648
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 1628,
+ "total": 1648
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 1546,
+ "total": 1568
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 1628,
+ "total": 1648
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14928453,
+ "username": "devinderkumar321123",
+ "fullName": "Well Done (devinderkumar321123)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928453/medium/3ff4bb393f438e00e776eb20608acbc8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14926951,
+ "username": "werew985",
+ "fullName": "Were Were (werew985)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926951/medium/60813b9a95c00bf8943ff51d75bf26ec.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "my",
+ "name": "Burmese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 14,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 14,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 14,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14658124,
+ "username": "Whisker17",
+ "fullName": "Whisker17",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658124/medium/18f9c6ace7e85e56eb86e2b6486789e0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 29,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678858,
+ "username": "Illy225",
+ "fullName": "Wilfried Konan (Illy225)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678858/medium/9b5ab0ef8dd137188a4dbd79a0c9e41a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 218
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 218
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 211,
+ "total": 218
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 224,
+ "total": 234
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 211,
+ "total": 218
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14739968,
+ "username": "willporto1405",
+ "fullName": "William Alves Porto Da Silva (willporto1405)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739968/medium/1db660fc70c1ab3174474892a9fa9297.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15037157,
+ "username": "Apspelet33",
+ "fullName": "William Eliasson (Apspelet33)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15037157/medium/df96a4edda4e709ce0a0663c57372630.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 141
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 108,
+ "total": 141
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 104,
+ "total": 136
+ },
+ "translatedByMt": {
+ "tmMatch": 30,
+ "default": 92,
+ "total": 122
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 108,
+ "total": 141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14760278,
+ "username": "1st.tati",
+ "fullName": "Wisavaponr Tati (1st.tati)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760278/medium/757ae458617fb31da8ec9b4d38fcf55e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 20,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 20,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14714290,
+ "username": "Wisnuadity",
+ "fullName": "Wisnu Aditya (Wisnuadity)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714290/medium/fbae35aeca0836b0acfa8d9ebebfdcd1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3127
+ },
+ "translated": {
+ "tmMatch": 197,
+ "default": 2930,
+ "total": 3127
+ },
+ "targetTranslated": {
+ "tmMatch": 201,
+ "default": 2551,
+ "total": 2752
+ },
+ "translatedByMt": {
+ "tmMatch": 54,
+ "default": 9,
+ "total": 63
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 197,
+ "default": 2930,
+ "total": 3127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14591640,
+ "username": "malewolf",
+ "fullName": "Wolf Shadow (malewolf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591640/medium/c801a5424c7eae77cb79685244ee9dee.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 117
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 117
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14618190,
+ "username": "tomekchada23",
+ "fullName": "Wyrzykowski Wiktor (tomekchada23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618190/medium/81b551fadd1046247b7c39fb62834488.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14718106,
+ "username": "xenwilliam",
+ "fullName": "XENWILLIAM (xenwilliam)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0193309e1c9718da74e8031173710153?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 416
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 416
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 402,
+ "total": 416
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 365,
+ "total": 380
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 312,
+ "total": 321
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 402,
+ "total": 416
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14731048,
+ "username": "Xackurai",
+ "fullName": "Xackurai",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731048/medium/f26e2018bffc93ae932ec0a7c8ad8775.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14998169,
+ "username": "xcanchal",
+ "fullName": "Xavier Canchal (xcanchal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998169/medium/6da03bbf781254776ba5a5c630ee4644.png",
+ "preTranslated": 0,
+ "totalCosts": 367
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 367
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 365,
+ "total": 367
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 404,
+ "total": 406
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 365,
+ "total": 367
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14615784,
+ "username": "semangat88",
+ "fullName": "Xi An (semangat88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615784/medium/c1fd77eb4ec45e5482a8883e744ae392.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778160,
+ "username": "wynako",
+ "fullName": "Xsourcingf (wynako)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778160/medium/2bbf8cda69d3ab51ac86cc1d50ed69c2.png",
+ "preTranslated": 0,
+ "totalCosts": 284
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 284
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 253,
+ "total": 284
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 188,
+ "total": 217
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 149,
+ "total": 151
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 253,
+ "total": 284
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13128900,
+ "username": "YannAries",
+ "fullName": "Y@nnick (YannAries)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13128900/medium/7d1e00ebe7aca553dd475b2b888e769f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 477
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 477
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 472,
+ "total": 477
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 514,
+ "total": 519
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 42,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 472,
+ "total": 477
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566568,
+ "username": "YIgITeFe",
+ "fullName": "YIgITeFe",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566568/medium/f9f56947e8c3882058f060c6d30c7fde.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 15,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 15,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14611278,
+ "username": "mattgene",
+ "fullName": "Yang, Chi En (mattgene)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14611278/medium/1826f3f39b402a0386b082945c71c7d1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 27,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14916229,
+ "username": "yannfurrer33",
+ "fullName": "Yann Furrer (yannfurrer33)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916229/medium/ef270c9207fc2731c23a32a1765629a1.png",
+ "preTranslated": 0,
+ "totalCosts": 1419
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1419
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1419,
+ "total": 1419
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1396,
+ "total": 1396
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 654,
+ "total": 654
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1419,
+ "total": 1419
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12702618,
+ "username": "p30on",
+ "fullName": "Yaser Doosti (p30on)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a7cd3eede73e079a057b4cb26e31e242?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 82,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 85,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 82,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14036488,
+ "username": "YeFuchao",
+ "fullName": "YeFuchao",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14036488/medium/e14fc236265b9a05d9bd437045e252b2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 21,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 25,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 21,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14630992,
+ "username": "YeiOz",
+ "fullName": "Yeison Ospino (YeiOz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630992/medium/5b635093aa84e77f956aba430141b90b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1403
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1403
+ },
+ "translated": {
+ "tmMatch": 73,
+ "default": 1330,
+ "total": 1403
+ },
+ "targetTranslated": {
+ "tmMatch": 72,
+ "default": 1328,
+ "total": 1400
+ },
+ "translatedByMt": {
+ "tmMatch": 35,
+ "default": 987,
+ "total": 1022
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 73,
+ "default": 1330,
+ "total": 1403
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866604,
+ "username": "yeremiaryangunadi",
+ "fullName": "Yeremia Ryan Gunadi (yeremiaryangunadi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png",
+ "preTranslated": 0,
+ "totalCosts": 140705
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 140705
+ },
+ "translated": {
+ "tmMatch": 7376,
+ "default": 133329,
+ "total": 140705
+ },
+ "targetTranslated": {
+ "tmMatch": 6322,
+ "default": 121257,
+ "total": 127579
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7376,
+ "default": 133329,
+ "total": 140705
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026665,
+ "username": "yzarbun",
+ "fullName": "Yigit Zarbun (yzarbun)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026665/medium/20e52ef9a7092025f059cc558f3bafe4.png",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13986271,
+ "username": "ybb",
+ "fullName": "Yiğit Burak (ybb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986271/medium/805f65ce273d713fc7c68735b4bc2e7b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14664708,
+ "username": "yorihito.tada",
+ "fullName": "Yorihito Tada (yorihito.tada)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664708/medium/eec8e38895d8d1e900a8c4291a18a602.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 695
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 695
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 690,
+ "total": 695
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 1584,
+ "total": 1599
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 126,
+ "total": 126
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 690,
+ "total": 695
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14592976,
+ "username": "YorkSvit",
+ "fullName": "YorkSvit",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14592976/medium/8aac6eeb10b86733844156b774ca665b.png",
+ "preTranslated": 0,
+ "totalCosts": 612
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 612
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 587,
+ "total": 612
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 511,
+ "total": 535
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 441,
+ "total": 453
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 587,
+ "total": 612
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572090,
+ "username": "yosef.morris",
+ "fullName": "Yosef Morris (yosef.morris)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572090/medium/70373c34e75730078decb52811193902.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13546290,
+ "username": "YBHwang",
+ "fullName": "Yuchan Hwang (YBHwang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13546290/medium/5bed4686e2d38160c92ffa384999c958.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 12,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 16,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 12,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14596616,
+ "username": "cloudlite",
+ "fullName": "Yucheng Liu (cloudlite)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14596616/medium/3c67d9256c565425b6171b1bb6cb5231.png",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 89,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 147,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 89,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14770398,
+ "username": "zhangyuenet",
+ "fullName": "Yue Zhang (zhangyuenet)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/91e5db633c553cc5938984a6711a32bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5757
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5757
+ },
+ "translated": {
+ "tmMatch": 144,
+ "default": 5613,
+ "total": 5757
+ },
+ "targetTranslated": {
+ "tmMatch": 221,
+ "default": 7371,
+ "total": 7592
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 144,
+ "default": 5613,
+ "total": 5757
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14723930,
+ "username": "Ebisuzawa_Kurumi",
+ "fullName": "Yuki Takeya (Ebisuzawa_Kurumi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723930/medium/2d6585159bd9080dcc59df93a2056fe7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 448
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 448
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 435,
+ "total": 448
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 327,
+ "total": 341
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 435,
+ "total": 448
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949555,
+ "username": "yuliia_aminieva",
+ "fullName": "Yuliia Aminieva (yuliia_aminieva)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949555/medium/208c20c213ef41f03769a5be5fdc453c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4068
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4068
+ },
+ "translated": {
+ "tmMatch": 70,
+ "default": 3998,
+ "total": 4068
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 3377,
+ "total": 3441
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 633,
+ "total": 643
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 70,
+ "default": 3998,
+ "total": 4068
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14599084,
+ "username": "yunussihamimre",
+ "fullName": "Yunus Imre (yunussihamimre)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599084/medium/aa222d76a371224efa62cc324b3f7cdd.jpg",
+ "preTranslated": 0,
+ "totalCosts": 175
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 175
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 175,
+ "total": 175
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 160,
+ "total": 160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 175,
+ "total": 175
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727924,
+ "username": "YuriNascimento",
+ "fullName": "Yuri Nascimento (YuriNascimento)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727924/medium/64551c4f06627c3dc665d55f0c240b6f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 145
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 145
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 145,
+ "total": 145
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 154,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 145,
+ "total": 145
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13208316,
+ "username": "yuriypylypchuk",
+ "fullName": "Yuriy (yuriypylypchuk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/20792792a16dfd01cb6612c393799535?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 74
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 74
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 54,
+ "total": 74
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 195,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 54,
+ "total": 74
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14609942,
+ "username": "yuvi76",
+ "fullName": "Yuvi (yuvi76)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609942/medium/fbeb5b19a1b160d02131066d3e1475ab.png",
+ "preTranslated": 0,
+ "totalCosts": 455
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 455
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 453,
+ "total": 455
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 754,
+ "total": 756
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 453,
+ "total": 455
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14039115,
+ "username": "thezacjordan",
+ "fullName": "Zach Jordan (thezacjordan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14039115/medium/91ad930a2c55427339dda8c030e86eff.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eo",
+ "name": "Esperanto",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 106
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 102,
+ "total": 106
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 91,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 102,
+ "total": 106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558364,
+ "username": "Zachinquarantine",
+ "fullName": "Zachinquarantine",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558364/medium/f255e187347bd3356751f4c43d10f4be.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 371
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 371
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 353,
+ "total": 371
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 291,
+ "total": 310
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 353,
+ "total": 371
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14813188,
+ "username": "zhizheng",
+ "fullName": "Zack Wang (zhizheng)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813188/medium/2e7f6339b3b0cef257f1a26dd6fdc970.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 395
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 395
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 389,
+ "total": 395
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 475,
+ "total": 491
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 208,
+ "total": 213
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 389,
+ "total": 395
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14569018,
+ "username": "zfrtmz89",
+ "fullName": "Zafer Temiz (zfrtmz89)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569018/medium/70435bca8b3029b694e77e3af1de845c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 488
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 488
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 486,
+ "total": 488
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 406,
+ "total": 408
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 486,
+ "total": 488
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14778956,
+ "username": "zhaitkin",
+ "fullName": "Zak Haitkin (zhaitkin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778956/medium/cbbcb41eea198309631de1e55bd67ddd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 192,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 136,
+ "total": 143
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 192,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14606060,
+ "username": "Ali.Dameh",
+ "fullName": "ZatoRiiX (Ali.Dameh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606060/medium/74f176b33d73e054ac659b9c42c358bb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709308,
+ "username": "andortree",
+ "fullName": "Ziang Chen (andortree)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709308/medium/0069b2309f3e553d592492b2980c4fc2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 107
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 107
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 100,
+ "total": 107
+ },
+ "targetTranslated": {
+ "tmMatch": 73,
+ "default": 151,
+ "total": 224
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 100,
+ "total": 107
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14668266,
+ "username": "zladupka",
+ "fullName": "Zla Dupka (zladupka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14668266/medium/9a47ff2fefed04e81000beba521783e9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12803415,
+ "username": "zafozafov",
+ "fullName": "Znahari Dinkov (zafozafov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12803415/medium/06655ec20301f2f42a64f050c4623d0d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 218
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 218
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 217,
+ "total": 218
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 212,
+ "total": 213
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 217,
+ "total": 218
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861744,
+ "username": "szabozoltan69",
+ "fullName": "Zoltán Szabó (szabozoltan69)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861744/medium/f9ef7465cd3b8d070e9c0eb815e0334c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 181
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 181
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 181,
+ "total": 181
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 181,
+ "total": 181
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14787072,
+ "username": "HidroGaming",
+ "fullName": "_H1dR0_ (HidroGaming)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787072/medium/43874b3e9048a461c2bf7be02100d08d.png",
+ "preTranslated": 0,
+ "totalCosts": 471
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 471
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 451,
+ "total": 471
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 559,
+ "total": 584
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 134,
+ "total": 135
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 451,
+ "total": 471
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14870630,
+ "username": "a8832021",
+ "fullName": "a8832021",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14870630/medium/b36889c699124e54c6b781e3ba477726.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 14,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 42,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 8,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 14,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14205710,
+ "username": "abdou7191",
+ "fullName": "abdou7191",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14205710/medium/5c3234dfa54fbd78a3143e26af1f741c.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14573716,
+ "username": "abdoulaye77124",
+ "fullName": "abdoulaye diallo (abdoulaye77124)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573716/medium/3f85f9842e486a6773ec5351e1878ece.jpg",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 58,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 67,
+ "total": 77
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 58,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995121,
+ "username": "abhi.kanodia803",
+ "fullName": "abhishek Kanodia (abhi.kanodia803)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995121/medium/d05ae7488e7a8e4a2b4e2be59c889f0e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844420,
+ "username": "actgms",
+ "fullName": "actgms",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844420/medium/db7256e7422c9fdc1fa99e46436b6b4d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 45,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14700534,
+ "username": "aallaladil",
+ "fullName": "adil aallal (aallaladil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14700534/medium/d018c1dc2d3f4d8b026bfd24c106f481.jpg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727038,
+ "username": "agolautner",
+ "fullName": "agolautner",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727038/medium/4150668cd11c03c029aeaaa44409248e.png",
+ "preTranslated": 0,
+ "totalCosts": 2057
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2057
+ },
+ "translated": {
+ "tmMatch": 107,
+ "default": 1950,
+ "total": 2057
+ },
+ "targetTranslated": {
+ "tmMatch": 103,
+ "default": 1441,
+ "total": 1544
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 107,
+ "default": 1950,
+ "total": 2057
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12629826,
+ "username": "ley2xc",
+ "fullName": "agung mujiono (ley2xc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/60013fdc1b746df9da89f5f6f0624fba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820324,
+ "username": "alenque82",
+ "fullName": "alan chen (alenque82)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820324/medium/384f8a2be04550200050bdcdd22931dd.png",
+ "preTranslated": 0,
+ "totalCosts": 715
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 715
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 709,
+ "total": 715
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 1034,
+ "total": 1045
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 471,
+ "total": 475
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 709,
+ "total": 715
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14595260,
+ "username": "AlanP",
+ "fullName": "alanparsn (AlanP)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595260/medium/ed4bb504f0eb2e1c6721b389adf5a13f.png",
+ "preTranslated": 0,
+ "totalCosts": 984
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 984
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 980,
+ "total": 984
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 1006,
+ "total": 1010
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 108,
+ "total": 108
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 980,
+ "total": 984
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14893204,
+ "username": "alanwang123",
+ "fullName": "alanwang123",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893204/medium/a117e332c42088df14b116c428944e52.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14706332,
+ "username": "AlexD10S",
+ "fullName": "alexd10s (AlexD10S)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706332/medium/bcc3c3226163167446b575fe615e96d2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 103
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 103
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14754146,
+ "username": "alfus5",
+ "fullName": "alfu5 (alfus5)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754146/medium/69dd3ead82350e6abe958295d8cf6259.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 205
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 205
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 197,
+ "total": 205
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 204,
+ "total": 216
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 197,
+ "total": 205
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737690,
+ "username": "alireza8445",
+ "fullName": "ali reza (alireza8445)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737690/medium/0b41ad06dec9747ab1b978e7432af22d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14766386,
+ "username": "shamekhi.ali",
+ "fullName": "ali shamekhi (shamekhi.ali)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766386/medium/5a6c7247fbce5af5ba2830e1b988f2c6.png",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 39,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 45,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 39,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14799060,
+ "username": "alpergindao",
+ "fullName": "alp (alpergindao)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0de6f9af763cc0a46781ae451a2bf1a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 19,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 15,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 19,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698674,
+ "username": "alperbayrm",
+ "fullName": "alper bayram (alperbayrm)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698674/medium/caef6e7ebcde2cfccd4e804e5c920150.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1077
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1077
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 1047,
+ "total": 1077
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 777,
+ "total": 806
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 1047,
+ "total": 1077
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14561936,
+ "username": "althamir1",
+ "fullName": "althamir1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2e86827e2244fe534906ea0b08a49a58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 114,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 124,
+ "total": 126
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 114,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999683,
+ "username": "amal.jaison2000",
+ "fullName": "amal jaison (amal.jaison2000)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999683/medium/2a99d9bd895c3104f4b4ca40e8642477.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 9,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 22,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 9,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779956,
+ "username": "aminmousavi5147",
+ "fullName": "amin mousavi (aminmousavi5147)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779956/medium/e7f9bbadcf8a0fcd735ad66373fdb4fd.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 49,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 81,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 49,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14769694,
+ "username": "andrey1a5",
+ "fullName": "andrey moroz (andrey1a5)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769694/medium/b5641bfee356df01a3835c1fda9a8c24.png",
+ "preTranslated": 0,
+ "totalCosts": 139
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 139
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 139,
+ "total": 139
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 105,
+ "total": 105
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 139,
+ "total": 139
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14757574,
+ "username": "anilgr.agr",
+ "fullName": "anil gr (anilgr.agr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757574/medium/85827672f55103be185e54169d693067.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 8975,
+ "username": "applingua",
+ "fullName": "applingua",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/8975/medium/cea91d511b0d0f620f3204b59526e175.jpg",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 14
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14506010,
+ "username": "arafat877",
+ "fullName": "arafat bouchafra (arafat877)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14506010/medium/36b5c3cd4edc933544e9998ee647314e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026807,
+ "username": "arican35",
+ "fullName": "arican35",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026807/medium/a64aca2b97f9362fdcee4d7ac1145477.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973077,
+ "username": "arin32",
+ "fullName": "arin32",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973077/medium/bd7c4f92ab2c1f86489508b41262fdad.png",
+ "preTranslated": 0,
+ "totalCosts": 1124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1124
+ },
+ "translated": {
+ "tmMatch": 68,
+ "default": 1056,
+ "total": 1124
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 288,
+ "total": 323
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 3,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 68,
+ "default": 1056,
+ "total": 1124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779418,
+ "username": "arminshoughi",
+ "fullName": "armin shoghi (arminshoughi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779418/medium/871c3e1eb7d9102bbec05027c14dcdfe.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 200
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 200
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 176,
+ "total": 200
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 217,
+ "total": 252
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 176,
+ "total": 200
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14440850,
+ "username": "arrobaxbit",
+ "fullName": "arrobaxbit",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14440850/medium/55b28941c57977ac6c45498770abb6ed.jpg",
+ "preTranslated": 0,
+ "totalCosts": 111
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 111
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 126,
+ "total": 126
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15022465,
+ "username": "avolpe1998",
+ "fullName": "avolpe1998",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022465/medium/0c46ffa5589448ece16b6ef83d7c2a1e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 36,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 29,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 36,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14641434,
+ "username": "bamboo420",
+ "fullName": "bamboo420",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14641434/medium/32baccfa9e8b02cb7a0ed17e4d0a99e5.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14724502,
+ "username": "barcaglobalservices",
+ "fullName": "barcaglobalservices",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724502/medium/5270f924a12ffb55ce9f1f060c95ac51.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 13,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14157025,
+ "username": "baro0k",
+ "fullName": "baro0k",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14157025/medium/1994360c948b9729c3545a31a0062b44.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14821110,
+ "username": "behzad6533999",
+ "fullName": "behzad mehdizadeh (behzad6533999)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821110/medium/88b7c53f76930544c2c57861e65dab83.png",
+ "preTranslated": 0,
+ "totalCosts": 779
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 779
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 768,
+ "total": 779
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 874,
+ "total": 885
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 4,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 768,
+ "total": 779
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969033,
+ "username": "belajarkripto",
+ "fullName": "belajarkripto",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969033/medium/53c6a8e2385987d4555337d628710e58.png",
+ "preTranslated": 0,
+ "totalCosts": 686
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 686
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 681,
+ "total": 686
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 665,
+ "total": 669
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 681,
+ "total": 686
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688548,
+ "username": "bhmot",
+ "fullName": "bhmot",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688548/medium/b05f4b0863b36f2784532e50edab498a.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14046447,
+ "username": "bolbo0x",
+ "fullName": "bolbo (bolbo0x)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/64a80a8ef05eb451ede2579735f1bbe5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11781
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11631
+ },
+ "translated": {
+ "tmMatch": 2177,
+ "default": 9454,
+ "total": 11631
+ },
+ "targetTranslated": {
+ "tmMatch": 2215,
+ "default": 9600,
+ "total": 11815
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2177,
+ "default": 9454,
+ "total": 11631
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878772",
- "username": "dhencat",
- "fullName": "Dheny Catur Kristanto (dhencat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878772/medium/e1f3cb1f33cdf4ee98d049d1300d43f4.jpeg",
- "joined": "2021-08-13 12:34:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14875054",
- "username": "Shimpei_Funasaka",
- "fullName": "Shimpei Funasaka (Shimpei_Funasaka)",
- "avatarUrl": "https://www.gravatar.com/avatar/a37a1affe9a222e992b4b45af3d74e5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 20:57:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601184",
- "username": "Batia123",
- "fullName": "Batia123",
- "avatarUrl": "https://www.gravatar.com/avatar/ac5f403fe929105bd89ebe85e221140d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 05:41:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877704",
- "username": "criticus600",
- "fullName": "Proyecto simpsons (criticus600)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877704/medium/bd3c5212520249269d6954116d5dac69.png",
- "joined": "2021-08-12 20:08:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601388",
- "username": "DJ21861",
- "fullName": "DJ21861",
- "avatarUrl": "https://www.gravatar.com/avatar/707cb59855412723c0a640c41ea793b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 08:38:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601464",
- "username": "lk918655",
- "fullName": "lk918655",
- "avatarUrl": "https://www.gravatar.com/avatar/671b333099f3b58b036799bd46df07e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 09:44:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877388",
- "username": "david.contatos",
- "fullName": "David Silva (david.contatos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877388/medium/869bf68958dd3a5adf5d9f49e4546259.jpeg",
- "joined": "2021-08-12 14:34:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602146",
- "username": "fquivera",
- "fullName": "Francisco Quivera (fquivera)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14602146/medium/538c7b90f653641c51d1b24d72f1ccfd.jpeg",
- "joined": "2021-01-30 21:43:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602366",
- "username": "suwirya",
- "fullName": "suwirya",
- "avatarUrl": "https://www.gravatar.com/avatar/43142dbff1f96fdb303b380b9621356b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-31 02:41:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602792",
- "username": "juandiez",
- "fullName": "Juan Alberto Díez (juandiez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14602792/medium/37b83c34da523339288e3f98e8bcb070.jpeg",
- "joined": "2021-01-31 09:53:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605104",
- "username": "jjk333ee",
- "fullName": "jjk333ee",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605104/medium/122373b13a047da95c74d1ac32ad9124.png",
- "joined": "2021-02-01 23:07:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605498",
- "username": "Diecinueve",
- "fullName": "Diecinueve",
- "avatarUrl": "https://www.gravatar.com/avatar/8e9d5aa7072964149454b5aac56094d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-02 05:29:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871446",
- "username": "muratgyk52",
- "fullName": "murat geyik (muratgyk52)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14871446/medium/f046198b1fb06109f5173d9d9cc50583.png",
- "joined": "2021-08-08 18:19:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874476",
- "username": "DestinyS02",
- "fullName": "DestinyS02",
- "avatarUrl": "https://www.gravatar.com/avatar/65da49aae500edae31768b7b26de9af6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 18:17:17"
- },
- "languages": [
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 150
+ },
+ "translated": {
+ "tmMatch": 136,
+ "default": 14,
+ "total": 150
+ },
+ "targetTranslated": {
+ "tmMatch": 470,
+ "default": 32,
+ "total": 502
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 136,
+ "default": 14,
+ "total": 150
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14892132,
+ "username": "bolingboling",
+ "fullName": "bolingboling",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892132/medium/0d05975017e3f5fb32c005f3dca098f5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14046771,
+ "username": "bayd",
+ "fullName": "can d (bayd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14046771/medium/64f6ad3254ccf384070bde26cce963a2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2891
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2891
+ },
+ "translated": {
+ "tmMatch": 104,
+ "default": 2787,
+ "total": 2891
+ },
+ "targetTranslated": {
+ "tmMatch": 100,
+ "default": 2544,
+ "total": 2644
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 104,
+ "default": 2787,
+ "total": 2891
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005017,
+ "username": "catmalark",
+ "fullName": "catmalark",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005017/medium/ebecfd5187d2eafcc7a249142442c7e1.png",
+ "preTranslated": 0,
+ "totalCosts": 549
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 549
+ },
+ "translated": {
+ "tmMatch": 105,
+ "default": 444,
+ "total": 549
+ },
+ "targetTranslated": {
+ "tmMatch": 96,
+ "default": 402,
+ "total": 498
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 105,
+ "default": 444,
+ "total": 549
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14942697,
+ "username": "cclefjp",
+ "fullName": "cclef (cclefjp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942697/medium/f0b6f7427184742914c4e061e485ecf0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2403
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2403
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 2371,
+ "total": 2403
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 4990,
+ "total": 5127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 2371,
+ "total": 2403
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14950209,
+ "username": "cesarsscorpion",
+ "fullName": "cesar llano (cesarsscorpion)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950209/medium/d999b054672bbfb715f0c09166aa4887.png",
+ "preTranslated": 0,
+ "totalCosts": 379
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 379
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 373,
+ "total": 379
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 400,
+ "total": 406
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 124,
+ "total": 130
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 373,
+ "total": 379
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14607254,
+ "username": "cezary-stroczynski",
+ "fullName": "cezary-stroczynski",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14607254/medium/b033a54bafd521fb58eddc8dbc1344ce.png",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14646244,
+ "username": "mrsunchen0110",
+ "fullName": "chen sun (mrsunchen0110)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646244/medium/ced9415dcbce7bb8ea9ded3d7d4809ff.jpg",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14453924,
+ "username": "rungrot922j",
+ "fullName": "chocolate and cake (rungrot922j)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14453924/medium/36863c65ecd19173d8783dda10b2ce3a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14289608,
+ "username": "ciko1706",
+ "fullName": "ciko1706",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289608/medium/0fa7056377777d1081cf061129ffc332.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15032061,
+ "username": "coffeeparty",
+ "fullName": "coffeeparty",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032061/medium/7e52ad480ca81e424568526990ada2fb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 249,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737644,
+ "username": "DylanCONIN",
+ "fullName": "conin dylan (DylanCONIN)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737644/medium/d981e7d9ae1b98b7e8a21245675fc0e0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15610
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15610
+ },
+ "translated": {
+ "tmMatch": 482,
+ "default": 15128,
+ "total": 15610
+ },
+ "targetTranslated": {
+ "tmMatch": 475,
+ "default": 14818,
+ "total": 15293
+ },
+ "translatedByMt": {
+ "tmMatch": 110,
+ "default": 9085,
+ "total": 9195
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 482,
+ "default": 15128,
+ "total": 15610
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14717068,
+ "username": "realtho",
+ "fullName": "daniellesniak (realtho)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717068/medium/a598805684a9d5a1fcf970131ce59963.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 0,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 0,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 0,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14850810,
+ "username": "esdi",
+ "fullName": "dapalek (esdi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850810/medium/7e3a7993a59f2402dd2a2a32c2d92aed.png",
+ "preTranslated": 0,
+ "totalCosts": 11051
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11051
+ },
+ "translated": {
+ "tmMatch": 550,
+ "default": 10501,
+ "total": 11051
+ },
+ "targetTranslated": {
+ "tmMatch": 438,
+ "default": 8589,
+ "total": 9027
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 11,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 550,
+ "default": 10501,
+ "total": 11051
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673502,
+ "username": "dartini123",
+ "fullName": "dartini123",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673502/medium/1589de50b3256afbd8193b1b4befc4ce.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8141
+ },
+ "translated": {
+ "tmMatch": 106,
+ "default": 8035,
+ "total": 8141
+ },
+ "targetTranslated": {
+ "tmMatch": 126,
+ "default": 9300,
+ "total": 9426
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3340,
+ "total": 3340
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 106,
+ "default": 8035,
+ "total": 8141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14853150,
+ "username": "deborah.elizabeth.pereira",
+ "fullName": "deborah pereira (deborah.elizabeth.pereira)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853150/medium/3689e0e41d3b2c7c93aa95dfdebf880b.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937513,
+ "username": "devudilip",
+ "fullName": "devu dilip (devudilip)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937513/medium/11d939bf3bb9ba2df698db8ac77e020e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14634672,
+ "username": "devyfriend",
+ "fullName": "devy friend (devyfriend)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634672/medium/2520a4958515a21c5f8868011e5a4e7d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 129
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14165251,
+ "username": "paagol",
+ "fullName": "dipankar das (paagol)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14165251/medium/0a90a90a126a5c80cc162947ef7e2fc8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 0,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14515116,
+ "username": "jayadiahmad658",
+ "fullName": "dua sejoli berantam sejoli (jayadiahmad658)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515116/medium/6e756f6c10d3988984fa2111b68ab11d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13720923,
+ "username": "adjobs70",
+ "fullName": "e.g NguyenVietThao (adjobs70)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e4e72c286eeabd8c5e5dc107f0bd4922?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 568
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 568
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 561,
+ "total": 568
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 737,
+ "total": 745
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 561,
+ "total": 568
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15019905,
+ "username": "e06-tech",
+ "fullName": "e06-tech",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019905/medium/8d5a2069e2825a02309a7da0b1e019bb.png",
+ "preTranslated": 0,
+ "totalCosts": 598
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 598
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 593,
+ "total": 598
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 534,
+ "total": 539
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 593,
+ "total": 598
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631802,
+ "username": "edgargrau",
+ "fullName": "eDgar gRau (edgargrau)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1327
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1327
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 1312,
+ "total": 1327
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 1366,
+ "total": 1384
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 509,
+ "total": 515
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 1312,
+ "total": 1327
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14132617,
+ "username": "ebimoradvand",
+ "fullName": "ebi moradvand (ebimoradvand)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14132617/medium/bdc08e01d406df20078137371a78f618.jpg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14615434,
+ "username": "bjaniehsan99",
+ "fullName": "ehsan jani (bjaniehsan99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615434/medium/1567d8c17ba7eb590fd7bacfecea98fe.jpg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14685918,
+ "username": "ekkoin",
+ "fullName": "ekkoin",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685918/medium/8e7bf955bc2789383269e03684bd386a.png",
+ "preTranslated": 0,
+ "totalCosts": 159
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 159
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 159,
+ "total": 159
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 266,
+ "total": 266
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 159,
+ "total": 159
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036227,
+ "username": "fusionist989",
+ "fullName": "emel benlice (fusionist989)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15036227/medium/7dc3f62c732c630bf1b87bd4371c831a.png",
+ "preTranslated": 0,
+ "totalCosts": 124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 124,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 124,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14574648,
+ "username": "aveurora",
+ "fullName": "eresytter (aveurora)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14574648/medium/d82aff1821b0583f8fe4673a272d2ee7.png",
+ "preTranslated": 0,
+ "totalCosts": 517
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 517
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 516,
+ "total": 517
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 447,
+ "total": 448
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 516,
+ "total": 517
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669040,
+ "username": "skyfackr",
+ "fullName": "fackr jiang (skyfackr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669040/medium/c7c3c2f784c18d73a0bb6c9f53665f11.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 650
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 650
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 642,
+ "total": 650
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 1322,
+ "total": 1346
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 642,
+ "total": 650
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952215,
+ "username": "faky0n",
+ "fullName": "faky0n",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952215/medium/ad676f1d985c405e7a8648d9e1fff49f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14946101,
+ "username": "orioncafune_",
+ "fullName": "fede (orioncafune_)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946101/medium/a769eea4ec46c048adcddef91897b0e6.png",
+ "preTranslated": 0,
+ "totalCosts": 97
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 97
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 85,
+ "total": 97
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 87,
+ "total": 99
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 85,
+ "total": 97
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735538,
+ "username": "feidar",
+ "fullName": "feidar",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735538/medium/35ad0eec06bbf6d8889c8e0b7cc50c05.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 138,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 119,
+ "total": 123
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 138,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14904798,
+ "username": "HelloYSS",
+ "fullName": "fidel pereira (HelloYSS)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904798/medium/545f00d30e7c01e5210295f88ef43c9f.png",
+ "preTranslated": 0,
+ "totalCosts": 332
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 332
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 332,
+ "total": 332
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 313,
+ "total": 313
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 292,
+ "total": 292
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 332,
+ "total": 332
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14976781,
+ "username": "filippo22carlesso",
+ "fullName": "filippo carlesso (filippo22carlesso)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14976781/medium/b513f26feddb23654276b4aab11cdc7b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 185
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 185
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 185,
+ "total": 185
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 194,
+ "total": 194
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 185,
+ "total": 185
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15027271,
+ "username": "FDuchesne",
+ "fullName": "florentduchesne (FDuchesne)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027271/medium/b41c07fe5b0ff8c2c5b506eeee41e184.png",
+ "preTranslated": 0,
+ "totalCosts": 149
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 149
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14713748,
+ "username": "flyng12",
+ "fullName": "flyng12",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14713748/medium/c9ee0ecb2c8ecdb140bc6fdf8e7002b4.jpg",
+ "preTranslated": 0,
+ "totalCosts": 134
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 134
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 85,
+ "total": 134
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 82,
+ "total": 138
+ },
+ "translatedByMt": {
+ "tmMatch": 25,
+ "default": 23,
+ "total": 48
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 85,
+ "total": 134
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14063281,
+ "username": "franjoespejo",
+ "fullName": "franjoespejo",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14063281/medium/ca49be1a485757d76849be06da8432ce.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 841
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 841
+ },
+ "translated": {
+ "tmMatch": 516,
+ "default": 325,
+ "total": 841
+ },
+ "targetTranslated": {
+ "tmMatch": 551,
+ "default": 375,
+ "total": 926
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 114,
+ "total": 119
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 516,
+ "default": 325,
+ "total": 841
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14804530,
+ "username": "starcoinshine",
+ "fullName": "frank wang (starcoinshine)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804530/medium/fd9833454bd05fff797a7ee790477d72.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3847
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3847
+ },
+ "translated": {
+ "tmMatch": 110,
+ "default": 3737,
+ "total": 3847
+ },
+ "targetTranslated": {
+ "tmMatch": 221,
+ "default": 5921,
+ "total": 6142
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 110,
+ "default": 3737,
+ "total": 3847
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14395884,
+ "username": "Frodo821",
+ "fullName": "frodo821 (Frodo821)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395884/medium/be6488d24fd9f5ff7ac7d461e6cd6758.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2848
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2848
+ },
+ "translated": {
+ "tmMatch": 413,
+ "default": 2435,
+ "total": 2848
+ },
+ "targetTranslated": {
+ "tmMatch": 1074,
+ "default": 6421,
+ "total": 7495
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 33,
+ "total": 37
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 413,
+ "default": 2435,
+ "total": 2848
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14595752,
+ "username": "furkannnn400",
+ "fullName": "furkan öztürk (furkannnn400)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595752/medium/5b27fe969246c5c11131aaf3820a75f1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14035842,
+ "username": "bing.galaxy05",
+ "fullName": "galaxy bing (bing.galaxy05)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035842/medium/7746e9de99ca0c7bb61db920ed027dde.png",
+ "preTranslated": 0,
+ "totalCosts": 1217
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1217
+ },
+ "translated": {
+ "tmMatch": 41,
+ "default": 1176,
+ "total": 1217
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 548,
+ "total": 580
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 41,
+ "default": 1176,
+ "total": 1217
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14568334,
+ "username": "norhorn",
+ "fullName": "george kitsoukakis (norhorn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/eb41460b41717d2eb2d49964b63c7c0d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 41216
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41216
+ },
+ "translated": {
+ "tmMatch": 1774,
+ "default": 39442,
+ "total": 41216
+ },
+ "targetTranslated": {
+ "tmMatch": 1831,
+ "default": 40383,
+ "total": 42214
+ },
+ "translatedByMt": {
+ "tmMatch": 62,
+ "default": 2005,
+ "total": 2067
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1774,
+ "default": 39442,
+ "total": 41216
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13756347,
+ "username": "glazec",
+ "fullName": "glaze (glazec)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13756347/medium/461f182cdd50992bffca120a23e5c7eb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13991789,
+ "username": "hacktar",
+ "fullName": "hacktar",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13991789/medium/5376e976d7fc676eb5b92f45175e23ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2744
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2744
+ },
+ "translated": {
+ "tmMatch": 643,
+ "default": 2101,
+ "total": 2744
+ },
+ "targetTranslated": {
+ "tmMatch": 706,
+ "default": 2243,
+ "total": 2949
+ },
+ "translatedByMt": {
+ "tmMatch": 176,
+ "default": 546,
+ "total": 722
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 643,
+ "default": 2101,
+ "total": 2744
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14048904,
+ "username": "hakan.korkz",
+ "fullName": "hakan korkmaz (hakan.korkz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048904/medium/5f08caa613c1f97c14c0ad0c6f4fb8f6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751138,
+ "username": "cryptohakka",
+ "fullName": "hakka (cryptohakka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67c7ea6eb6029a188b2757333abdf96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2055
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2055
+ },
+ "translated": {
+ "tmMatch": 65,
+ "default": 1990,
+ "total": 2055
+ },
+ "targetTranslated": {
+ "tmMatch": 215,
+ "default": 4976,
+ "total": 5191
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 104,
+ "total": 109
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 65,
+ "default": 1990,
+ "total": 2055
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14650788,
+ "username": "dealwith",
+ "fullName": "hand some (dealwith)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650788/medium/6a56dbc2e5fbd0b589bcf21209042347.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14101293,
+ "username": "wisterioso",
+ "fullName": "haoyun (wisterioso)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4b5118faaffcbd991e92a4000b07ffc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 39,
+ "default": 18,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 33,
+ "total": 102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 39,
+ "default": 18,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14803342,
+ "username": "harikhan036",
+ "fullName": "hari Khan (harikhan036)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803342/medium/8f68d2b204c5760635466eea56c14112.png",
+ "preTranslated": 0,
+ "totalCosts": 119
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 148,
+ "total": 148
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 119,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14635690,
+ "username": "mollyroor",
+ "fullName": "hashim alhashimi (mollyroor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635690/medium/869fb615ccd82f3ec379228ccd6a859e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 66
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 63,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 62,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 63,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14983201,
+ "username": "longartdavid",
+ "fullName": "heber longart (longartdavid)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/050a2eebc902660c90b7272d1ee4390a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 579
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 579
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 521,
+ "total": 579
+ },
+ "targetTranslated": {
+ "tmMatch": 63,
+ "default": 543,
+ "total": 606
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 521,
+ "total": 579
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14820320,
+ "username": "hechao2258",
+ "fullName": "hechao2258",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820320/medium/fefdde3b7e09d989f89e8b56f247f6d0.png",
+ "preTranslated": 0,
+ "totalCosts": 750
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 750
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 749,
+ "total": 750
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 1241,
+ "total": 1245
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 749,
+ "total": 750
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896320,
+ "username": "humairarzmn",
+ "fullName": "humairarzmn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896320/medium/2090273c7d30341e9a0cdd0befd332a8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 145
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 145
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 136,
+ "total": 137
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14819462,
+ "username": "Finlynd",
+ "fullName": "iamlynvely (Finlynd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819462/medium/89edd710c81f392464c405551b3fe3d9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3162
+ },
+ "translated": {
+ "tmMatch": 85,
+ "default": 3077,
+ "total": 3162
+ },
+ "targetTranslated": {
+ "tmMatch": 61,
+ "default": 2256,
+ "total": 2317
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 4,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 85,
+ "default": 3077,
+ "total": 3162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780208,
+ "username": "marko.soldo17",
+ "fullName": "ice578 (marko.soldo17)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780208/medium/9ed60f78ebf70fd97eee70588062babb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 159,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 134,
+ "total": 171
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 159,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14117661,
+ "username": "amberaltyn",
+ "fullName": "igor altynpara (amberaltyn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14117661/medium/669e2585b1c7a9134c5e4fce4b1a7fbb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14573438,
+ "username": "icicek",
+ "fullName": "ilhan_cicek (icicek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573438/medium/c1f9bbf4366cec061f2f0a203c6e6af5.jpg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 7,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 7,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 7,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959389,
+ "username": "inlak16",
+ "fullName": "inlak16",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png",
+ "preTranslated": 0,
+ "totalCosts": 43119
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43119
+ },
+ "translated": {
+ "tmMatch": 3802,
+ "default": 39317,
+ "total": 43119
+ },
+ "targetTranslated": {
+ "tmMatch": 3715,
+ "default": 35006,
+ "total": 38721
+ },
+ "translatedByMt": {
+ "tmMatch": 118,
+ "default": 7419,
+ "total": 7537
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3802,
+ "default": 39317,
+ "total": 43119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14667410,
+ "username": "Den_ziiz",
+ "fullName": "ismanto (Den_ziiz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667410/medium/137da446e2f798bacb3382aa78ac1441.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837806,
+ "username": "yisosd",
+ "fullName": "iso Y (yisosd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837806/medium/a024dfd35587ad67921934a9d6c6410e.png",
+ "preTranslated": 0,
+ "totalCosts": 4810
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 484
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 469,
+ "total": 484
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 685,
+ "total": 705
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 469,
+ "total": 484
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605826",
- "username": "infinitedeathmaze",
- "fullName": "get free mazes (infinitedeathmaze)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605826/medium/ff2e2b6bad0c1dbc21efecfcfd4df16a.jpeg",
- "joined": "2021-02-02 09:19:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873434",
- "username": "jia591800152",
- "fullName": "贾志恒 (jia591800152)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873434/medium/310e59f9d3810401b3e6eca6968531b5.png",
- "joined": "2021-08-10 06:05:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606488",
- "username": "hassanehab2018",
- "fullName": "H.E Hassan (hassanehab2018)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606488/medium/7676712cf75b2b16ebf6530ecd18d661.jpg",
- "joined": "2021-02-02 17:39:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606596",
- "username": "shuaiwashadie",
- "fullName": "Zzzzzcx (shuaiwashadie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606596/medium/6b0438f1b742d8aa838a3e8dca5eb02f.jpeg",
- "joined": "2021-02-02 20:16:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607322",
- "username": "14king2014",
- "fullName": "14king2014",
- "avatarUrl": "https://www.gravatar.com/avatar/889e2857f6d48d8bd8ec7aa3e6beeb6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 08:20:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872906",
- "username": "xiaoxuan.yu1995",
- "fullName": "XIAOXUAN YU (xiaoxuan.yu1995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872906/medium/7fd933b2be02e0bca61ef6840cbef6e0.png",
- "joined": "2021-08-09 18:56:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608114",
- "username": "emmyz1",
- "fullName": "emmyz1",
- "avatarUrl": "https://www.gravatar.com/avatar/65f38d02b3c685c63041cb683df3e038?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 19:32:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608138",
- "username": "haova174",
- "fullName": "Катя Заплатина (haova174)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14608138/medium/2db0f129dcecbb03a51b775afa39e011.jpg",
- "joined": "2021-02-03 20:00:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871782",
- "username": "maxbauten",
- "fullName": "maxbauten",
- "avatarUrl": "https://www.gravatar.com/avatar/1e56273adfac5888e3fe8d886431e67a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-09 02:44:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629200",
- "username": "rsbyar01",
- "fullName": "rsbyar01",
- "avatarUrl": "https://www.gravatar.com/avatar/9a60bc8a5a2863b093206bb2209a1571?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 18:45:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630042",
- "username": "ZPS",
- "fullName": "zech1999 (ZPS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630042/medium/f6035990921b9ccc28266db5f950cbca.png",
- "joined": "2021-02-18 09:25:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788004",
- "username": "pokupki.ks",
- "fullName": "pokupki.ks",
- "avatarUrl": "https://www.gravatar.com/avatar/f3ff2a967dbff6bbaaa2516ffa7757a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 03:05:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654546",
- "username": "fadisaleh99",
- "fullName": "Fadi Saleh (fadisaleh99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654546/medium/fac4ee1c5eb91c134cb9210ed113ef00.jpeg",
- "joined": "2021-03-05 09:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653426",
- "username": "maxxlman",
- "fullName": "maxxlman",
- "avatarUrl": "https://www.gravatar.com/avatar/a12f2beca90e3e5fde302c95fc6e0d24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 14:51:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653430",
- "username": "KIRAZLI",
- "fullName": "KIRAZLI",
- "avatarUrl": "https://www.gravatar.com/avatar/59fb9541221fb3a174972d638c9ea8f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 14:53:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804170",
- "username": "pnda0132",
- "fullName": "pnda0132",
- "avatarUrl": "https://www.gravatar.com/avatar/388f5c4bf43f79684dc47d0abb44a718?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 17:02:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803836",
- "username": "chhsherpa",
- "fullName": "CHONGBA SHERPA (chhsherpa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803836/medium/11076ad6dcb6a82c7c4814053a5362a3.jpeg",
- "joined": "2021-06-17 12:38:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653494",
- "username": "martn5533",
- "fullName": "Mohamed Alsharef (martn5533)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653494/medium/a4b91907e4741e845327324ca63a87cf.jpeg",
- "joined": "2021-03-04 16:07:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653608",
- "username": "ahmed_mimo110",
- "fullName": "Ahmed M. Mansour (ahmed_mimo110)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653608/medium/d7a5431d7213ffeb6f120c7558e757f9.jpeg",
- "joined": "2021-03-04 17:58:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803150",
- "username": "jp_aulet",
- "fullName": "J.P. Aulet (jp_aulet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803150/medium/b3e0e270c8b5b72787b8bc760872e567.png",
- "joined": "2021-09-23 06:33:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653674",
- "username": "Ahmedtarek206",
- "fullName": "Ahmedtarek206",
- "avatarUrl": "https://www.gravatar.com/avatar/65b61063401eb8d6624a8f24cf47602f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 19:09:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654246",
- "username": "BellosMaki",
- "fullName": "BellosMaki",
- "avatarUrl": "https://www.gravatar.com/avatar/4da5ed7e28068d8a728b035b8e303425?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 05:17:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802794",
- "username": "Lanlanluu88",
- "fullName": "Lanlanluu88",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802794/medium/075e46cf87966cd0e74cab0fee2b6a39.png",
- "joined": "2021-06-17 01:20:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652930",
- "username": "YurKing",
- "fullName": "Yuri Yakushev (YurKing)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652930/medium/050c5caf1bc56d8d0e9ea2e2150cbdb8.jpeg",
- "joined": "2021-03-04 08:56:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654818",
- "username": "kiiyuku",
- "fullName": "kiiyuku",
- "avatarUrl": "https://www.gravatar.com/avatar/d7725d20a8a8981d5c524a79642dc260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 13:03:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655088",
- "username": "nenadj",
- "fullName": "Nevena Djaja (nenadj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655088/medium/d9d6a8ade727c2282bda837044540d67.jpg",
- "joined": "2021-03-09 13:21:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801560",
- "username": "jeb-steve",
- "fullName": "jeb-steve",
- "avatarUrl": "https://www.gravatar.com/avatar/24a5366768a8c30fd91a8569549c08e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 04:29:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801120",
- "username": "yousefjoo363.me",
- "fullName": "Mohamed Elsayed (yousefjoo363.me)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801120/medium/a0b8716af339d4cf3f31537f266a771c.jpeg",
- "joined": "2021-06-15 21:01:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800734",
- "username": "xiao101599",
- "fullName": "xiao101599",
- "avatarUrl": "https://www.gravatar.com/avatar/e3fc77c6e9c35ef4097e994502ead8ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 13:08:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655250",
- "username": "yunkeru18",
- "fullName": "小坂 祐介 (yunkeru18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655250/medium/580cad4a38be1ce4c81c6733d65bfa2f.jpeg",
- "joined": "2021-03-05 20:29:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800546",
- "username": "durchunddurch",
- "fullName": "durchunddurch",
- "avatarUrl": "https://www.gravatar.com/avatar/e31bdda13e37cbf4b4bd18c88541fdc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 10:48:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656248",
- "username": "asparagaskalem",
- "fullName": "asparagaskalem",
- "avatarUrl": "https://www.gravatar.com/avatar/4ec385169366c0d43af02790b8db83b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 14:19:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656306",
- "username": "ceibo",
- "fullName": "ceibo",
- "avatarUrl": "https://www.gravatar.com/avatar/20bcd6b01b0d1e432b7443b991d19794?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 15:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653388",
- "username": "Wesley_Lauton",
- "fullName": "Wesley_Lauton",
- "avatarUrl": "https://www.gravatar.com/avatar/1481c3a217e1986910e3e74a3043542f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 14:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652714",
- "username": "ai59",
- "fullName": "ai59",
- "avatarUrl": "https://www.gravatar.com/avatar/84e11d03a2bd4a97d67ba26a96bafd37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 06:04:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799334",
- "username": "m037871",
- "fullName": "Huan Xian WU (m037871)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799334/medium/a03fb1630d23f9aec41d2bca4cfb9422.jpeg",
- "joined": "2021-06-14 14:10:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809732",
- "username": "bao1994",
- "fullName": "bao1994",
- "avatarUrl": "https://www.gravatar.com/avatar/fda8b0b99a9b71f8804bcfc6d94b59ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 10:51:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811142",
- "username": "flachavantes",
- "fullName": "Marcio B. Coelho (flachavantes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811142/medium/847ce51d6ee66f3927157f038db83603.png",
- "joined": "2021-06-22 09:14:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650522",
- "username": "geoffleng96",
- "fullName": "Geoff Leng (geoffleng96)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650522/medium/45a488abcfd77f524a993ac6dde12fd9.jpeg",
- "joined": "2021-08-20 10:59:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650640",
- "username": "ramsemune",
- "fullName": "ramunas (ramsemune)",
- "avatarUrl": "https://www.gravatar.com/avatar/c95627f67ca6d40d1edb0bfa67b40ee6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 22:39:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810158",
- "username": "victora0",
- "fullName": "Víctor Vera Gómez (victora0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810158/medium/eca56cd9269d07b76a32626622599257.png",
- "joined": "2021-06-21 16:32:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651490",
- "username": "Kremismaks",
- "fullName": "Kremismaks",
- "avatarUrl": "https://www.gravatar.com/avatar/f08e23086f35b3f6955a64f1f67f69e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 09:46:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809970",
- "username": "Corwintines",
- "fullName": "Corwintines",
- "avatarUrl": "https://www.gravatar.com/avatar/5d89ab750b46aca0640461f7486eab13?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 13:41:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809908",
- "username": "luvil2906",
- "fullName": "Lucky Lukman (luvil2906)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809908/medium/26c58911597e909385606e63bdd815d8.png",
- "joined": "2021-06-21 12:53:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651558",
- "username": "ETHERIUMGUY",
- "fullName": "ETHERIUMGUY",
- "avatarUrl": "https://www.gravatar.com/avatar/de9b5c3b2013a50fe81fb9c53a7c5af6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 10:36:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652064",
- "username": "rolandsheroziya",
- "fullName": "Roland Sheroziya (rolandsheroziya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652064/medium/942d6f110f3754225fc44434ac2d7c73.png",
- "joined": "2021-03-03 17:35:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809636",
- "username": "ferminbote",
- "fullName": "Abelardo Martínez (ferminbote)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809636/medium/0f4e4659fa483a701cd8961128ffb63e.png",
- "joined": "2021-06-21 09:56:18"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4326
+ },
+ "translated": {
+ "tmMatch": 137,
+ "default": 4189,
+ "total": 4326
+ },
+ "targetTranslated": {
+ "tmMatch": 253,
+ "default": 6456,
+ "total": 6709
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 137,
+ "default": 4189,
+ "total": 4326
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12375993,
+ "username": "nobilistefano",
+ "fullName": "istefano92 (nobilistefano)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c7437a7fcac9b4202488c1eb882f4f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 30,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725188,
+ "username": "bagira2512",
+ "fullName": "ivanna panasuk (bagira2512)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725188/medium/8de0ac373b7fbd055402a38215b9e0a6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 73
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 73
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14541604,
+ "username": "ivomarinovic2",
+ "fullName": "ivomarinovic2",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14541604/medium/00626370d1fd9409081e94f7cca08433.jpg",
+ "preTranslated": 0,
+ "totalCosts": 630
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 630
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 614,
+ "total": 630
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 590,
+ "total": 605
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 614,
+ "total": 630
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643054,
+ "username": "izayl",
+ "fullName": "izayl",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643054/medium/d6dd01be4478ea8a2c0eb30797ab34cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3842
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3842
+ },
+ "translated": {
+ "tmMatch": 194,
+ "default": 3648,
+ "total": 3842
+ },
+ "targetTranslated": {
+ "tmMatch": 291,
+ "default": 3951,
+ "total": 4242
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 390,
+ "total": 400
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 194,
+ "default": 3648,
+ "total": 3842
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12523167,
+ "username": "jackson21182",
+ "fullName": "jackson shi (jackson21182)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3efef6f33bab3a76c44bb09e068a3931?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 341
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 341
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 340,
+ "total": 341
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 541,
+ "total": 544
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 340,
+ "total": 341
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14705796,
+ "username": "seladigitaltrading",
+ "fullName": "jakob medina (seladigitaltrading)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705796/medium/45f9b46fda15609f204ff40ccb176998.jpg",
+ "preTranslated": 0,
+ "totalCosts": 588
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 588
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 556,
+ "total": 588
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 615,
+ "total": 649
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 381,
+ "total": 381
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 556,
+ "total": 588
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14652060,
+ "username": "JazminVidal",
+ "fullName": "jaz.min (JazminVidal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652060/medium/a4f3c9974a51710ea11e87a24ac2df27.png",
+ "preTranslated": 0,
+ "totalCosts": 101
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 101
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 100,
+ "total": 101
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 77,
+ "total": 78
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 100,
+ "total": 101
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957177,
+ "username": "joeurassa",
+ "fullName": "joeurassa",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957177/medium/a88c293bcc8b749456d71edee74329f5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15181
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15181
+ },
+ "translated": {
+ "tmMatch": 546,
+ "default": 14635,
+ "total": 15181
+ },
+ "targetTranslated": {
+ "tmMatch": 580,
+ "default": 14329,
+ "total": 14909
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 6,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 546,
+ "default": 14635,
+ "total": 15181
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14821880,
+ "username": "jonathanandrade10",
+ "fullName": "jonathanandrade10",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821880/medium/59c6c840e75ec03af8b88b5005744137.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 489
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 489
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 459,
+ "total": 489
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 470,
+ "total": 500
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 135,
+ "total": 138
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 459,
+ "total": 489
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14358488,
+ "username": "jpaulet",
+ "fullName": "jp_aulet (jpaulet)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14358488/medium/f01f4d5062ccf8b6c32bcdc58e58f950.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8723
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8723
+ },
+ "translated": {
+ "tmMatch": 570,
+ "default": 8153,
+ "total": 8723
+ },
+ "targetTranslated": {
+ "tmMatch": 623,
+ "default": 9171,
+ "total": 9794
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 570,
+ "default": 8153,
+ "total": 8723
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14551466,
+ "username": "jucsaba",
+ "fullName": "jucsaba",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14551466/medium/59a3ef15e6bff31db5ec092837673271.png",
+ "preTranslated": 0,
+ "totalCosts": 885
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 885
+ },
+ "translated": {
+ "tmMatch": 59,
+ "default": 826,
+ "total": 885
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 602,
+ "total": 644
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 59,
+ "default": 826,
+ "total": 885
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14948719,
+ "username": "zhao16813888",
+ "fullName": "jun zhao (zhao16813888)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948719/medium/65b36e24dbfcf19c1bc04ba16d6f4151.png",
+ "preTranslated": 0,
+ "totalCosts": 688
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 688
+ },
+ "translated": {
+ "tmMatch": 105,
+ "default": 583,
+ "total": 688
+ },
+ "targetTranslated": {
+ "tmMatch": 180,
+ "default": 934,
+ "total": 1114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 105,
+ "default": 583,
+ "total": 688
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14617412,
+ "username": "basile.succeed",
+ "fullName": "justreal succeed (basile.succeed)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617412/medium/edd804c817d71f33ed7773ef5e254f7c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 14,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14599938,
+ "username": "wjy7551376",
+ "fullName": "jyfocus (wjy7551376)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599938/medium/7d58c031632657c5866ea32c4477e61b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2199
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 2167,
+ "total": 2199
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 3371,
+ "total": 3438
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 172,
+ "total": 172
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 2167,
+ "total": 2199
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751424,
+ "username": "klortank",
+ "fullName": "kLoR TaNk (klortank)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751424/medium/ac0a5029aa35dd84798011ff5e161ce4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 344
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 344
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 344,
+ "total": 344
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 304,
+ "total": 304
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 344,
+ "total": 344
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959445,
+ "username": "kalloc",
+ "fullName": "kalloc",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959445/medium/e238337a29b4a7653ec4998a15677820.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 102
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 102
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 100,
+ "total": 102
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 98,
+ "total": 100
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 100,
+ "total": 102
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14816094,
+ "username": "karislam0322",
+ "fullName": "karis lam (karislam0322)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816094/medium/6a5e736d81288d51f223a0f107d09d8a.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698516,
+ "username": "kbbtg_Alex",
+ "fullName": "kbbtg Alex (kbbtg_Alex)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698516/medium/8aeb5abf9171177c91fc15c42d4e353d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 161,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 88,
+ "default": 273,
+ "total": 361
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 161,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14760114,
+ "username": "keinstn",
+ "fullName": "keinstn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760114/medium/5b3fa243c923f93b7a7c7560a00b69cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1648
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1648
+ },
+ "translated": {
+ "tmMatch": 272,
+ "default": 1376,
+ "total": 1648
+ },
+ "targetTranslated": {
+ "tmMatch": 667,
+ "default": 2667,
+ "total": 3334
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 149,
+ "total": 153
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 272,
+ "default": 1376,
+ "total": 1648
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14888938,
+ "username": "kenyturpohuamani",
+ "fullName": "keny turpo huamani (kenyturpohuamani)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888938/medium/1ea749d5846031956e5fffe970e3ecb0.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15001441,
+ "username": "supercode",
+ "fullName": "kevin lee (supercode)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001441/medium/f08615f09b6d388db02efbc751ca3f77.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 43,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 43,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 43,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957901,
+ "username": "LiwenGou",
+ "fullName": "kevingou (LiwenGou)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957901/medium/acd97ba37a23af54ecfa9e470fcb1f0d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 667
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 667
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 640,
+ "total": 667
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 1079,
+ "total": 1123
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 37,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 640,
+ "total": 667
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14876232,
+ "username": "takbass7",
+ "fullName": "kittichart Seneewong na ayudhaya (takbass7)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876232/medium/e51cba47d7f770c4fee549426ed45e8e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748362,
+ "username": "klger",
+ "fullName": "klüger (klger)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748362/medium/2d098bcd62dd7fcec689be982e10afa0.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 1,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 1,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 1,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545802,
+ "username": "lacontra",
+ "fullName": "lacontra",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545802/medium/b39638ebf5c2d8620189f776469687b5.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 0,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 0,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 0,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14546284,
+ "username": "ladidan",
+ "fullName": "ladidan",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546284/medium/3fed287323fd3ced8bb2e80624f9bc6f.png",
+ "preTranslated": 0,
+ "totalCosts": 2066
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2066
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 2032,
+ "total": 2066
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 2215,
+ "total": 2251
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 2032,
+ "total": 2066
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024805,
+ "username": "laneser.kuo",
+ "fullName": "laneser kuo (laneser.kuo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024805/medium/397e610d238f3db6882905462dcecac0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 36,
+ "default": 175,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 342,
+ "total": 391
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 36,
+ "default": 175,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14666804,
+ "username": "leipayne168",
+ "fullName": "lei payne (leipayne168)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666804/medium/df90c12157632350cb2bef5a418175b3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14787358,
+ "username": "leideribeiro9150",
+ "fullName": "leide mariana santos ribeiro (leideribeiro9150)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787358/medium/23937ae5016b2a370875018580c2905b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2938
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2938
+ },
+ "translated": {
+ "tmMatch": 53,
+ "default": 2885,
+ "total": 2938
+ },
+ "targetTranslated": {
+ "tmMatch": 55,
+ "default": 2906,
+ "total": 2961
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 1006,
+ "total": 1012
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 53,
+ "default": 2885,
+ "total": 2938
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14862718,
+ "username": "anh_khoa",
+ "fullName": "lilkwa (anh_khoa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862718/medium/17d111d400d4ab22af931aec7e495066.png",
+ "preTranslated": 0,
+ "totalCosts": 36
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 36
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 30,
+ "total": 36
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 41,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 30,
+ "total": 36
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14792200,
+ "username": "liuxiaotong15",
+ "fullName": "liuxiaotong (liuxiaotong15)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792200/medium/651095028597144eac73720a0c320b3d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2497
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2497
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 2402,
+ "total": 2497
+ },
+ "targetTranslated": {
+ "tmMatch": 125,
+ "default": 3287,
+ "total": 3412
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 383,
+ "total": 383
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 2402,
+ "total": 2497
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991277,
+ "username": "mafezinha",
+ "fullName": "mafê (mafezinha)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991277/medium/537793d445141505c201bf6f59daff90.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 259
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 259
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 232,
+ "total": 259
+ },
+ "targetTranslated": {
+ "tmMatch": 31,
+ "default": 248,
+ "total": 279
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 232,
+ "total": 259
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14931651,
+ "username": "sinsinpurin",
+ "fullName": "masaki obayashi (sinsinpurin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931651/medium/3e26483770249bd37034cfefe44469f0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 305
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 305
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 304,
+ "total": 305
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 833,
+ "total": 834
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 304,
+ "total": 305
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14582168,
+ "username": "mattia-hash",
+ "fullName": "mattia-hash",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582168/medium/3a4413893bf712f7a0939735b6f85298.png",
+ "preTranslated": 0,
+ "totalCosts": 198
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 198
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 195,
+ "total": 198
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 210,
+ "total": 213
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 130,
+ "total": 130
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 195,
+ "total": 198
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14723852,
+ "username": "Jesucripto",
+ "fullName": "mcjotaemedj (Jesucripto)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723852/medium/f84506bd3a8ceab96b024dd73d8d7c55.jpg",
+ "preTranslated": 0,
+ "totalCosts": 66
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 63,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 56,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 63,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14595814,
+ "username": "mhj3056",
+ "fullName": "mh Junior (mhj3056)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595814/medium/a47d756cc7c13f42ac7d8632b70dc7b9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751254,
+ "username": "marmolcaballerom",
+ "fullName": "miguell 248 (marmolcaballerom)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751254/medium/35f1a9d98d9b37a9d9bbc83f378e0ae7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14791328,
+ "username": "milindsoorya",
+ "fullName": "milind soorya (milindsoorya)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791328/medium/0ebf10e4cf80866063dff115afe00116.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 58,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 81,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 58,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14692406,
+ "username": "evanxuw",
+ "fullName": "miumiusf (evanxuw)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14692406/medium/cd75843e806da42ffede4f72813bcd9e.JPG",
+ "preTranslated": 0,
+ "totalCosts": 873
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 873
+ },
+ "translated": {
+ "tmMatch": 132,
+ "default": 741,
+ "total": 873
+ },
+ "targetTranslated": {
+ "tmMatch": 191,
+ "default": 1070,
+ "total": 1261
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 432,
+ "total": 432
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 132,
+ "default": 741,
+ "total": 873
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545698,
+ "username": "androidy",
+ "fullName": "mohammed al-abri (androidy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545698/medium/4144cf90366f7ae4eaf551b0ad22a0b2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 565
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 565
+ },
+ "translated": {
+ "tmMatch": 64,
+ "default": 501,
+ "total": 565
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 456,
+ "total": 523
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 122,
+ "total": 126
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 64,
+ "default": 501,
+ "total": 565
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14764350,
+ "username": "mosfetti",
+ "fullName": "mosfetti",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764350/medium/d84a713e1a14175198ac72212f6b3d05.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13995555,
+ "username": "muhadire2029",
+ "fullName": "muhamed abdo (muhadire2029)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13995555/medium/938c1298bb55094d63701f6e0b2cde67.jpg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12544745,
+ "username": "muthuveerappan",
+ "fullName": "muthuveerappan (muthuveerappan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4f70279c7db5abd89dd9adb4c924cc38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 102,
+ "total": 102
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14868732,
+ "username": "mykola.incognito",
+ "fullName": "mykola incognito (mykola.incognito)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868732/medium/f62443bab75b8e6f6e607a4cf3df9a72.png",
+ "preTranslated": 0,
+ "totalCosts": 653
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 653
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 634,
+ "total": 653
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 570,
+ "total": 589
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 55,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 634,
+ "total": 653
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15019903,
+ "username": "naaa187",
+ "fullName": "naaa187",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019903/medium/eb71b3cb69bad0676610d45b7c805b46.png",
+ "preTranslated": 0,
+ "totalCosts": 880
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 880
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 822,
+ "total": 880
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 589,
+ "total": 639
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 822,
+ "total": 880
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14627782,
+ "username": "nancyjlau",
+ "fullName": "nancyjlau",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627782/medium/d01b02b82ab8803dcab92213bff03868.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14985297,
+ "username": "nicoin39",
+ "fullName": "nicoin39",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985297/medium/a162dafaeba29430c0df4a824a66fc2f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 2,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 165,
+ "default": 8,
+ "total": 173
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 2,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14854804,
+ "username": "nikbiondo",
+ "fullName": "nikbiondo",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854804/medium/e3ad6aa0acf22cbca8794a5fc69f95f9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 52,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 56,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 52,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14757788,
+ "username": "zeririzakaria10",
+ "fullName": "ninja games (zeririzakaria10)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757788/medium/58c27779ad2481afce1af14d09bed24f.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 58,
+ "default": 46,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14360632,
+ "username": "nongjize",
+ "fullName": "nongjize",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14360632/medium/419cfc459e1d68e1303b1e7b8554c2f5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 9,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 24,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 9,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14893876,
+ "username": "nsafari",
+ "fullName": "nsafari",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893876/medium/2da09d6d609c8e44fe956ce842822c52.png",
+ "preTranslated": 0,
+ "totalCosts": 76
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 76
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 99,
+ "total": 99
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14313472,
+ "username": "ntotao",
+ "fullName": "ntotao",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14313472/medium/168d8b10fa9a4eb88fa80f88a355138c.png",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 91,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 64,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 91,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830514,
+ "username": "ny030897",
+ "fullName": "ny030897",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830514/medium/29d88484dbe97732ba437fd01889a680.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14497686,
+ "username": "pisuthd",
+ "fullName": "ohmz (pisuthd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14497686/medium/ba1721d461a19e33745ecafefde6eaad.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 10,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 10,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14851016,
+ "username": "0633233490a",
+ "fullName": "olena godhzh (0633233490a)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851016/medium/3d6589dac72d5fe109d7fda192fa93d8.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021219,
+ "username": "olexandr13",
+ "fullName": "olexandr13",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021219/medium/ce5d674ca767f1212b184bc3878a368d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14823260,
+ "username": "omahs",
+ "fullName": "omahs",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1092
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1092
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 1046,
+ "total": 1092
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 996,
+ "total": 1047
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 562,
+ "total": 565
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 1046,
+ "total": 1092
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14684672,
+ "username": "maksatsoltanmyradow76",
+ "fullName": "onbir Man (maksatsoltanmyradow76)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684672/medium/617edb3bef1d7d165525185f33c3df54.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14800260,
+ "username": "onhorou",
+ "fullName": "onhorou",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800260/medium/5e6c1ca22c8427777ebb9cb232779238.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13714631,
+ "username": "oonid",
+ "fullName": "oon arfiandwi (oonid)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13714631/medium/613b365f3428c6f23b3ea3cf1d7549ec.jpg",
+ "preTranslated": 0,
+ "totalCosts": 770
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 770
+ },
+ "translated": {
+ "tmMatch": 103,
+ "default": 667,
+ "total": 770
+ },
+ "targetTranslated": {
+ "tmMatch": 105,
+ "default": 608,
+ "total": 713
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 103,
+ "default": 667,
+ "total": 770
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14662728,
+ "username": "opencar2018",
+ "fullName": "open mind (opencar2018)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14662728/medium/7d894445fa53234eea8bd35962bfebea.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14640966,
+ "username": "oranz21",
+ "fullName": "oranz21",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640966/medium/f45e38ea4908515d8dbd5c71e51d85b0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 119
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 112,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 128,
+ "total": 139
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 112,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845082,
+ "username": "overeasyy",
+ "fullName": "overeasyy",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845082/medium/c3f88881536bddc4173514c2d6c6103a.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 7,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 10,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14704668,
+ "username": "phrobinet",
+ "fullName": "phrobinet",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704668/medium/f456203d0a45823ded3c364a95f57f3e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1869
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1869
+ },
+ "translated": {
+ "tmMatch": 59,
+ "default": 1810,
+ "total": 1869
+ },
+ "targetTranslated": {
+ "tmMatch": 66,
+ "default": 1819,
+ "total": 1885
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 59,
+ "default": 1810,
+ "total": 1869
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14810086,
+ "username": "pinapalmieri",
+ "fullName": "pina palmieri (pinapalmieri)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810086/medium/42fdb28f8d445e4e2774845014a7fffa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14263850,
+ "username": "pswu11",
+ "fullName": "pswu11",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263850/medium/05b1fe1f2abb5fd9c1b072e25a152aa1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1545
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1545
+ },
+ "translated": {
+ "tmMatch": 156,
+ "default": 1389,
+ "total": 1545
+ },
+ "targetTranslated": {
+ "tmMatch": 241,
+ "default": 2243,
+ "total": 2484
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 156,
+ "default": 1389,
+ "total": 1545
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12646084,
+ "username": "punjabiangem",
+ "fullName": "punjabiangem",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/00b6bbe15939f15a820ed0fadf8bf834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 442
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 442
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 419,
+ "total": 442
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 513,
+ "total": 547
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 419,
+ "total": 442
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14740910,
+ "username": "rahmadmaulidan",
+ "fullName": "rahmad maulidan (rahmadmaulidan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d343e863d0ada74fa776c135338a660?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 65
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14086443,
+ "username": "rak810",
+ "fullName": "rak810",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14086443/medium/39269b4f7301c0e4b2ddb56fa91b7b24.png",
+ "preTranslated": 0,
+ "totalCosts": 1282
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1281
+ },
+ "translated": {
+ "tmMatch": 709,
+ "default": 572,
+ "total": 1281
+ },
+ "targetTranslated": {
+ "tmMatch": 1376,
+ "default": 1138,
+ "total": 2514
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 709,
+ "default": 572,
+ "total": 1281
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652428",
- "username": "cardullo",
- "fullName": "cardullo",
- "avatarUrl": "https://www.gravatar.com/avatar/f10f11f9de5a35079225c72bb1941a9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 02:47:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652314",
- "username": "SurenM",
- "fullName": "SurenM",
- "avatarUrl": "https://www.gravatar.com/avatar/3bc2e40566d207043d0748528213cc2d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 00:18:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808910",
- "username": "hiroyuki-tanaka",
- "fullName": "hiroyuki-tanaka",
- "avatarUrl": "https://www.gravatar.com/avatar/1854870b7149174e0f7a873c5fea7d33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 23:25:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808906",
- "username": "jokerjoker",
- "fullName": "jokerjoker",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8d31857171b3c5e96e8e46974b7672?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 23:17:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808338",
- "username": "MalekHaddad",
- "fullName": "عبد الملك الحداد (MalekHaddad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808338/medium/ce2e0b8ab319c37c7971ab891c33816b.jpeg",
- "joined": "2021-06-20 12:00:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807310",
- "username": "fercgomes",
- "fullName": "fercgomes",
- "avatarUrl": "https://www.gravatar.com/avatar/8f84a7745e9af28cbc53a948b8a10f62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 16:56:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807238",
- "username": "rom1919",
- "fullName": "Romualdo Zayas-Lagunas (rom1919)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14807238/medium/4e9d7e22b8ba45851bf0d10bf4bb2f68.jpeg",
- "joined": "2021-06-19 15:57:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807030",
- "username": "Anitavicen9",
- "fullName": "Anitavicen9",
- "avatarUrl": "https://www.gravatar.com/avatar/83ab280eeb42d39e02108ee53717709b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 12:54:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14806108",
- "username": "arquitecto.pt",
- "fullName": "arquitectopt (arquitecto.pt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14806108/medium/4d5116534778fe93ecdb04eab5b4427b.jpg",
- "joined": "2021-06-18 22:33:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14806100",
- "username": "lin-123",
- "fullName": "Kakaka Hou (lin-123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14806100/medium/1534fdcb8c32fc98a646e35e9302ac70.jpeg",
- "joined": "2021-06-18 22:24:57"
- },
- "languages": [
+ "language": {
+ "id": "eo",
+ "name": "Esperanto",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966129,
+ "username": "ratthakorn99",
+ "fullName": "ratthakorn (ratthakorn99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966129/medium/9c1a435a52439cb6f587dae5ec765144.jpg",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14856762,
+ "username": "richardostrmn",
+ "fullName": "richardostrmn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14856762/medium/8ba94b1cc2b169f34e314c11a0e7880b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 552
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 552
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 552,
+ "total": 552
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 544,
+ "total": 544
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 552,
+ "total": 552
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026429,
+ "username": "robin.thonhaugen11",
+ "fullName": "robin thonhaugen (robin.thonhaugen11)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026429/medium/a8585ab9f4c29cee70147de56d7e73b0.png",
+ "preTranslated": 0,
+ "totalCosts": 36
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 36
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15037199,
+ "username": "rshiyamdg",
+ "fullName": "rshi mo (rshiyamdg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15037199/medium/920c5104d94ace251cae3c71e0984c04.png",
+ "preTranslated": 0,
+ "totalCosts": 53
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 53
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14609342,
+ "username": "rubt3",
+ "fullName": "ruben Quintero (rubt3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609342/medium/32022ac26e5bc9a957fee2bc5015045e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14726116,
+ "username": "salih.keyf",
+ "fullName": "salih keyf (salih.keyf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726116/medium/276f7773be59d0dd0ea1252e816006ca.jpg",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14173249,
+ "username": "samtimes",
+ "fullName": "samtimes news (samtimes)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14173249/medium/813bbf70b91633dca45bbfc0332490b8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 151
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 151
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 148,
+ "total": 151
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 208,
+ "total": 212
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 148,
+ "total": 151
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780684,
+ "username": "ssfuentes.99",
+ "fullName": "sebastian fuentes (ssfuentes.99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780684/medium/043f791a09160411432cc5c7146f6aaa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14612900,
+ "username": "seunggin.yu",
+ "fullName": "seungjin yu (seunggin.yu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612900/medium/7fc99f80a3da9fd033cb6eecd02a3e62.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 114,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 70,
+ "total": 71
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 114,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14359374,
+ "username": "shahzad.shahid02",
+ "fullName": "shahzad shahid (shahzad.shahid02)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14359374/medium/83a1af05764dfe82667ce51d9cdd8d5a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-IN",
+ "name": "Urdu (India)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14047362,
+ "username": "shailesh.nift",
+ "fullName": "shailesh kumar (shailesh.nift)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14047362/medium/188b22e96fabe3e3ec66c9b930f49e7c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14058791,
+ "username": "shameed",
+ "fullName": "shameed",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058791/medium/a52fd50f68c1f10bc8e139c33fddef76.png",
+ "preTranslated": 0,
+ "totalCosts": 166
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 166
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 138,
+ "total": 166
+ },
+ "targetTranslated": {
+ "tmMatch": 58,
+ "default": 272,
+ "total": 330
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 138,
+ "total": 166
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14901400,
+ "username": "shimanto2",
+ "fullName": "shimanto (shimanto2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901400/medium/05a5f76d6f25c24b20989cc2a8481a6f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 56,
+ "total": 63
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 17,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12582943,
+ "username": "sorumfactory",
+ "fullName": "shlv2001 (sorumfactory)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/b4ac638295a8e37fc67b5b5a5bc3df2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 3
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805844",
- "username": "07969951000796995100",
- "fullName": "Afeef Alomar (07969951000796995100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805844/medium/0d01e031f7ff07296dc63980ae219bda.jpeg",
- "joined": "2021-06-18 16:11:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656634",
- "username": "r.koshevets",
- "fullName": "Rita Koshevets (r.koshevets)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656634/medium/659d4f2ac9acdee55e0a30b2e99d576b.jpeg",
- "joined": "2021-03-06 22:49:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799150",
- "username": "bilalbayram",
- "fullName": "bilalbayram",
- "avatarUrl": "https://www.gravatar.com/avatar/238bf199085eed31386992556fc4a3da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-14 11:19:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650084",
- "username": "daniela23-",
- "fullName": "daniela23-",
- "avatarUrl": "https://www.gravatar.com/avatar/bb7c733c041998ea6acb5517e2b192af?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 13:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790426",
- "username": "skankhunt66",
- "fullName": "dlx (skankhunt66)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790426/medium/3a251c06cee98a01dc50c5ad612df818.jpeg",
- "joined": "2021-08-20 19:55:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792352",
- "username": "Naoku",
- "fullName": "Yunus Emre Yıl (Naoku)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792352/medium/d30f4fedd7a4b5d565918a164bc7b044.png",
- "joined": "2021-06-09 06:42:12"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792324",
- "username": "aghamojtaba1349",
- "fullName": "mojtaba saadat (aghamojtaba1349)",
- "avatarUrl": "https://www.gravatar.com/avatar/dbed5862e02fded0c295b09800adc625?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-09 06:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657690",
- "username": "Eslamteto",
- "fullName": "Eslam Teto (Eslamteto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657690/medium/c79b7b4d51886db2620827ed6f747c2c.jpeg",
- "joined": "2021-03-07 16:27:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791926",
- "username": "dwroy",
- "fullName": "dwroy",
- "avatarUrl": "https://www.gravatar.com/avatar/cc587a55e19c901560b508395d50465e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 23:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657968",
- "username": "Ntdnghiax",
- "fullName": "Ntdnghiax",
- "avatarUrl": "https://www.gravatar.com/avatar/5c36763db8320cdab9c18f5c8000d2b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 23:05:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658486",
- "username": "svi728",
- "fullName": "svi728",
- "avatarUrl": "https://www.gravatar.com/avatar/6ccd74eea921748108ee2d87e93a8583?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 06:58:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791672",
- "username": "Luchito",
- "fullName": "Luchito",
- "avatarUrl": "https://www.gravatar.com/avatar/946202481cc6d9ecf0831139b7d01a80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 17:14:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658606",
- "username": "george.trotter",
- "fullName": "George Trotter (george.trotter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658606/medium/6170403fee6a194fd6cd3879c0b021ad.jpeg",
- "joined": "2021-03-08 08:49:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659132",
- "username": "nielapereira",
- "fullName": "Daniela Pereira (nielapereira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659132/medium/2e79e528499ce8a6ff13fe2f0a952299.jpeg",
- "joined": "2021-03-08 15:39:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790254",
- "username": "GreenbowAlabama",
- "fullName": "Matheus Borges (GreenbowAlabama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790254/medium/81f5c0174896beb123d3e740d1a28c5c.jpeg",
- "joined": "2021-06-07 19:04:07"
- },
- "languages": [
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657572",
- "username": "ahmed.sami.anous",
- "fullName": "aMED aNOus (ahmed.sami.anous)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657572/medium/857cd2c1d80d0ec319af581b735e168e.jpeg",
- "joined": "2021-03-07 14:30:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659348",
- "username": "Linar",
- "fullName": "Linar",
- "avatarUrl": "https://www.gravatar.com/avatar/df28643215e3b7af3b4828aa57690a35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 20:14:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659468",
- "username": "snipeeeralamoood",
- "fullName": "MOHMMED_ AL3D (snipeeeralamoood)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659468/medium/c8301face694b762b0d71bf7937605dd.jpeg",
- "joined": "2021-03-08 23:07:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659478",
- "username": "antoniochiari",
- "fullName": "antoniochiari",
- "avatarUrl": "https://www.gravatar.com/avatar/d4f716b24594355b3bd8c2488a1417f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 23:24:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659534",
- "username": "isroilov_06",
- "fullName": "isroilov_06",
- "avatarUrl": "https://www.gravatar.com/avatar/e29a1bf6eda18fc49b625a03ae1c2402?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 00:44:02"
- },
- "languages": [
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 12
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996665,
+ "username": "slowwdev",
+ "fullName": "slow (slowwdev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996665/medium/d9d39ce06d506da97c2bad107ed016c5.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030241,
+ "username": "sonata-chen",
+ "fullName": "sonata-chen",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030241/medium/521fb44a99be409b8deb401d00d2439b.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 61,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 119,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 61,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14635876,
+ "username": "spiegelei929",
+ "fullName": "spiegelei929",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8f409171f202337f6f9df2e9ae5729bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 76
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 76
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14637260,
+ "username": "sulivancc",
+ "fullName": "sulivan cc (sulivancc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637260/medium/cc43ecd6859616ae7b8bd0a5525582ac.jpg",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 95,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 163,
+ "total": 185
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 95,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990557,
+ "username": "samuel281",
+ "fullName": "sungwoo park (samuel281)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990557/medium/ec6e0432bcf1ee504ec6f7b281ca52ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 169
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 169
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 169,
+ "total": 169
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 169,
+ "total": 169
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14655726,
+ "username": "tabark912aziz0",
+ "fullName": "tabark aziz (tabark912aziz0)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655726/medium/b78537999bae40535d439f644a7cdbeb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14264524,
+ "username": "pwn0",
+ "fullName": "techieanant (pwn0)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14264524/medium/b4d22cc388cc51e81c6e7dd801c38b78.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14058798,
+ "username": "eeasytest",
+ "fullName": "testFirst testLast (eeasytest)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058798/medium/3935cfd8fa3c8349dc9e9d2ad0e13f15.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13839387,
+ "username": "lenhung9171",
+ "fullName": "thi hong nhung le (lenhung9171)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13839387/medium/c76f0542f471c21514c999658555c994.jpg",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659984",
- "username": "danil0x",
- "fullName": "danil0x",
- "avatarUrl": "https://www.gravatar.com/avatar/2db94d8da7600836effd779b4c213b35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 07:25:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788632",
- "username": "Desuros",
- "fullName": "Desuros",
- "avatarUrl": "https://www.gravatar.com/avatar/bddd54e3c2b558678a021359c83dc4c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 15:14:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788556",
- "username": "Mika1801",
- "fullName": "Mika1801",
- "avatarUrl": "https://www.gravatar.com/avatar/bdff3eb483b40ba527a95fd39d16ac4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 13:46:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660090",
- "username": "paidused",
- "fullName": "Quang Huy (paidused)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660090/medium/6564af193237971aaabc8332d9feb9e5.jpeg",
- "joined": "2021-07-04 00:33:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788050",
- "username": "ZyWwQq",
- "fullName": "ZyWwQq",
- "avatarUrl": "https://www.gravatar.com/avatar/13dc1aa3f6dd80f01b67a5328de4655e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 00:45:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657632",
- "username": "Bofteak",
- "fullName": "Mahmoud Elhawary (Bofteak)",
- "avatarUrl": "https://www.gravatar.com/avatar/cbc12faee00d2d7904f31422dacea22c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 15:17:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14793958",
- "username": "CavalST",
- "fullName": "CavalST",
- "avatarUrl": "https://www.gravatar.com/avatar/8a74c3ad91c5c464dc7d5d7044561342?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 07:21:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656648",
- "username": "MuhammedAllam",
- "fullName": "MuhammedAllam",
- "avatarUrl": "https://www.gravatar.com/avatar/fda348b474c2998c19cea4082f8c562a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 23:10:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657196",
- "username": "alnoona0987",
- "fullName": "alnoona0987",
- "avatarUrl": "https://www.gravatar.com/avatar/1ebad767b8dd1d34081b8d0d46a41173?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 08:38:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656670",
- "username": "maycol8912",
- "fullName": "maycol8912",
- "avatarUrl": "https://www.gravatar.com/avatar/28be465c04da823a455c2c21cf011984?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 23:42:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14798406",
- "username": "bozorgzadehhabib",
- "fullName": "Habib Bozorgzadeh (bozorgzadehhabib)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798406/medium/f39d4189a95fd756bc3b50d906d3e624.jpeg",
- "joined": "2021-06-13 20:47:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656698",
- "username": "fish.meng",
- "fullName": "fish.meng",
- "avatarUrl": "https://www.gravatar.com/avatar/5011498f81f69cbeb69a3232bbef16f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 02:32:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797736",
- "username": "hugues.occansey",
- "fullName": "NO MORE LIMITS VR (hugues.occansey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797736/medium/9ba14023162fa366a352033048f79442.png",
- "joined": "2021-06-13 08:21:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656954",
- "username": "Khurramsajjad",
- "fullName": "Khurramsajjad",
- "avatarUrl": "https://www.gravatar.com/avatar/78e597ac5e41dfc6583fbc845b5414f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 04:57:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797568",
- "username": "renansuporte",
- "fullName": "Renan Azedo de Oliveira (renansuporte)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797568/medium/054e1de8d64f59ad4fa3f990108fdbb6.jpeg",
- "joined": "2021-06-13 04:32:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797460",
- "username": "lytrung879",
- "fullName": "Trung Ly (lytrung879)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797460/medium/a0891f5734c048a30ef16d67f5760f75.jpeg",
- "joined": "2021-06-13 01:43:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797214",
- "username": "rootban",
- "fullName": "rootban",
- "avatarUrl": "https://www.gravatar.com/avatar/290726f39936f7d6d0cda7b6b8be0724?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 19:26:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657052",
- "username": "Arafet",
- "fullName": "Arafet",
- "avatarUrl": "https://www.gravatar.com/avatar/8f18b6fea0f16d41cf671a8d65c91bcf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 06:33:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657222",
- "username": "mnsfhxy",
- "fullName": "mnsfhxy",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657222/medium/379dff48fc25e532bc99a16bd96b38ad.png",
- "joined": "2021-03-07 09:04:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794006",
- "username": "Keshuking02",
- "fullName": "Keshuking02",
- "avatarUrl": "https://www.gravatar.com/avatar/5bdd06248ff8e476a9a10f4a53d49240?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 07:57:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796076",
- "username": "plf",
- "fullName": "plf",
- "avatarUrl": "https://www.gravatar.com/avatar/8ecfbf7d5e932f06a3ec6aab644945c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 20:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796030",
- "username": "Nextstar.eth",
- "fullName": "Aman Ullah (Nextstar.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14796030/medium/500ebe6ce71623e4e7e0c2adfa59ae0e.jpg",
- "joined": "2021-06-11 18:51:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795952",
- "username": "Khoa61020000",
- "fullName": "Nguyễn thái đăng khoa (Khoa61020000)",
- "avatarUrl": "https://www.gravatar.com/avatar/a1dfcd00c37f65bafe044729e2e48f58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 17:36:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657312",
- "username": "ANDY.ART.123",
- "fullName": "ANDY.ART.123",
- "avatarUrl": "https://www.gravatar.com/avatar/b064ae37de1c1b54974fa6c009cd74a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 10:39:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795314",
- "username": "lvyulv",
- "fullName": "lvyulv",
- "avatarUrl": "https://www.gravatar.com/avatar/6da7daf6080bbc77e7b32daf876970eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 07:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795304",
- "username": "beyzagokmen",
- "fullName": "beyzagokmen",
- "avatarUrl": "https://www.gravatar.com/avatar/90b128369daaa823c799b6985b9c46e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 10:41:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794938",
- "username": "ariaphoenix5",
- "fullName": "Aria Phoenix (ariaphoenix5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794938/medium/1205998ed6714e039c979e44a2f7c3fd.jpeg",
- "joined": "2021-06-11 00:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794910",
- "username": "PyrojoKes",
- "fullName": "PyrojoKes",
- "avatarUrl": "https://www.gravatar.com/avatar/3213c05c3849d8586442c2af51998c42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 23:24:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657486",
- "username": "mmrodrigu",
- "fullName": "mmrodrigu",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657486/medium/17ffaafbbe470986abea2fca3163f554.png",
- "joined": "2021-03-07 13:04:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794586",
- "username": "Scipiomx",
- "fullName": "Scipiomx",
- "avatarUrl": "https://www.gravatar.com/avatar/0a39e7e1170e203766f4082e495e988d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 16:10:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650286",
- "username": "hermann.mat.8",
- "fullName": "Hermann Matondo (hermann.mat.8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650286/medium/c607b09284a92d3f7b9a548c0a59909c.jpg",
- "joined": "2021-03-02 16:23:42"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 14,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 14,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 14,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14568328,
+ "username": "tn_q2",
+ "fullName": "tn_q2",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dde07d45133db02c1192b8b2a972a225?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1396
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1396
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 1362,
+ "total": 1396
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 1526,
+ "total": 1564
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 903,
+ "total": 903
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 1362,
+ "total": 1396
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14601520,
+ "username": "tomekszafalowicz",
+ "fullName": "tomek szafalowicz (tomekszafalowicz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601520/medium/56d33e183f798197d7879c56c1b8cbec.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 154
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 154
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 145,
+ "total": 154
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 135,
+ "total": 141
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 121,
+ "total": 121
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 145,
+ "total": 154
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737304,
+ "username": "tommrovi",
+ "fullName": "tommr (tommrovi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737304/medium/7c139dcf13435f5400716746d18acc51.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14435238,
+ "username": "tongtongpsc",
+ "fullName": "tongtongpsc",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14435238/medium/92e24e643cd96da6cb32237c1aa8e51a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 175
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 175
+ },
+ "translated": {
+ "tmMatch": 175,
+ "default": 0,
+ "total": 175
+ },
+ "targetTranslated": {
+ "tmMatch": 83,
+ "default": 0,
+ "total": 83
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 175,
+ "default": 0,
+ "total": 175
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14362952,
+ "username": "WARFAST",
+ "fullName": "translator (WARFAST)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9c1c22281a5ab74e15f173814b17e861?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14612382,
+ "username": "burningtree",
+ "fullName": "tree (burningtree)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612382/medium/2c404859485a4c240c8a12ad48584c00.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 434
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 434
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 426,
+ "total": 434
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 393,
+ "total": 402
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 108,
+ "total": 108
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 426,
+ "total": 434
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14668114,
+ "username": "ttinho",
+ "fullName": "ttinho",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14668114/medium/abb6c5088e9fedee0db9d42e5079b776.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 60,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 41,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 60,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14646730,
+ "username": "udopton",
+ "fullName": "udo pton (udopton)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646730/medium/7d8e325859ee84c6efa0b4d38934382d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 324
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 324
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 308,
+ "total": 324
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 266,
+ "total": 285
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 308,
+ "total": 324
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973807,
+ "username": "ukr-user",
+ "fullName": "ukr-user",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973807/medium/1d2a10d81726182ea2b7314c4105a1d7.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 25,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 22,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 25,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14054996,
+ "username": "unsoindovo",
+ "fullName": "unSo IndoVo (unsoindovo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14054996/medium/15300e76cadf9169ffc8f4f2d2da8656.jpg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 3,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 4,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 3,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14181997,
+ "username": "samuel.brb19",
+ "fullName": "un_sam _sauvage (samuel.brb19)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14181997/medium/0aaf4c266fa4700ccec8bcadb09440b6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 31,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 37,
+ "total": 38
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 31,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14199570,
+ "username": "vavantgarde",
+ "fullName": "va.zh (vavantgarde)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14199570/medium/c63576e0e6e6d52fa17d7080a9992372.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14970993,
+ "username": "vadzimchesh",
+ "fullName": "vadzimchesh",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970993/medium/864bf7dad17fd4313cb5bb5656b4b547.jpg",
+ "preTranslated": 0,
+ "totalCosts": 701
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 701
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 699,
+ "total": 701
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 538,
+ "total": 540
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 175,
+ "total": 177
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 699,
+ "total": 701
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712650,
+ "username": "vahidkm86",
+ "fullName": "vahid kazemian moghaddam (vahidkm86)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712650/medium/fc40402b0c476b09b1a38fd944f53dff.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 113
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 113
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 110,
+ "total": 113
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 129,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 110,
+ "total": 113
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14811536,
+ "username": "vanessajtb",
+ "fullName": "vanessa (vanessajtb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811536/medium/ded311b23fe9e792d83e09f68768a794.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14809902,
+ "username": "vezga",
+ "fullName": "vezga san (vezga)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809902/medium/675a032e3202a461706fb2a350572bc5.png",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14803566,
+ "username": "w158rk",
+ "fullName": "w158rk",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803566/medium/25038b66bd6a7c6e5b55d2b4aa7681c0.png",
+ "preTranslated": 0,
+ "totalCosts": 801
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 801
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 798,
+ "total": 801
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 954,
+ "total": 960
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 798,
+ "total": 801
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14658598,
+ "username": "wahyukristyantoro",
+ "fullName": "wahyu kristyantoro (wahyukristyantoro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658598/medium/8fcc6e4c4ab169d95c6122ff4b02f48d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14791842,
+ "username": "fayewang4",
+ "fullName": "wang faye (fayewang4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791842/medium/89d1c354959cba1cc202d48868419686.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 24,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 33,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 24,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14619636,
+ "username": "raizo.bank007",
+ "fullName": "wassim siaf (raizo.bank007)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619636/medium/521ac78b4246337b92db96332f0a3d1c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 19,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13958039,
+ "username": "wimel",
+ "fullName": "wimel",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13958039/medium/b08ed358513657e8b3d502329886ff60.png",
+ "preTranslated": 0,
+ "totalCosts": 1016
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1016
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1016,
+ "total": 1016
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1083,
+ "total": 1083
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1016,
+ "total": 1016
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13962885,
+ "username": "wimel85",
+ "fullName": "wimel (wimel85)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962885/medium/5f59b01867e660913ad275f303018feb.png",
+ "preTranslated": 0,
+ "totalCosts": 118
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 118
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 112,
+ "total": 118
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 121,
+ "total": 127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 112,
+ "total": 118
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13985383,
+ "username": "xxmrmemedroidxx",
+ "fullName": "xXMr MemeXx (xxmrmemedroidxx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13985383/medium/5f88fcd17dee6d833bcb95594bedd4ee.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581838,
+ "username": "xyligan77",
+ "fullName": "xyligan 77 (xyligan77)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/af43d638b6fd8ebefcd491384ef04e43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14811950,
+ "username": "yanyanho",
+ "fullName": "yanyanho",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811950/medium/19ae645e2dd0ce102ecb67c0330ae71e.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14725288,
+ "username": "HypeRush",
+ "fullName": "yağız berk vural (HypeRush)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725288/medium/94cb2ca98cad3a255cfe800f33d77761.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 93
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 93
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 89,
+ "total": 93
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 80,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 89,
+ "total": 93
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14648700,
+ "username": "yeleizh",
+ "fullName": "yeleizh",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648700/medium/d34f322a1ee5e89c38ba67611ac1c48e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14774556,
+ "username": "yipu0v0",
+ "fullName": "yipu0v0",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774556/medium/dc85181aa42b536fe5c1130fbbd398b0.png",
+ "preTranslated": 0,
+ "totalCosts": 277
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 277
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 272,
+ "total": 277
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 377,
+ "total": 383
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 272,
+ "total": 277
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14647238,
+ "username": "zamptom",
+ "fullName": "zamptom",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647238/medium/ebe5fc22995b98e8bdcb2fe79fb7f38c.png",
+ "preTranslated": 0,
+ "totalCosts": 135
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 135
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 111,
+ "total": 135
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 87,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 54,
+ "total": 55
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 111,
+ "total": 135
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14119193,
+ "username": "zc_elephant",
+ "fullName": "zhangchao (zc_elephant)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14119193/medium/d69b7d9169f3f903cd3da7b36a4955de.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1417
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1417
+ },
+ "translated": {
+ "tmMatch": 115,
+ "default": 1302,
+ "total": 1417
+ },
+ "targetTranslated": {
+ "tmMatch": 221,
+ "default": 2127,
+ "total": 2348
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 93,
+ "total": 108
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 115,
+ "default": 1302,
+ "total": 1417
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14152701,
+ "username": "zsoltkecskes93",
+ "fullName": "zsolt kecskés (zsoltkecskes93)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14152701/medium/da3778be8b4769676038ecf1b474d69c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14650142,
+ "username": "zurasy0",
+ "fullName": "zurasy0",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650142/medium/1c4cf49eeb7053ef88192de4b222971d.png",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 140,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 141,
+ "total": 143
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 35,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 140,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14052846,
+ "username": "anohelpi",
+ "fullName": "Ákos Garamvölgyi (anohelpi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14052846/medium/700a61979c27accc889abbca342a529d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14498820,
+ "username": "ambarrojas24",
+ "fullName": "Ámbar Rojas (ambarrojas24)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498820/medium/5cc6f73e96e92d4bc0ec93c9bb0a7547.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14879146,
+ "username": "ayala.angel",
+ "fullName": "Ángel AB (ayala.angel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879146/medium/d8fad9310dee8ae1ec705e68569ce5f5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 192,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 178,
+ "total": 183
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 136,
+ "total": 137
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 192,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14979259,
+ "username": "caglarylmz",
+ "fullName": "Çağlar YILMAZ (caglarylmz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14979259/medium/aaea9fcba4c2027490c2336e6d9b86c8.png",
+ "preTranslated": 0,
+ "totalCosts": 63
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 63
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 63,
+ "total": 63
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750044,
+ "username": "eloise.emery",
+ "fullName": "Éloïse Emery (eloise.emery)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750044/medium/9e793da12e9905e4598d0e0a2e191289.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1991
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1991
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 1988,
+ "total": 1991
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 1972,
+ "total": 1975
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 947,
+ "total": 948
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 1988,
+ "total": 1991
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708432,
+ "username": "karozkan",
+ "fullName": "Özkan Göktaş (karozkan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708432/medium/fb9fc661d43315af3a7ed65bf1bedc04.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023705,
+ "username": "UmuTR42",
+ "fullName": "Ümit Rahim MUTLU (UmuTR42)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023705/medium/74abbc96e311225d644210239912356c.png",
+ "preTranslated": 0,
+ "totalCosts": 1014
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1014
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 968,
+ "total": 1014
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 864,
+ "total": 913
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 968,
+ "total": 1014
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907071,
+ "username": "HaiTran",
+ "fullName": "Đăng Trần Hải (HaiTran)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907071/medium/caa03486c3c1a189a0eb0c71a56702b3.png",
+ "preTranslated": 0,
+ "totalCosts": 3678
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3678
+ },
+ "translated": {
+ "tmMatch": 161,
+ "default": 3517,
+ "total": 3678
+ },
+ "targetTranslated": {
+ "tmMatch": 236,
+ "default": 4947,
+ "total": 5183
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 161,
+ "default": 3517,
+ "total": 3678
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14809786,
+ "username": "th851dan",
+ "fullName": "Đặng Sơn (th851dan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809786/medium/9f51944f586e5ea82248a2fdc6b75265.png",
+ "preTranslated": 0,
+ "totalCosts": 1312
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1312
+ },
+ "translated": {
+ "tmMatch": 80,
+ "default": 1232,
+ "total": 1312
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 1629,
+ "total": 1766
+ },
+ "translatedByMt": {
+ "tmMatch": 36,
+ "default": 0,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 80,
+ "default": 1232,
+ "total": 1312
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15037177,
+ "username": "ismailaydin",
+ "fullName": "İsmail aydın (ismailaydin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15037177/medium/565fd719b19e63fc4b6b28ee19b858ab.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 12,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 6,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 12,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14404560,
+ "username": "servanozel",
+ "fullName": "Şerwan Özel (servanozel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14404560/medium/cf09192f96468b012ef35a77df993095.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937735,
+ "username": "ilonaternovych",
+ "fullName": "Ілона Тернович (ilonaternovych)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937735/medium/4121baba80985301f8e6d1ba5c829a6c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1293
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1293
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 1263,
+ "total": 1293
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 1122,
+ "total": 1156
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 1028,
+ "total": 1032
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 1263,
+ "total": 1293
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952681,
+ "username": "AleksandrMorozov",
+ "fullName": "Александр (AleksandrMorozov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952681/medium/bea7a5ef230daeda223ee3d7265903a2.png",
+ "preTranslated": 0,
+ "totalCosts": 311
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 311
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 253,
+ "total": 311
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 226,
+ "total": 273
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 253,
+ "total": 311
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953599,
+ "username": "shurik2186",
+ "fullName": "Александр Денисенко (shurik2186)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953599/medium/a18f417d21a3e69e80bc7326877a9a27.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13495634,
+ "username": "aleksnder74",
+ "fullName": "Александр Кирьянов (aleksnder74)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13495634/medium/2bb6c9935c48233c344c42e22f7a0b64.jpg",
+ "preTranslated": 0,
+ "totalCosts": 653
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 653
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 637,
+ "total": 653
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 576,
+ "total": 595
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 564,
+ "total": 565
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 637,
+ "total": 653
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14065171,
+ "username": "aleksandrpereslavcev5",
+ "fullName": "Александр Переславцев (aleksandrpereslavcev5)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14065171/medium/624fef659758d550b1ca9de67bb1b349.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14534424,
+ "username": "allex77755",
+ "fullName": "Алексей Алексей (allex77755)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14534424/medium/3b106b72a492eba4b5ae553647e72327.jpg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673692,
+ "username": "alisa_lisenok_lebedeva",
+ "fullName": "Алиса Лебедева (alisa_lisenok_lebedeva)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673692/medium/921ac82058296bc13ebc53fff332d8dc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14673722,
+ "username": "lisenochek94942",
+ "fullName": "Алиса Лебедева (lisenochek94942)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673722/medium/033574e4bb916aa4fd3d508d4cb60674.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 201
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 201
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 195,
+ "total": 201
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 159,
+ "total": 166
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 195,
+ "total": 201
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949359,
+ "username": "anastasia.venhryn",
+ "fullName": "Анастасія Венгрин (anastasia.venhryn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949359/medium/37d92ecbcb7a4b31c6fb6ced3b4c346b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3692
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3692
+ },
+ "translated": {
+ "tmMatch": 101,
+ "default": 3591,
+ "total": 3692
+ },
+ "targetTranslated": {
+ "tmMatch": 106,
+ "default": 3045,
+ "total": 3151
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 101,
+ "default": 3591,
+ "total": 3692
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14492630,
+ "username": "freonesuka",
+ "fullName": "Андрей Вальтер (freonesuka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14492630/medium/0feb2d78f45cfdcb6f92f5061ffc44e8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 43,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 47,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 18,
+ "total": 27
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 43,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969675,
+ "username": "andreyleys",
+ "fullName": "Андрей Л (andreyleys)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969675/medium/905c79a1b6d262c4f27fe5dee3745986.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973315,
+ "username": "andruhas22",
+ "fullName": "Андрей Чорный (andruhas22)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973315/medium/7848339056e62d593030d6a6cb152e74.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 70
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 70
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 68,
+ "total": 70
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 59,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 68,
+ "total": 70
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681974,
+ "username": "belinarmy",
+ "fullName": "Антон Белоусов (belinarmy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681974/medium/a71d9b0ca20eb4808268608d5ce3587e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 206
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 206
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 203,
+ "total": 206
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 158,
+ "total": 161
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 203,
+ "total": 206
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14080781,
+ "username": "dgordg85",
+ "fullName": "Антон Петров (dgordg85)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14080781/medium/6801087e5ea5a3b7bdf56a8fdea0cf82.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12606390,
+ "username": "tapikdj",
+ "fullName": "Артем Неволько (tapikdj)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bc926fae7ca33e4bf7849ec14b11ed7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14057606,
+ "username": "Dobrevmotorsport",
+ "fullName": "Асен Добрев (Dobrevmotorsport)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057606/medium/01dca40d206446fe96ac6f46d8d04616.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 845
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 845
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 821,
+ "total": 845
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 801,
+ "total": 830
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 821,
+ "total": 845
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13490273,
+ "username": "Cmml",
+ "fullName": "Богдана Вознюк (Cmml)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13490273/medium/6492f5b552f926f396b1c2e28c8671d1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 6955
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6955
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6955,
+ "total": 6955
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6952,
+ "total": 6952
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6955,
+ "total": 6955
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14694080,
+ "username": "120123vadik",
+ "fullName": "Вадим Карайван (120123vadik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694080/medium/2eb83aa25be4969cc18afea0e1a8c855.jpg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14053950,
+ "username": "kalentinvs",
+ "fullName": "Валентин Коломенский (kalentinvs)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14053950/medium/eabb0addc1168ebfecf4bf4715c233dd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 9,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 31,
+ "default": 7,
+ "total": 38
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 9,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14955921,
+ "username": "valenti.g.kovalenko",
+ "fullName": "Валентина Коваленко (valenti.g.kovalenko)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955921/medium/b06f326d143a075371c080aafc8ac399.png",
+ "preTranslated": 0,
+ "totalCosts": 136
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 136
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 131,
+ "total": 136
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 105,
+ "total": 109
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 131,
+ "total": 136
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995909,
+ "username": "borodinavaleria8",
+ "fullName": "Валерия Бородина (borodinavaleria8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995909/medium/546efb6d14694d4fc0bb261ec7bb350d.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978593,
+ "username": "Vuichka",
+ "fullName": "Ванечка Александров (Vuichka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978593/medium/2df5fba2f29878e74912892dd1bdc5cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 67
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 60,
+ "total": 67
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 55,
+ "total": 65
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 60,
+ "total": 67
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660306,
+ "username": "vitya.demin50",
+ "fullName": "Виктор Дёмин (vitya.demin50)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660306/medium/83dea37d852e39c7d6a4bd7d33e4a689.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14196954,
+ "username": "vincenzo-bg",
+ "fullName": "Винченцо (vincenzo-bg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14196954/medium/5e276e009f3b962a942aee8dbf1346b5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 18,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 18,
+ "total": 38
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 18,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14669638,
+ "username": "Bigchain",
+ "fullName": "Виталий Добрый (Bigchain)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669638/medium/542782d0aa0b95801fbf719f0b5578d9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650032",
- "username": "ahmedshazed6",
- "fullName": "Shazed Ahmed (ahmedshazed6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650032/medium/d64c0bc64a6497f26072c290dc2f1a21.jpg",
- "joined": "2021-03-02 13:20:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630080",
- "username": "box-zhang",
- "fullName": "Box (box-zhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630080/medium/72759cd643262315e71e5154dd8fdd22.jpeg",
- "joined": "2021-02-18 09:53:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825774",
- "username": "Doktors",
- "fullName": "Doktors",
- "avatarUrl": "https://www.gravatar.com/avatar/ed6d001b522e2a28adaa950be03c1b81?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 12:53:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633518",
- "username": "Osama90",
- "fullName": "Osama90",
- "avatarUrl": "https://www.gravatar.com/avatar/ce3f92cac979e40762e302262ae267e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 16:59:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14827606",
- "username": "SaraNaum",
- "fullName": "Sara Naumovski (SaraNaum)",
- "avatarUrl": "https://www.gravatar.com/avatar/9067b17d88f498d89f1022c9fa2c0cd1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-17 08:28:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633532",
- "username": "1029829392",
- "fullName": "1029829392",
- "avatarUrl": "https://www.gravatar.com/avatar/35596dd55ec7bb888a80d4d46a6792c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 17:10:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826754",
- "username": "Pyzur",
- "fullName": "Pyzur",
- "avatarUrl": "https://www.gravatar.com/avatar/11756238cfa917d63996d040b25c8ea2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 10:42:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826530",
- "username": "Jane.lts",
- "fullName": "Jane.lts",
- "avatarUrl": "https://www.gravatar.com/avatar/03b65d24ba2d88fafd9e576ef0787c96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 06:45:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633592",
- "username": "Jhosephecacau",
- "fullName": "Jhosephe Thierry Andrade Cacau (Jhosephecacau)",
- "avatarUrl": "https://www.gravatar.com/avatar/30ac51be326ff625a5665f5ddc9e162a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 18:18:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826230",
- "username": "38704996534",
- "fullName": "38704996534",
- "avatarUrl": "https://www.gravatar.com/avatar/dfbd5c7728106f4b6c46e07f126ce8f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 01:02:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825962",
- "username": "NasoN",
- "fullName": "Игорь Насон (NasoN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825962/medium/86760c984f9a94f5828f525495f082ab.jpeg",
- "joined": "2021-07-03 16:20:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825852",
- "username": "Gitem",
- "fullName": "Артём Филиппов (Gitem)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825852/medium/cdab2ddead9d860d748e00ba5a67f77e.png",
- "joined": "2021-07-03 14:11:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633796",
- "username": "wnteam",
- "fullName": "Wahyu Kurniawan (wnteam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633796/medium/d64a4e4ace54716ed7e970f205c7e1a9.jpg",
- "joined": "2021-02-20 23:25:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829492",
- "username": "eqs",
- "fullName": "eqs",
- "avatarUrl": "https://www.gravatar.com/avatar/dceec154dad89a26f51d820af3a18413?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 12:30:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824790",
- "username": "gaston.celis1",
- "fullName": "Gastón (gaston.celis1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824790/medium/a50c8b20a725e06f7c389e40a4e3a041.png",
- "joined": "2021-07-02 15:06:48"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688996,
+ "username": "BugsVskBunny",
+ "fullName": "Владислав Жекунов (BugsVskBunny)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688996/medium/2879abb585b18c986c9cb323f7b46adb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14551216,
+ "username": "PoeMoe",
+ "fullName": "Вова Вересовой (PoeMoe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14551216/medium/c323076bd71473559b5b64d2eafcb65f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 66
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 66
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14605908,
+ "username": "datsyk",
+ "fullName": "Володимир Дацик (datsyk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605908/medium/e9addc830e5cf287cd1fb145b40be05e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 409
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 409
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 398,
+ "total": 409
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 347,
+ "total": 358
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 163,
+ "total": 164
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 398,
+ "total": 409
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949241,
+ "username": "victorialiashuk",
+ "fullName": "Вікторія Ляшук (victorialiashuk)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949241/medium/bc0802deb7a44714c47c0fedfc4d9086.png",
+ "preTranslated": 0,
+ "totalCosts": 1944
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1944
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 1896,
+ "total": 1944
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 1687,
+ "total": 1729
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 313,
+ "total": 321
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 1896,
+ "total": 1944
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907321,
+ "username": "vitalli",
+ "fullName": "Віталій Петрів (vitalli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907321/medium/287a90ef0414e5cc3e9b9719a44c47cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14603102,
+ "username": "nadja220376",
+ "fullName": "Георгий Кудрявцев (nadja220376)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14603102/medium/e4d0c5d95c113fc5d67d01da1d90a091.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 420
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 420
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 408,
+ "total": 420
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 351,
+ "total": 363
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 408,
+ "total": 420
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14545218,
+ "username": "CleVer85",
+ "fullName": "Денис Ільїн (CleVer85)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545218/medium/07ce2d1254dab4d9dcb1550ee75bb694.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1009
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1009
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 981,
+ "total": 1009
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 867,
+ "total": 892
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 327,
+ "total": 327
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 981,
+ "total": 1009
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14922683,
+ "username": "dimityryordanovmitov",
+ "fullName": "Димитър Митов (dimityryordanovmitov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922683/medium/0614e0aa7d663e2b1872912fef4dd747.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 88
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 88
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 85,
+ "total": 88
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 90,
+ "total": 92
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 85,
+ "total": 88
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14688876,
+ "username": "dimcaqw",
+ "fullName": "Дмитрий Нагорный (dimcaqw)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688876/medium/65cfc0b8cf4f2d7978cc3ba0321a7430.jpg",
+ "preTranslated": 0,
+ "totalCosts": 213
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 213
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 162,
+ "total": 213
+ },
+ "targetTranslated": {
+ "tmMatch": 46,
+ "default": 136,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 162,
+ "total": 213
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14322244,
+ "username": "tattooist2505",
+ "fullName": "Дмитрий Шкорин (tattooist2505)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14322244/medium/9b37a8b636bf42882642aa974b77f3a5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 0,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 0,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 0,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14572078,
+ "username": "sarbaev3377",
+ "fullName": "Дмитрий марганца (sarbaev3377)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572078/medium/e1357c87441140fe32c7e02441a03e1d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 107
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 107
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 101,
+ "total": 107
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 90,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 101,
+ "total": 101
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 101,
+ "total": 107
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14657118,
+ "username": "evgasadov",
+ "fullName": "Евгений Асадов (evgasadov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657118/medium/468b1c43cdb413475632521eb8b7f031.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 122,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 8,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678408,
+ "username": "maafakkaamel",
+ "fullName": "Егор Арте́мов (maafakkaamel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678408/medium/76c69d9a908bc704f0ce1245742087c0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14853042,
+ "username": "vanamaziev",
+ "fullName": "Иван Мазиев (vanamaziev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853042/medium/ceff19a9fd0e8b88bb59464f5f6632c9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14735762,
+ "username": "ivanmaznak",
+ "fullName": "Иван Мазняк (ivanmaznak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735762/medium/97a4221450b51adfd5d9ba72171bc900.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14971373,
+ "username": "liv1401",
+ "fullName": "Игорь Лихогруд (liv1401)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971373/medium/82b280124cb800f2a2f296d2c0471adc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 359
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 359
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 358,
+ "total": 359
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 324,
+ "total": 325
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 358,
+ "total": 359
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000525,
+ "username": "foteskuIgor",
+ "fullName": "Игорь Фотеску (foteskuIgor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000525/medium/a83b7d1987932ba37c04f8afa3a1a6c0.png",
+ "preTranslated": 0,
+ "totalCosts": 126
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 126
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 105,
+ "total": 126
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 109,
+ "total": 131
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 28,
+ "total": 31
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 105,
+ "total": 126
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14931377,
+ "username": "gansfoer",
+ "fullName": "Илья Панфилов (gansfoer)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931377/medium/6e09fc77f43e6939d342b7aaa7daf622.png",
+ "preTranslated": 0,
+ "totalCosts": 276
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 276
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 273,
+ "total": 276
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 164,
+ "total": 167
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 273,
+ "total": 276
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13543707,
+ "username": "romanenkoisnot",
+ "fullName": "Илья Романенко (romanenkoisnot)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13543707/medium/f14c7c2e75adcbdf41c85ab9906f0c31.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1064
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1064
+ },
+ "translated": {
+ "tmMatch": 158,
+ "default": 906,
+ "total": 1064
+ },
+ "targetTranslated": {
+ "tmMatch": 152,
+ "default": 778,
+ "total": 930
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 344,
+ "total": 354
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 158,
+ "default": 906,
+ "total": 1064
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14286930,
+ "username": "KenzYfan37",
+ "fullName": "Ксения Шаборкина (KenzYfan37)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14286930/medium/69a94872fdbcee3ec39ffa3930445630.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 120
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 120
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 102,
+ "total": 120
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 102,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 102,
+ "total": 120
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14816748,
+ "username": "max.m0n",
+ "fullName": "Максим Ельян (max.m0n)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816748/medium/5ede72ee6c8877a8246d571e675a46fb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563266,
+ "username": "makcimmc89",
+ "fullName": "Максим Смирнов (makcimmc89)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563266/medium/25df61604814781b59d0be9372dc75de.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968213,
+ "username": "igorivna_263",
+ "fullName": "Мар'янка Тарчинська (igorivna_263)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968213/medium/b596e38999691d52c315084a56d60e4f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3328
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3328
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 3272,
+ "total": 3328
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 2704,
+ "total": 2753
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 795,
+ "total": 797
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 3272,
+ "total": 3328
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881556,
+ "username": "m1shyts",
+ "fullName": "Михаил Марухно (m1shyts)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881556/medium/8d97850e1cb44414c1fa57a7aec17dcc.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 205,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 176,
+ "total": 185
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 205,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14586688,
+ "username": "misharuz25",
+ "fullName": "Миша Рузавин (misharuz25)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586688/medium/24bdff9ca7ecaadf89e707a27a1ffd61.jpg",
+ "preTranslated": 0,
+ "totalCosts": 222
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 222
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 216,
+ "total": 222
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 201,
+ "total": 208
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 216,
+ "total": 222
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14505360,
+ "username": "konovalenko1990miha",
+ "fullName": "Міхаіл Коноваленко (konovalenko1990miha)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14505360/medium/81612903e2bb240e7ff8365f5f3b42d8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 43215
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634932",
- "username": "s.alshoikan",
- "fullName": "s.alshoikan",
- "avatarUrl": "https://www.gravatar.com/avatar/1b5bb72d6bac4c9c9d6916f616eed676?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 16:15:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824320",
- "username": "2face",
- "fullName": "2face",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824320/medium/408c37c0e08ed56f227d6ff960332de1.jpg",
- "joined": "2021-07-02 07:29:15"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 43214
+ },
+ "translated": {
+ "tmMatch": 1954,
+ "default": 41260,
+ "total": 43214
+ },
+ "targetTranslated": {
+ "tmMatch": 1777,
+ "default": 39689,
+ "total": 41466
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 33,
+ "total": 37
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1954,
+ "default": 41260,
+ "total": 43214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14966881,
+ "username": "nb33535",
+ "fullName": "Наталія Болюх (nb33535)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966881/medium/7b4bd1fb8d6fde7a0d747f5c21e72b5a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14939633,
+ "username": "nellikaminska1967",
+ "fullName": "Неля Камінська (nellikaminska1967)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939633/medium/5533147ee1a8ba8dd395e949d74ead6e.png",
+ "preTranslated": 0,
+ "totalCosts": 1027
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1027
+ },
+ "translated": {
+ "tmMatch": 99,
+ "default": 928,
+ "total": 1027
+ },
+ "targetTranslated": {
+ "tmMatch": 85,
+ "default": 806,
+ "total": 891
+ },
+ "translatedByMt": {
+ "tmMatch": 24,
+ "default": 113,
+ "total": 137
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 99,
+ "default": 928,
+ "total": 1027
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14610544,
+ "username": "nikitaradov6",
+ "fullName": "Никита Радов (nikitaradov6)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14610544/medium/57a67ad6b287e9ddd3fad4dec959665c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14988379,
+ "username": "Nikita_Yuriev",
+ "fullName": "Никита Юрьев (Nikita_Yuriev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988379/medium/30ba5c83780593f0dbbb5f35b47dd1b7.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 14,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14442164,
+ "username": "nigraff",
+ "fullName": "Николай Графф (nigraff)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442164/medium/a1facd7a2ba5c9f84b2a3240bafd3c02.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 362
+ },
+ "translated": {
+ "tmMatch": 41,
+ "default": 321,
+ "total": 362
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 305,
+ "total": 346
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 260,
+ "total": 260
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 41,
+ "default": 321,
+ "total": 362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14788710,
+ "username": "niliosmon",
+ "fullName": "Равиль Вахиев (niliosmon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788710/medium/279fe400c614f4ff9e976f620d8e3293.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575684,
+ "username": "belov.rs.",
+ "fullName": "Роман Белов (belov.rs.)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575684/medium/1fae5fd475caf183043bd45154a4e378.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 186
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 186
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 186,
+ "total": 186
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 169,
+ "total": 169
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 186,
+ "total": 186
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14768172,
+ "username": "settarovrustem483",
+ "fullName": "Рустем Сеттаров (settarovrustem483)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14768172/medium/3657322c0a00fe3ce0869a6ee4863bef.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 119,
+ "default": 124,
+ "total": 243
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14622230,
+ "username": "rustik.zero94",
+ "fullName": "Рустик Базаров (rustik.zero94)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1fc615de9f86f6972ad75abfe489ed67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1313
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1313
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 1262,
+ "total": 1313
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 1111,
+ "total": 1160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 1262,
+ "total": 1313
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021999,
+ "username": "10denisenko10",
+ "fullName": "Сергей Денисенко (10denisenko10)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021999/medium/6019beedada344d78d324971b3adfd2c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681576,
+ "username": "lovemeso1987",
+ "fullName": "Сергей Степенный (lovemeso1987)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681576/medium/99ebf0bdafa267b87d96d7ef29461f2a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020157,
+ "username": "simplyfoodbiz",
+ "fullName": "Смелый Стиль (simplyfoodbiz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020157/medium/e87d1d7c1fed53ec6910d8515fe0afba.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 40,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 37,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 40,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14949313,
+ "username": "sofiacherkaska",
+ "fullName": "Софія Черкаська (sofiacherkaska)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949313/medium/ac181599260fbf268df6ce52dd8af8ab.jpg",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 99,
+ "total": 99
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14872412,
+ "username": "Smokier",
+ "fullName": "Станислав Рубашевский (Smokier)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872412/medium/9695aeef85e8a0ab85b4864e9e9cf1c8.gif",
+ "preTranslated": 0,
+ "totalCosts": 179
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 179
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 144,
+ "total": 179
+ },
+ "targetTranslated": {
+ "tmMatch": 40,
+ "default": 163,
+ "total": 203
+ },
+ "translatedByMt": {
+ "tmMatch": 17,
+ "default": 59,
+ "total": 76
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 144,
+ "total": 179
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14819294,
+ "username": "sekret.tikhon",
+ "fullName": "Тихон Секретарев (sekret.tikhon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819294/medium/eba1fc89da13c46a9ab31296200085f5.png",
+ "preTranslated": 0,
+ "totalCosts": 3627
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3627
+ },
+ "translated": {
+ "tmMatch": 99,
+ "default": 3528,
+ "total": 3627
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 2724,
+ "total": 2783
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 121,
+ "total": 131
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 99,
+ "default": 3528,
+ "total": 3627
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14639610,
+ "username": "FizziPizzi",
+ "fullName": "Трюк (FizziPizzi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14639610/medium/99a114fae9f918965d14b000c52596f6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14564238,
+ "username": "FreddyAndresParra",
+ "fullName": "Фредди Андрес Парра Орельяна (FreddyAndresParra)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg",
+ "preTranslated": 0,
+ "totalCosts": 25617
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25617
+ },
+ "translated": {
+ "tmMatch": 1002,
+ "default": 24615,
+ "total": 25617
+ },
+ "targetTranslated": {
+ "tmMatch": 1013,
+ "default": 26620,
+ "total": 27633
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 164,
+ "total": 178
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1002,
+ "default": 24615,
+ "total": 25617
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953369,
+ "username": "komaryulia12",
+ "fullName": "Юлія Комар (komaryulia12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953369/medium/87458c08c17ee87bf7daa7f73e6d9945.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 63,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 56,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 8,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 63,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14744448,
+ "username": "yani4ek",
+ "fullName": "Янис Волошин (yani4ek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14744448/medium/487500a62601bab3eaaef4a7d2cc0b57.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14367416,
+ "username": "simiria1980",
+ "fullName": "иван семеренько (simiria1980)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14367416/medium/211a965aa2c0eef05cc9a8c36489a01c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 67
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824112",
- "username": "Ch3NN",
- "fullName": "Neo Anderson (Ch3NN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824112/medium/863fb88cbd3277a85a52ec0694b50b4f.jpeg",
- "joined": "2021-07-02 04:50:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824010",
- "username": "rafalaffeier",
- "fullName": "Rafa Laffeier (rafalaffeier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824010/medium/a4281b297e936cd1fadbe8f5740e38ae.jpeg",
- "joined": "2021-07-02 03:28:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635062",
- "username": "yuriphb86",
- "fullName": "Yuri Gomes Junior (yuriphb86)",
- "avatarUrl": "https://www.gravatar.com/avatar/de1969530688829cdebc1becf5ce685c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 18:57:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635272",
- "username": "ksegovia",
- "fullName": "Kevin Segovia (ksegovia)",
- "avatarUrl": "https://www.gravatar.com/avatar/4528c1e428cddb86fda984a238265c87?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 23:05:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635586",
- "username": "akkabd37",
- "fullName": "Abdurrahman Akkaş (akkabd37)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635586/medium/784118f7d828f59b2933366f5b95e7fa.jpg",
- "joined": "2021-02-22 03:55:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822772",
- "username": "mcmjy",
- "fullName": "mcmjy",
- "avatarUrl": "https://www.gravatar.com/avatar/636f42e141b508c794960ccc28bf0603?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 07:05:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632982",
- "username": "yangge26",
- "fullName": "ge yang (yangge26)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632982/medium/e1fd4c2cdefd38753e276a2f8294de3e.jpg",
- "joined": "2021-02-20 08:33:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829614",
- "username": "hernanleissa",
- "fullName": "Hernan Leissa (hernanleissa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829614/medium/f66cbb15b3c957700429643d2afdfec3.jpeg",
- "joined": "2021-07-06 14:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636106",
- "username": "Burhanb873",
- "fullName": "Burhanb873",
- "avatarUrl": "https://www.gravatar.com/avatar/98f77a3cad75c7d8e7c8cd969727ac13?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 09:02:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630706",
- "username": "Amendez75",
- "fullName": "Amendez75",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630706/medium/988e8eef4a1356d0798f71d49827c3fa.jpeg",
- "joined": "2021-02-18 19:30:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834740",
- "username": "dim4im379",
- "fullName": "dim4im379",
- "avatarUrl": "https://www.gravatar.com/avatar/76376ed77417c393945243fc0e0a8bf6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-10 15:10:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834736",
- "username": "md944524",
- "fullName": "Мальков Дмитрий (md944524)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834736/medium/e414aeb1dcb19c007c4ceb36a471f507.jpeg",
- "joined": "2021-07-10 15:05:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834442",
- "username": "alessiorubicini",
- "fullName": "alessiorubicini",
- "avatarUrl": "https://www.gravatar.com/avatar/3631e7d799f08074696dd507e028c3fd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-10 09:46:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630090",
- "username": "milicang72",
- "fullName": "milicang72",
- "avatarUrl": "https://www.gravatar.com/avatar/a132ac785273b563acae7566483769cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-18 09:54:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834010",
- "username": "jace4411",
- "fullName": "guanlonghuang (jace4411)",
- "avatarUrl": "https://www.gravatar.com/avatar/215579e58ee501555706c20bfb05c4ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 06:13:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14833546",
- "username": "ItsPapoPlayz",
- "fullName": "ItsPapoPlayz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14833546/medium/e859bbdd14fd0111f9f451a37c352058.png",
- "joined": "2021-08-03 02:06:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630396",
- "username": "Minsun",
- "fullName": "Minsun",
- "avatarUrl": "https://www.gravatar.com/avatar/7a2f0f9a16c9c87ca2a438e189c72275?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-18 13:59:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832748",
- "username": "Pablo61",
- "fullName": "halim yılmaz (Pablo61)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14832748/medium/b4c3e5dacc2d9313d11878bb39a965da.jpeg",
- "joined": "2021-07-23 23:51:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832742",
- "username": "LQS_PM",
- "fullName": "LQS_PM",
- "avatarUrl": "https://www.gravatar.com/avatar/424c51f6ba3f1f8aec3787f35cd1d3c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-08 22:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831680",
- "username": "Losy",
- "fullName": "Losy",
- "avatarUrl": "https://www.gravatar.com/avatar/96c20e003b0f6d93f4b909803130b46d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 08:58:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829866",
- "username": "juandavidhern",
- "fullName": "Juan David Hernández (juandavidhern)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829866/medium/bac9c624631bc1b1fa3c2027f042dac5.jpeg",
- "joined": "2021-07-06 19:59:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831524",
- "username": "jromerojarj",
- "fullName": "Jonathan Alexander Romero Jimenez (jromerojarj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831524/medium/68cff92987970b4c5ec20248ca726d45.jpeg",
- "joined": "2021-07-08 02:18:16"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 28,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 181,
+ "total": 202
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 22,
+ "total": 30
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 28,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630742",
- "username": "cdxyz",
- "fullName": "cdxyz",
- "avatarUrl": "https://www.gravatar.com/avatar/3f394130a1f2bff9b32ac1e6f10f5278?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-18 20:06:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831328",
- "username": "Abdalkreem",
- "fullName": "Abdalkreem",
- "avatarUrl": "https://www.gravatar.com/avatar/0464f83374df1316e6a983369f394063?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 21:57:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831322",
- "username": "OrangeEd1t",
- "fullName": "忧郁的紫色毛衣男孩 (OrangeEd1t)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831322/medium/f3b1153c25150521f237fa66fbd336ac.jpeg",
- "joined": "2021-07-07 23:16:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831266",
- "username": "viviteck888",
- "fullName": "viviteck888",
- "avatarUrl": "https://www.gravatar.com/avatar/33b98011ee98621ea6b72ad03b550bf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 20:05:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831082",
- "username": "zaspartylion",
- "fullName": "Zaspał (zaspartylion)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831082/medium/c1b942765f488076e0243beebad3a1ec.gif",
- "joined": "2021-07-21 15:31:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632120",
- "username": "jdasome",
- "fullName": "jdasome",
- "avatarUrl": "https://www.gravatar.com/avatar/b696f1191ac8495a72ff3ce9220ce922?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 15:27:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830412",
- "username": "Jola_Fraczek",
- "fullName": "Jola_Fraczek",
- "avatarUrl": "https://www.gravatar.com/avatar/f0a2ce70443543befad8c0f0827cb4c4?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 06:15:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632568",
- "username": "VitalityVitaliy",
- "fullName": "VitalityVitaliy",
- "avatarUrl": "https://www.gravatar.com/avatar/95fa77fb97c4f179f34ee853aa4fb7da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 02:04:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829970",
- "username": "Basemalamir",
- "fullName": "Basemalamir",
- "avatarUrl": "https://www.gravatar.com/avatar/e42f4488dc723076c970efde4a0da9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 22:56:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636078",
- "username": "criscieco",
- "fullName": "Antonio Crisci (criscieco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636078/medium/59ac3ecefce015854a75f4967575da01.jpeg",
- "joined": "2021-02-22 08:41:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822216",
- "username": "nrodriguez_tupaca",
- "fullName": "Nicolas Rodriguez (nrodriguez_tupaca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822216/medium/2fc3e2ed870cc52e5227f3e427c170d6.jpeg",
- "joined": "2021-06-30 20:07:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812860",
- "username": "tuncaykaptan",
- "fullName": "Tuncay KAPTAN (tuncaykaptan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812860/medium/2cdf593e7ba6d701b968638ec78cce3f.gif",
- "joined": "2021-10-17 11:49:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645002",
- "username": "langlanems",
- "fullName": "xiaojing zhang (langlanems)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645002/medium/f3da3a6e8dbc9bf313dbfaa888b34063.jpg",
- "joined": "2021-02-27 11:30:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643970",
- "username": "copperking",
- "fullName": "copperking",
- "avatarUrl": "https://www.gravatar.com/avatar/8556db9704db02343ec3a068b5bd1a32?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-26 15:17:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816704",
- "username": "wanghuasong97",
- "fullName": "wanghuasong97",
- "avatarUrl": "https://www.gravatar.com/avatar/6e646fda6a18f3e0f478966dcbefa5be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 13:35:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816548",
- "username": "ayoubkaraou",
- "fullName": "ayoubkaraou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816548/medium/6ea87133077c227da4a197131ce1b935.png",
- "joined": "2021-06-26 11:43:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644396",
- "username": "dyczol",
- "fullName": "Bartek Dyczkowski (dyczol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14644396/medium/b12621d338ae5281cafad45f97aae563.jpeg",
- "joined": "2021-02-27 01:24:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644754",
- "username": "nigel-cloud",
- "fullName": "nigel-cloud",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14644754/medium/40c286e0605c5a38bba01f13766d04e2.jpeg",
- "joined": "2021-03-06 20:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644758",
- "username": "hoagiadaithieu",
- "fullName": "Hoa Gia Đại Thiếu (hoagiadaithieu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14644758/medium/80630ced3e91037fca9bcab28fc7b128.jpeg",
- "joined": "2021-02-28 03:03:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815816",
- "username": "cristianedacruzcris311",
- "fullName": "Cristiane da Cruz Cris (cristianedacruzcris311)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815816/medium/7f416e5f55737c497a41004380cc21d0.png",
- "joined": "2021-06-28 21:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644906",
- "username": "yhoga",
- "fullName": "yhoga",
- "avatarUrl": "https://www.gravatar.com/avatar/65a1bd725f2f3981b51c2c13ff503d2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 10:16:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644950",
- "username": "BadLone",
- "fullName": "BadLone",
- "avatarUrl": "https://www.gravatar.com/avatar/a308713b06b3b9cddf2659aaddc2d250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 10:45:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815280",
- "username": "Plomanto0419",
- "fullName": "Plomanto0419",
- "avatarUrl": "https://www.gravatar.com/avatar/a410222b823ca7093977051400ce41cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 10:17:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643788",
- "username": "Riorong",
- "fullName": "Riorong",
- "avatarUrl": "https://www.gravatar.com/avatar/78318a3a3ae7fa013a7d44589c8f2f7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-26 12:48:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645132",
- "username": "kallmy",
- "fullName": "kallmy",
- "avatarUrl": "https://www.gravatar.com/avatar/247f5ec6170f5e38388b4986c512f827?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 13:40:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814830",
- "username": "keskn.sertac7655",
- "fullName": "Sertaç Keskin (keskn.sertac7655)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814830/medium/fcc4262e29d4555d87b18d8f9d840ddc.png",
- "joined": "2021-06-25 05:08:28"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14623638,
+ "username": "iuraraikov",
+ "fullName": "юра райков (iuraraikov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623638/medium/1e5d0c8deee4e28779402ffc1308a55c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14172881,
+ "username": "47hzwhale",
+ "fullName": "Ӓlibek Aytjan (47hzwhale)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14172881/medium/dfd0e5efd5dac49f200b7bd24503eb4c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 768
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 768
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 720,
+ "total": 768
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 575,
+ "total": 622
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 720,
+ "total": 768
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14732326,
+ "username": "yoav.shacham",
+ "fullName": "יואב שחם (yoav.shacham)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732326/medium/66ae20d2b4f80439a484c8583c04579a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 86,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14693968,
+ "username": "hazem121986",
+ "fullName": "حازم المغازى (hazem121986)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693968/medium/c9985512ac32b62c0ee97bd52a387b55.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14654262,
+ "username": "haidar3312",
+ "fullName": "حيدر عمر (haidar3312)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654262/medium/0960808170fde67e7fcd1f7e8fe3bfba.jpg",
+ "preTranslated": 0,
+ "totalCosts": 65
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737918,
+ "username": "saeednajafi959",
+ "fullName": "دنیای موازی (saeednajafi959)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737918/medium/c35be6100a6ddd43d7be39a9abb3ad8d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14660622,
+ "username": "bh6123261",
+ "fullName": "عبدالرحمن حسين (bh6123261)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660622/medium/3cf987dc25f1178ce8756c6684739a27.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14315676,
+ "username": "abdullah55522210",
+ "fullName": "عبدالله الرشيدي (abdullah55522210)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14315676/medium/9da9976ff48731cafe59b1cea0e6cd71.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775706,
+ "username": "xx--omar--xx",
+ "fullName": "عمر المزواري (xx--omar--xx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775706/medium/36bdb89bb709a92eda9c9b0b2521cf6e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035049,
+ "username": "magazine4you",
+ "fullName": "مجله ای برای شما مجله کسب درآمد از اینترنت (magazine4you)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035049/medium/02a8d4b62f72fe29bd65bc1896a0eecc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 685
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 685
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 684,
+ "total": 685
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 802,
+ "total": 803
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 684,
+ "total": 685
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14653488,
+ "username": "mu_21",
+ "fullName": "مويد الذهب (mu_21)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653488/medium/93a582f1f191453bb72aa3381f9b86dd.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14080359,
+ "username": "naphahanarsa",
+ "fullName": "นภา หาษอาษา (naphahanarsa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14080359/medium/a1d25b23699d8fbc6b9c32726d20f5fc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14177681,
+ "username": "0972947249zz",
+ "fullName": "ปอง หลอน (0972947249zz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14177681/medium/6c9d44a9d7e493a08b19992d4f4a90b2.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 161
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 161
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 113,
+ "total": 161
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 113,
+ "total": 160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 113,
+ "total": 161
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14312806,
+ "username": "PoPure",
+ "fullName": "สมรรถณพ ทองดี (PoPure)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312806/medium/5c2569402581dea5e30db1e0f8fbc76e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 22,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 10,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 22,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13702183,
+ "username": "kawlove250139",
+ "fullName": "สุกัญญา ตาลรัศมี (kawlove250139)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ce27be1547552d05485034c2836c578a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13671867,
+ "username": "blackeye-_",
+ "fullName": "แบล็ค' อาย' (blackeye-_)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13671867/medium/a28dd7416176046e7e7959916d4bd2c4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 83
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 83
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 70,
+ "total": 83
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 11,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 70,
+ "total": 83
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14887590,
+ "username": "javajava",
+ "fullName": "吉田圭 (javajava)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887590/medium/ed8d5742366308e76f6f49506b05a19c.png",
+ "preTranslated": 0,
+ "totalCosts": 157
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 157
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 152,
+ "total": 157
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 531,
+ "total": 541
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 77,
+ "total": 77
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 152,
+ "total": 157
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14158559,
+ "username": "BruceLvJC",
+ "fullName": "吕锦程 (BruceLvJC)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158559/medium/6173bbb0f2c1da287c7c3864d98fd739.jpg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 30,
+ "total": 38
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14588140,
+ "username": "tang5113",
+ "fullName": "唐辉 (tang5113)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588140/medium/5d6d40cda58a566c5d84dd30203463e6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14647552,
+ "username": "whjiang1997",
+ "fullName": "姜文浩 (whjiang1997)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647552/medium/ab5b7cc4742ee5615b7e170197e5915a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 84,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 149,
+ "total": 160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 84,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14678922,
+ "username": "abc0905075395",
+ "fullName": "張俊輔 (abc0905075395)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678922/medium/615c6a3a6c106fbbd8158ceac038f362.jpg",
+ "preTranslated": 0,
+ "totalCosts": 55
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 55
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 52,
+ "total": 55
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 66,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 52,
+ "total": 55
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14781176,
+ "username": "GraysonZhang",
+ "fullName": "我是花轮 (GraysonZhang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781176/medium/d43f3175d04c05008e18cb3c14209ff2.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12960382,
+ "username": "SiderealArt",
+ "fullName": "曹恩逢 (SiderealArt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12960382/medium/efd52e2c41be32bfd52569ac15d228b7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 40,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 105,
+ "default": 63,
+ "total": 168
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 40,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14591708,
+ "username": "lihelh",
+ "fullName": "李* (lihelh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591708/medium/505be4f784f752b373e3357952cc9c28.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 5,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 8,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 5,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14638898,
+ "username": "lizhenwei12",
+ "fullName": "李可以 (lizhenwei12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638898/medium/b79920acf354f5fe4fbafad96e1360d4.jpg",
+ "preTranslated": 0,
+ "totalCosts": 103
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 103
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 147,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 103,
+ "total": 103
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14329762,
+ "username": "lixingnan5",
+ "fullName": "李幸男 (lixingnan5)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14329762/medium/7428604bb37ef36b8f8425ca4b9daaa2.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 0,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003025,
+ "username": "RishYang",
+ "fullName": "楊日新 (RishYang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003025/medium/2c2e962666bcd40b0f06ca6c1eb5e258.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 52,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 88,
+ "total": 94
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 52,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953253,
+ "username": "biwenming7",
+ "fullName": "毕文明 (biwenming7)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953253/medium/8c44470b0c9c27bcbf8395dee10b20ff.png",
+ "preTranslated": 0,
+ "totalCosts": 4405
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4405
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 4376,
+ "total": 4405
+ },
+ "targetTranslated": {
+ "tmMatch": 60,
+ "default": 7114,
+ "total": 7174
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 839,
+ "total": 853
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 4376,
+ "total": 4405
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14634442,
+ "username": "hina5633030331",
+ "fullName": "水浦比奈子 (hina5633030331)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634442/medium/0d51169805ff11c6ac971b077ce5d595.jpg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645232",
- "username": "Nguyenhop248.",
- "fullName": "Nguyenhop248.",
- "avatarUrl": "https://www.gravatar.com/avatar/b5b11cb812bf50e5f625f6d9cc53244c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 14:58:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645480",
- "username": "mohamedkhalfahmed600",
- "fullName": "mohamed khalf (mohamedkhalfahmed600)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645480/medium/bcb8e3612c5663046e9d2f572a1b67ed.jpg",
- "joined": "2021-02-27 19:51:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645750",
- "username": "lan.kou2976",
- "fullName": "mickael myer (lan.kou2976)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645750/medium/dc2f0aa28844178cd2a1ba31cc023522.jpeg",
- "joined": "2021-02-28 01:56:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645914",
- "username": "z13571",
- "fullName": "z13571",
- "avatarUrl": "https://www.gravatar.com/avatar/104959f31fb322d7f84ec51638118448?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 05:03:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646228",
- "username": "eurinoks",
- "fullName": "eurinoks",
- "avatarUrl": "https://www.gravatar.com/avatar/c50312a6d7df7aa65864a9227c2a6272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 10:09:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647290",
- "username": "mfurkandemir",
- "fullName": "mfurkandemir",
- "avatarUrl": "https://www.gravatar.com/avatar/0b51af4f510766f0f983193d0b54a503?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 03:23:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813084",
- "username": "vlarm",
- "fullName": "Giuseppe Faraone (vlarm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813084/medium/7609f9b9668506662db8a550982e0667.jpeg",
- "joined": "2021-06-23 19:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648550",
- "username": "JulianRDN",
- "fullName": "JulianRDN",
- "avatarUrl": "https://www.gravatar.com/avatar/83eebb1f8f6cda54fa620e29342e9cb5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 19:50:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817002",
- "username": "nasir.ah1994",
- "fullName": "Nabil Sekandar (nasir.ah1994)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817002/medium/3d8f058d0321b3e72edfae6bcedc9cb8.jpeg",
- "joined": "2021-06-26 20:54:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817372",
- "username": "xiaoyi311",
- "fullName": "xiaoyi311",
- "avatarUrl": "https://www.gravatar.com/avatar/c83034331f2b8373e50cab080f31625b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 05:32:25"
- },
- "languages": [
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14787946,
+ "username": "importwyf",
+ "fullName": "汪一帆 (importwyf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787946/medium/887ff1f844f3421fdad67e477aa2b0f7.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14655736,
+ "username": "wangkaixuan1011",
+ "fullName": "王凯旋 (wangkaixuan1011)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655736/medium/59d47a2c5fea893101fe8c9ddd793ed6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14747658,
+ "username": "Domokun",
+ "fullName": "皇耀司 (Domokun)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747658/medium/7fa1b0756d7a431ba502f4f6fd305f3f.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 193,
+ "total": 193
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14737668,
+ "username": "shexhx0906",
+ "fullName": "知最 (shexhx0906)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737668/medium/b4101bd6f1d00337cb0d1ebf676e4323.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 660
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 660
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 630,
+ "total": 660
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 1009,
+ "total": 1062
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 630,
+ "total": 660
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14710684,
+ "username": "sort0905291712",
+ "fullName": "蔡加盟 (sort0905291712)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710684/medium/9fa52441908f577f867b51a43ac00aac.jpg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636326",
- "username": "alejandrocortez068",
- "fullName": "Joaquín Cortez (alejandrocortez068)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636326/medium/d96e821e16ab99f66a28e9950273ed4f.jpeg",
- "joined": "2021-02-22 10:27:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638616",
- "username": "Patt",
- "fullName": "Patt",
- "avatarUrl": "https://www.gravatar.com/avatar/1b29c6f106af946d1a5d822538acdb7e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 16:51:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637114",
- "username": "banhao",
- "fullName": "banhao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637114/medium/f44e6324ab1658ee0f92c0aebba814eb.png",
- "joined": "2021-02-22 23:18:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820982",
- "username": "Mike.Liu",
- "fullName": "Mike Liu (Mike.Liu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820982/medium/4c7f9919fa51976243a925ac91115022.jpeg",
- "joined": "2021-07-24 23:03:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637148",
- "username": "Jaysonmaldonado",
- "fullName": "Jaysonmaldonado",
- "avatarUrl": "https://www.gravatar.com/avatar/0d40ebd0ce4ad8af705232af3ccc958e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 23:49:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820836",
- "username": "YeGorobetLij",
- "fullName": "Endrias Ababu (YeGorobetLij)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820836/medium/b5abb6788fdcae9ce4b659e581539d5f.PNG",
- "joined": "2021-06-29 18:55:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820822",
- "username": "satisflo",
- "fullName": "satisflo",
- "avatarUrl": "https://www.gravatar.com/avatar/450941ad9d549db59defbb8ba593331f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 18:31:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820766",
- "username": "Jwan94",
- "fullName": "Jwan94",
- "avatarUrl": "https://www.gravatar.com/avatar/cdeea609e4658dc15ae1f03222977dfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 17:41:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638130",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/7f1073e93bab914b3740495679d214e8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 10:38:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820452",
- "username": "tomasspvarela",
- "fullName": "Tomás Varela (tomasspvarela)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820452/medium/e5acc4a0d4323ff9d158e0834f6e1d3a.png",
- "joined": "2021-07-11 10:21:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638340",
- "username": "HokageSan78",
- "fullName": "HokageSan78",
- "avatarUrl": "https://www.gravatar.com/avatar/8ae409036cc6f41eca26d0f7b2d828c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 12:37:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638786",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/ef5f497f5e50c336c29ed04dd0648adb?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 20:37:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817750",
- "username": "maryam.jahani19",
- "fullName": "Maryam Jahani (maryam.jahani19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817750/medium/029bed033179030e7a0737a499586178.jpeg",
- "joined": "2021-06-27 11:52:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639464",
- "username": "liuwanli",
- "fullName": "liuwanli",
- "avatarUrl": "https://www.gravatar.com/avatar/ccb74448de6461df16090fe3c1479f98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 07:32:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639632",
- "username": "kownasiek",
- "fullName": "kownasiek",
- "avatarUrl": "https://www.gravatar.com/avatar/9999cd3ca6b8079e86b12437de2df175?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 08:51:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640202",
- "username": "JohnDow",
- "fullName": "JohnDow",
- "avatarUrl": "https://www.gravatar.com/avatar/a4e7cf6e451cb77f094039d92c6c775d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 13:53:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14641560",
- "username": "Gabrielcambh",
- "fullName": "Gabrielcambh",
- "avatarUrl": "https://www.gravatar.com/avatar/faa72681f6e1ccdd07a2eee64e78e1e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 07:10:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819114",
- "username": "Thops09",
- "fullName": "Thops09",
- "avatarUrl": "https://www.gravatar.com/avatar/5f5ac9d3b5c37a9b6d9068ea202b55d3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 13:24:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642688",
- "username": "pham_thanh_nhut_95",
- "fullName": "Dương Duy Khánh (pham_thanh_nhut_95)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642688/medium/bf62834a16470ba4fe9075357eb51b85.jpeg",
- "joined": "2021-02-25 20:22:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14818744",
- "username": "armando.sv.rocha",
- "fullName": "Armando Rocha (armando.sv.rocha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14818744/medium/b6a6d9c2d5215bc614bedb317d9ff37b.jpg",
- "joined": "2021-07-05 07:31:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14818666",
- "username": "4ni4",
- "fullName": "4ni4",
- "avatarUrl": "https://www.gravatar.com/avatar/4de5b089790dc3f66b1aa005c09932b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 06:06:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643256",
- "username": "ngokhongmot01",
- "fullName": "ngô không một (ngokhongmot01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643256/medium/6830f66bd0c357daa35e0f46ddfbabf6.jpg",
- "joined": "2021-02-26 10:42:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817780",
- "username": "amorteza936",
- "fullName": "GAME ZONE (amorteza936)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817780/medium/2517f173a7ab9d601df0d4869cabf3aa.jpeg",
- "joined": "2021-06-27 12:18:11"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697364",
- "username": "sharipov7ar",
- "fullName": "Albert SHaripov (sharipov7ar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697364/medium/3c5da01c1ab1e3d5a4df70965e8fce50.jpeg",
- "joined": "2021-04-04 16:14:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14697756,
+ "username": "xd1565211796",
+ "fullName": "言夕 (xd1565211796)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697756/medium/b17ef9f5d5ffc630dd67aae19dab6153.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978465,
+ "username": "chenlie449",
+ "fullName": "陈列 (chenlie449)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978465/medium/1f7175717fc3e3dfb1a419dd80e49ece.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14782424,
+ "username": "Randolph",
+ "fullName": "陈龙 (Randolph)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782424/medium/7851e17a78e604a0d9fdc5862efb394b.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 134,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14598510,
+ "username": "arshengc",
+ "fullName": "陳亞生 (arshengc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14598510/medium/dc5af8c666f76b88f0af685ab8574f16.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1017
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1017
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 987,
+ "total": 1017
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 1682,
+ "total": 1735
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 987,
+ "total": 1017
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14729514,
+ "username": "kylin7647",
+ "fullName": "顾轻言 (kylin7647)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729514/medium/86176f28da9e30f87eec5e8dd06df954.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 22,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 50,
+ "total": 88
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 22,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14588718,
+ "username": "tjr3117",
+ "fullName": "김재* (tjr3117)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588718/medium/2c851e481bcc27ed20a7ac68e06d2bbd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 150
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 150
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 149,
+ "total": 150
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 107,
+ "total": 109
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 149,
+ "total": 150
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14980565,
+ "username": "grayPark",
+ "fullName": "박규하 (grayPark)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14980565/medium/11096f92db3bb79f08f0bfcbd1f9f379.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 243
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 243
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 243,
+ "total": 243
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 225,
+ "total": 225
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 243,
+ "total": 243
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14560082,
+ "username": "myshd11",
+ "fullName": "서현동 (myshd11)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560082/medium/6d8d9dcff6308ceb09ff44bf0b6d11f3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996607,
+ "username": "rigmah",
+ "fullName": "성창환 (rigmah)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996607/medium/fdd3ab42388c593e2bc61fc4ebba6849.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 11,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 11,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 11,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14563302,
+ "username": "mwsua77",
+ "fullName": "스윽 (mwsua77)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563302/medium/7b36db3328f069314ee8db9534389623.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 79,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 94,
+ "total": 101
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 79,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14750098,
+ "username": "eastudy1017",
+ "fullName": "신동학 (eastudy1017)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750098/medium/265a5f8f4bc4cc63b8bf05a2d32e36f4.png",
+ "preTranslated": 0,
+ "totalCosts": 1318
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1318
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1317,
+ "total": 1318
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 844,
+ "total": 845
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1317,
+ "total": 1318
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14686644,
+ "username": "Eomhyunjun",
+ "fullName": "엄현준 (Eomhyunjun)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686644/medium/7683cac08585ebfb07836b8c71c68bd8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 204
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 204
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 200,
+ "total": 204
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 200,
+ "total": 204
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682690,
+ "username": "maruchingu",
+ "fullName": "연대열 (maruchingu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682690/medium/f5a233a682cccd076a4f6f8f25f3feab.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 243
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 243
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 243,
+ "total": 243
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 178,
+ "total": 178
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 243,
+ "total": 243
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14632856,
+ "username": "dbwg25",
+ "fullName": "유주니 (dbwg25)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632856/medium/e37be366099501cdcf48cf2c2e177be9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14564174,
+ "username": "lch5490",
+ "fullName": "임치헌 (lch5490)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564174/medium/b8e4fee1f0c81e8ad49b606df8b07208.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1408
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1408
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 1365,
+ "total": 1408
+ },
+ "targetTranslated": {
+ "tmMatch": 39,
+ "default": 1105,
+ "total": 1144
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 1365,
+ "total": 1408
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14567240,
+ "username": "jj123",
+ "fullName": "정민석 (jj123)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567240/medium/8411a1f4e4e3b3f982889f724c282c5a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 36
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 36
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
}
]
}
diff --git a/src/data/translation-reports/month-data.json b/src/data/translation-reports/month-data.json
index 5b4f7aba264..1a29fefee55 100644
--- a/src/data/translation-reports/month-data.json
+++ b/src/data/translation-reports/month-data.json
@@ -1,68774 +1,16761 @@
{
- "name": "Ethereum.org Translations Top Members Report",
+ "name": "Ethereum.org Translations Translation Costs Report",
"url": "https://translate.ethereum.org/project/ethereum-org",
"unit": "words",
"dateRange": {
- "from": "2021-10-28",
- "to": "2021-11-28"
+ "from": "2021-11-01",
+ "to": "2021-11-30"
},
- "language": "All",
+ "currency": "USD",
+ "mode": "simple",
+ "roleBasedCosts": true,
+ "totalCosts": 233700,
+ "totalTMSavings": 0,
+ "totalPreTranslated": 932,
"data": [
{
"user": {
- "id": "14977831",
- "username": "peterskoda7",
- "fullName": "Peter Škoda Kecman (peterskoda7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977831/medium/e1e3f150ce524a6cb88fccb8b4f52422.png",
- "joined": "2021-10-27 05:26:28"
- },
- "languages": [
+ "id": 15024397,
+ "username": "AM113",
+ "fullName": "AM113",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b735be89478a1b1d81ca55d1cc4e2cce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958579,
+ "username": "AWZ",
+ "fullName": "AWZ",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c1847aceaa5b7bb77810b614a56de60e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15012107,
+ "username": "Aco_FR",
+ "fullName": "Aco_FR",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/02036de3a59a96080761f7fff486db8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 478,
+ "total": 508
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 601,
+ "total": 630
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 763
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14179845,
+ "username": "Aco_FroilanM",
+ "fullName": "Aco_FroilanM",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/ff8c78e2a23bd56fe26dede8086f2ede?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 103,
+ "default": 666,
+ "total": 769
+ },
+ "targetTranslated": {
+ "tmMatch": 114,
+ "default": 698,
+ "total": 812
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1071
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 44960,
- "target": 40831,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13461670",
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 213,
+ "default": 1897,
+ "total": 2110
+ },
+ "targetTranslated": {
+ "tmMatch": 236,
+ "default": 2130,
+ "total": 2366
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5942
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005475,
+ "username": "Aco_MLY",
+ "fullName": "Aco_MLY",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/d561292be8daa0a3d305dea33fed9465?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 472,
+ "total": 527
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 478,
+ "total": 542
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005635,
+ "username": "Aco_Stergiopoulou_Michaela",
+ "fullName": "Aco_Stergiopoulou_Michaela",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/9885ded5d890367e60df4ea1479b8104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 132,
+ "default": 689,
+ "total": 821
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 770,
+ "total": 907
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1044
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15012031,
+ "username": "Aco_VTM",
+ "fullName": "Aco_VTM",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/02c6804ff53675aeacabacad44ff5d1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 626,
+ "total": 689
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 939,
+ "total": 1017
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005293,
+ "username": "Aco_Zinacle",
+ "fullName": "Aco_Zinacle",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/5016dc5d64f6e86078cc0191822ffff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 88,
+ "default": 660,
+ "total": 748
+ },
+ "targetTranslated": {
+ "tmMatch": 106,
+ "default": 713,
+ "total": 819
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 39,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 100
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14769736,
+ "username": "Andpatagon",
+ "fullName": "Andpatagon",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5aa159c0ea923eba17a923ca3c2930c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 0,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996735,
+ "username": "AndreaBadini",
+ "fullName": "AndreaBadini",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/95266066115a8f09d277ee565691426a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005487,
+ "username": "Anna_Shirkova",
+ "fullName": "Anna_Shirkova",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/db6b29e6ea944a2b355e690459255898?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 162
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 160,
+ "total": 162
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 160,
+ "total": 162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023385,
+ "username": "Aparticle",
+ "fullName": "Aparticle",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7145c493f2cd4d97b93ef42b16a88478?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 34,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 9,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987665,
+ "username": "Artem_Levenko",
+ "fullName": "Artem_Levenko",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/17f91c5dddb6c7766a5153a009880b3b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002255,
+ "username": "AsharFR",
+ "fullName": "AsharFR",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dffad03f7c651a72565b53bef30adba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 485
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 485
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 429,
+ "total": 485
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 496,
+ "total": 555
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 429,
+ "total": 485
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035745,
+ "username": "Aymaneeli",
+ "fullName": "Aymaneeli",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1a230fc1b0cce68cd6c9a7e3fa9e8c11?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 328
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 328
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 328,
+ "total": 328
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 358,
+ "total": 358
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 229,
+ "total": 229
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 328,
+ "total": 328
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029781,
+ "username": "B0nst3r",
+ "fullName": "B0nst3r",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7275eb6c8622d46317cbbc160c0ac843?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000681,
+ "username": "BXS",
+ "fullName": "BXS",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7d9b2aad645e110ad96a043cbdef7a18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 115
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 115
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 142,
+ "total": 142
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 115,
+ "total": 115
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034399,
+ "username": "Blob.eth",
+ "fullName": "Blob.eth",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4a544345569010a1d328df3bfcbc11ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14986897,
+ "username": "Blockchainnewbie",
+ "fullName": "Blockchainnewbie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/70d268bdaf5a4a94ba316f5a49e9fb55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 23,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 23,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14972621,
+ "username": "CSR1415926535",
+ "fullName": "CSR1415926535",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4f21674423ae94c870d639e1bf09ebf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 223
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 223
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 203,
+ "total": 223
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 223,
+ "total": 245
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 203,
+ "total": 223
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999585,
+ "username": "CaptnSauerkraut",
+ "fullName": "CaptnSauerkraut",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6c22f8073f60dde4c50101bf6d222da9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030613,
+ "username": "ChadleyETH",
+ "fullName": "ChadleyETH",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d524ba7ea4e118deb12193eb4391dd1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 57,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 73,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 32,
+ "total": 34
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 57,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036833,
+ "username": "Cubano.brito",
+ "fullName": "Cubano.brito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/585549b7881b01a2874bab77acbe3469?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 105,
+ "total": 105
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953975,
+ "username": "Cyberdog",
+ "fullName": "Cyberdog",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/637197c572b1479acb3e40d910bd3a21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 372
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 372
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 372,
+ "total": 372
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 603,
+ "total": 603
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 372,
+ "total": 372
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14997221,
+ "username": "DD369",
+ "fullName": "DD369",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b1b0eba0f0c27e5adb35bf066143a30f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 117
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 117
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 103,
+ "total": 117
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 102,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 61,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 103,
+ "total": 117
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14977143,
+ "username": "David0",
+ "fullName": "David0",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/079915c43f9e9335cb9507680fb52dec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 149
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 149
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 158,
+ "total": 158
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14958061,
+ "username": "Dearry",
+ "fullName": "Dearry",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c0545f4225c9b4184db8d4a7eef62a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 34,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034409,
+ "username": "Dumitru1980",
+ "fullName": "Dumitru1980",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034409/medium/0f6bb2ae64a3a2af67d0dc4b33592893.jpg",
+ "preTranslated": 0,
+ "totalCosts": 948
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 948
+ },
+ "translated": {
+ "tmMatch": 102,
+ "default": 846,
+ "total": 948
+ },
+ "targetTranslated": {
+ "tmMatch": 111,
+ "default": 825,
+ "total": 936
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 102,
+ "default": 846,
+ "total": 948
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14473322,
+ "username": "Elhadi_Bouazizi",
+ "fullName": "Elhadi_Bouazizi",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14473322/medium/597d58b8d19a3394b781b39fbb5c1a3c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14974343,
+ "username": "George4530",
+ "fullName": "George4530",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974343/medium/eccecfc959d5a742451c99f239351234.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13461670,
"username": "GiorgioHerbie",
"fullName": "GiorgioHerbie",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/842f442aeb23dc0a3f89ad10e1ba7a04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-05 13:07:19"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 31405,
- "target": 32608,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566994",
- "username": "papoy3",
- "fullName": "Hydro Honey 3000 (papoy3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566994/medium/27c38d4eb236018e454793c342fbf118.jpg",
- "joined": "2021-02-04 05:37:47"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 24772,
- "target": 26086,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880458",
- "username": "sekisanchi",
- "fullName": "Kazunori Seki (sekisanchi)",
- "avatarUrl": "https://www.gravatar.com/avatar/7434df198795c08088636407dc7f96c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 19:25:29"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 20189,
- "target": 49600,
- "approved": 0,
- "voted": 379,
- "positiveVotes": 19,
- "negativeVotes": 8,
- "winning": 0
- },
- {
- "user": {
- "id": "14320782",
- "username": "JoseDeFreitas",
- "fullName": "José De Freitas (JoseDeFreitas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320782/medium/988805bcea26898a44f89f036124c176.png",
- "joined": "2021-11-07 20:20:59"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 11329,
- "target": 12659,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 943
- },
- {
- "user": {
- "id": "14978447",
- "username": "DanDaro",
- "fullName": "André Abner (DanDaro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978447/medium/6c0a867cdc72f871a6dd35862afa1562.jpg",
- "joined": "2021-10-27 17:35:00"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 31405
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31405
+ },
+ "translated": {
+ "tmMatch": 1598,
+ "default": 29807,
+ "total": 31405
+ },
+ "targetTranslated": {
+ "tmMatch": 1690,
+ "default": 30918,
+ "total": 32608
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1598,
+ "default": 29807,
+ "total": 31405
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025347,
+ "username": "Imothep12",
+ "fullName": "Imothep12",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2874e7a09ede048e240ddb883db8bc6b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 7,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984219,
+ "username": "James100",
+ "fullName": "James100",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984219/medium/170c2a833d512d43190723fab37cb527.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1226
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "my",
+ "name": "Burmese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 527
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 525,
+ "total": 527
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 692,
+ "total": 693
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 525,
+ "total": 527
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 11062,
- "target": 11096,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942589",
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 699
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 699,
+ "total": 699
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1794,
+ "total": 1794
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 699,
+ "total": 699
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14998947,
+ "username": "JohanZwaan",
+ "fullName": "JohanZwaan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/059ccba4dec87bf92777b65c96d4eea5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15004413,
+ "username": "Judzovka",
+ "fullName": "Judzovka",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/96db3d146f56e353c11734a72926390d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15031693,
+ "username": "KIP_KIP",
+ "fullName": "KIP_KIP",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/940744a530616fa21717679e4178557d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4171
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4171
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 4150,
+ "total": 4171
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 4118,
+ "total": 4138
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 788,
+ "total": 793
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 4150,
+ "total": 4171
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999655,
+ "username": "Kevster",
+ "fullName": "Kevster",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9d6dba77a98f5e2d3115cbf8f877f3c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 135,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 140,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 80,
+ "total": 92
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 135,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687376,
+ "username": "KlmnZ",
+ "fullName": "KlmnZ",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e91a8df155651d6b2439ba7bbdf7a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 142,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 97,
+ "total": 97
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 142,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033811,
+ "username": "Lubiab19",
+ "fullName": "Lubiab19",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85f5f55b79e8f44bf36ebd75a3883092?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 23
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-IN",
+ "name": "Urdu (India)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 23
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005335,
+ "username": "Mamorim",
+ "fullName": "Mamorim",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/f82ada829f5ae687a76827cd7b41f4ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 480,
+ "default": 3014,
+ "total": 3494
+ },
+ "targetTranslated": {
+ "tmMatch": 545,
+ "default": 3254,
+ "total": 3799
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2617
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14942589,
"username": "Marcus_Aureliee",
"fullName": "Marcus_Aureliee",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942589/medium/b4c7f32eef26b3a02fb112cd161792fd.jpg",
- "joined": "2021-09-29 00:42:33"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 9177,
- "target": 14799,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957177",
- "username": "joeurassa",
- "fullName": "joeurassa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957177/medium/08012a4e9504cbd69401e4ef97702ca2.jpeg",
- "joined": "2021-10-10 11:00:56"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 9042,
- "target": 9017,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12804952",
- "username": "imgelu",
- "fullName": "Gelu Ungur (imgelu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12804952/medium/59d5d165d5b422c57908e7797d3b83ee.jpg",
- "joined": "2021-10-30 04:24:32"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 8530,
- "target": 9141,
- "approved": 0,
- "voted": 1548,
- "positiveVotes": 119,
- "negativeVotes": 411,
- "winning": 0
- },
- {
- "user": {
- "id": "14633448",
- "username": "ilrado",
- "fullName": "Matteo Radice (ilrado)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633448/medium/00e36a91231d5f6980f4ea96c1f24ab9.jpg",
- "joined": "2021-02-20 15:35:40"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 8188,
- "target": 8229,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13490273",
- "username": "Cmml",
- "fullName": "Богдана Вознюк (Cmml)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13490273/medium/6492f5b552f926f396b1c2e28c8671d1.jpg",
- "joined": "2021-10-12 07:04:29"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 6929,
- "target": 6928,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915329",
+ "preTranslated": 0,
+ "totalCosts": 6967
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6967
+ },
+ "translated": {
+ "tmMatch": 101,
+ "default": 6866,
+ "total": 6967
+ },
+ "targetTranslated": {
+ "tmMatch": 204,
+ "default": 10957,
+ "total": 11161
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 101,
+ "default": 6866,
+ "total": 6967
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915329,
"username": "Mariam163",
"fullName": "Mariam163",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14915329/medium/504f7acd4e8cb7ee70fbe35240bed705.jpg",
- "joined": "2021-09-09 08:12:15"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 4475,
- "target": 4749,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 156
- },
- {
- "user": {
- "id": "15031693",
- "username": "KIP_KIP",
- "fullName": "KIP_KIP",
- "avatarUrl": "https://www.gravatar.com/avatar/940744a530616fa21717679e4178557d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 09:47:51"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 4171,
- "target": 4138,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999231",
- "username": "Slovak01",
- "fullName": "Slovak01",
- "avatarUrl": "https://www.gravatar.com/avatar/b73531365dc50a892ce2f96cdc22e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 11:42:31"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 3804,
- "target": 2969,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14514124",
- "username": "ViktorOn",
- "fullName": "Vik (ViktorOn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514124/medium/070d8d1854a62bf318b2dcb1a02052b9.jpeg",
- "joined": "2021-05-13 17:24:52"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3271,
- "target": 2767,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982689",
- "username": "Sioux",
- "fullName": "Timothee Manh (Sioux)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982689/medium/fdc76838236e97df852a1fc98077f7d7.jpg",
- "joined": "2021-11-03 06:24:14"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 2986,
- "target": 3333,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14179845",
- "username": "FroilanM",
- "fullName": "FroilanM",
- "avatarUrl": "https://www.gravatar.com/avatar/ff8c78e2a23bd56fe26dede8086f2ede?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 03:15:58"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2879,
- "target": 3178,
- "approved": 7013,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2803
- },
- {
- "user": {
- "id": "14395884",
- "username": "Frodo821",
- "fullName": "frodo821 (Frodo821)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395884/medium/be6488d24fd9f5ff7ac7d461e6cd6758.jpeg",
- "joined": "2021-10-05 18:15:09"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2504,
- "target": 6529,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15012463",
- "username": "wanna_bee",
- "fullName": "wanna_bee",
- "avatarUrl": "https://www.gravatar.com/avatar/1c94006ffc800b682bcec23252528cdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 19:24:57"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2362,
- "target": 2127,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14553216",
- "username": "rielychen",
- "fullName": "Riely (rielychen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/2fd387175612fea1ecb0db49b0178419.png",
- "joined": "2021-01-13 01:04:21"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2278,
- "target": 3574,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 114,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14984177",
- "username": "yangxiaoyang",
- "fullName": "yangxiaoyang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984177/medium/b47ea275e28b376850b3ee05c4f709e3.jpg",
- "joined": "2021-10-31 11:56:15"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 2207,
- "target": 1667,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028671",
- "username": "folo2010",
- "fullName": "Vladimir Alexandrovich (folo2010)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028671/medium/ba01b8798dfc582c1878e173533aeae3.jpg",
- "joined": "2021-11-24 01:47:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2005,
- "target": 1678,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987791",
- "username": "xefert",
- "fullName": "xefert",
- "avatarUrl": "https://www.gravatar.com/avatar/6a068cdf2e1768eeb6467c8ff06582d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 17:43:35"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1978,
- "target": 2345,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952363",
- "username": "ensingerphilipp",
- "fullName": "Philipp Ensinger (ensingerphilipp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952363/medium/491e25bf6c69040369e342c3b1d12249.jpeg",
- "joined": "2021-10-06 10:21:56"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1904,
- "target": 1814,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 9,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14657804",
- "username": "jhonnyvianello",
- "fullName": "jhonnyvianello",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg",
- "joined": "2021-03-07 19:07:27"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1794,
- "target": 1582,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 40,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14681570",
+ "preTranslated": 0,
+ "totalCosts": 4441
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4441
+ },
+ "translated": {
+ "tmMatch": 141,
+ "default": 4300,
+ "total": 4441
+ },
+ "targetTranslated": {
+ "tmMatch": 141,
+ "default": 4558,
+ "total": 4699
+ },
+ "translatedByMt": {
+ "tmMatch": 38,
+ "default": 3,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 141,
+ "default": 4300,
+ "total": 4441
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996863,
+ "username": "Mighuma",
+ "fullName": "Mighuma",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2ea5f2f5aaf790e05a752c111f1dc306?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 230
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 230
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 226,
+ "total": 230
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 247,
+ "total": 253
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 103,
+ "total": 107
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 226,
+ "total": 230
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14569472,
+ "username": "NH4HCO3",
+ "fullName": "NH4HCO3",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569472/medium/fe8c93ec393c72040d3d294ff046f04d.gif",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 15,
+ "default": 54,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 24,
+ "default": 105,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 15,
+ "default": 54,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992833,
+ "username": "Nommie",
+ "fullName": "Nommie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6eadf26d494174c45ea18d5af36b6f66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 8,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 7,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 8,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999027,
+ "username": "Oetomo",
+ "fullName": "Oetomo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d4f8b6842ce7edb993915c0d6ccf2752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 41,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002443,
+ "username": "Pamelaocampo444",
+ "fullName": "Pamelaocampo444",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dd6cbc98230ea745d12905b0e8048af1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 66,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 66,
+ "total": 71
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 66,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992815,
+ "username": "Radiovolna86",
+ "fullName": "Radiovolna86",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d87b568efadaff6a07b43bb2b191bf80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 126,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 108,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 126,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987479,
+ "username": "Rosina70",
+ "fullName": "Rosina70",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/03661309d28016f48fde01e40b661d38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 127
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 106,
+ "total": 127
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 109,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 106,
+ "total": 127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989943,
+ "username": "Saph",
+ "fullName": "Saph",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/85790b7e21d231372b65133fa7124467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 801
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 801
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 787,
+ "total": 801
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 846,
+ "total": 860
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 787,
+ "total": 801
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999017,
+ "username": "Stasha",
+ "fullName": "Stasha",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999017/medium/6ada1c7859066549d278be64d778b2fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025455,
+ "username": "Taha_Yasu",
+ "fullName": "Taha_Yasu",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7703f7a0f8868bfd33e1666be3f6f50f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 67,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 55,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 67,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14953547,
+ "username": "Tostaito",
+ "fullName": "Tostaito",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/dfc450105a871dc30b6dd17a3ec27848?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 537
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 537
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 537,
+ "total": 537
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 591,
+ "total": 591
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 537,
+ "total": 537
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025653,
+ "username": "TsubTsub",
+ "fullName": "TsubTsub",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e4ae10f8e06992d98372770f0b7bf81c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 373
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 373
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 368,
+ "total": 373
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 914,
+ "total": 933
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 174,
+ "total": 176
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 368,
+ "total": 373
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036511,
+ "username": "Turf_MAsk",
+ "fullName": "Turf_MAsk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b7555023debdbe0034f29cb45eb7ab9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 8,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681570,
"username": "Val21",
"fullName": "Val21",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/a751b71711e0d1fb7c0ff58e27f21750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 08:07:57"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 1721,
- "target": 1876,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14866604",
- "username": "yeremiaryangunadi",
- "fullName": "Yeremia Ryan Gunadi (yeremiaryangunadi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png",
- "joined": "2021-08-05 04:15:14"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1586,
- "target": 1536,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028385",
- "username": "oriolbcn",
- "fullName": "oriolbcn",
- "avatarUrl": "https://www.gravatar.com/avatar/c832775578714077b8e76c46d57276f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 19:02:25"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 1504,
- "target": 1726,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969167",
- "username": "Chenguang",
- "fullName": "Guang Chen (Chenguang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969167/medium/836403c60f29409ef8ca2acc585c8d61.jpeg",
- "joined": "2021-10-19 22:09:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1485,
- "target": 2345,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687676",
- "username": "joseachemazzei",
- "fullName": "José A. Mazzei (joseachemazzei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg",
- "joined": "2021-03-28 21:04:49"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1415,
- "target": 1789,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023979",
+ "preTranslated": 0,
+ "totalCosts": 1721
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1721
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 1691,
+ "total": 1721
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 1848,
+ "total": 1876
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 1691,
+ "total": 1721
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996737,
+ "username": "_FROGGIE__",
+ "fullName": "_FROGGIE__",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c57a9394def752f461ff5f3b9d8dfad4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035241,
+ "username": "agtzc10",
+ "fullName": "agtzc10",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8bd75e95370c77aa422083670992d2dd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 187
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 187
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 213,
+ "total": 213
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 187,
+ "total": 187
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995227,
+ "username": "asche",
+ "fullName": "asche",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aecd054f094f92603e24b6bffbf7e0c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 261
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 261
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 233,
+ "total": 261
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 210,
+ "total": 239
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 233,
+ "total": 261
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020371,
+ "username": "danielsotog",
+ "fullName": "danielsotog",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0822f1dc9f3dec8545f759f0b092229c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 439
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 439
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 428,
+ "total": 439
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 496,
+ "total": 507
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 428,
+ "total": 439
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989955,
+ "username": "darya.vrk",
+ "fullName": "darya.vrk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6a6feaaab6afc3a2e49327308d76a3a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 215
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 215
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 183,
+ "total": 215
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 155,
+ "total": 182
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 183,
+ "total": 215
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021479,
+ "username": "dcecil",
+ "fullName": "dcecil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/20e2ccb1fb13cd9dbf3fc8d218747a99?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15032539,
+ "username": "devsapariya94",
+ "fullName": "devsapariya94",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9f678368bc574de9cf675e8011f18e6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 360
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 360
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 360,
+ "total": 360
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 624,
+ "total": 624
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 360,
+ "total": 360
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996091,
+ "username": "divas7",
+ "fullName": "divas7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c5bea20c781d457353d5dfe7a901c341?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 817
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 817
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 811,
+ "total": 817
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 932,
+ "total": 938
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 86,
+ "total": 86
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 811,
+ "total": 817
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12892013,
+ "username": "donlaiq",
+ "fullName": "donlaiq",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12892013/medium/3ab82b955b65e5eac6d5c108533c38a7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030445,
+ "username": "eth31",
+ "fullName": "eth31",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/309c2f8ce89e7c67718e3ba5ef91bef8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14988691,
+ "username": "gargavar",
+ "fullName": "gargavar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d2451670ce34a7f8ed1646923c0a6be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 423
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 423
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 417,
+ "total": 423
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 401,
+ "total": 409
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 417,
+ "total": 423
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035371,
+ "username": "grompeys",
+ "fullName": "grompeys",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f4f2d5d11b3dacbc96dd2fcc105a2389?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 147
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 147
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 186,
+ "total": 189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 145,
+ "total": 147
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991283,
+ "username": "imexcalibur",
+ "fullName": "imexcalibur",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/04256138ca3ce9021a2323705e83f77e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1011
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1011
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 971,
+ "total": 1011
+ },
+ "targetTranslated": {
+ "tmMatch": 60,
+ "default": 1597,
+ "total": 1657
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 971,
+ "total": 1011
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028313,
+ "username": "jafuda",
+ "fullName": "jafuda",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bb3ad2846c9c73de07ab3c8e009a8d1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779018,
+ "username": "jaskoeth",
+ "fullName": "jaskoeth",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8985ed0bd166da1b98c9c957829d0c24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020181,
+ "username": "jcruzrivera",
+ "fullName": "jcruzrivera",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71150e449e40c218bc198b8d26dba0b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 56,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 65,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 56,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14657804,
+ "username": "jhonnyvianello",
+ "fullName": "jhonnyvianello",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1794
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1794
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 1783,
+ "total": 1794
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 1565,
+ "total": 1582
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 587,
+ "total": 590
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 1783,
+ "total": 1794
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13343841,
+ "username": "jrthsr700tmax",
+ "fullName": "jrthsr700tmax",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/271f36fa0507edc4ae9d7108a43bf1fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 214
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 214
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 205,
+ "total": 214
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 335,
+ "total": 353
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 205,
+ "total": 214
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14993957,
+ "username": "julijuli_69",
+ "fullName": "julijuli_69",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3a56d24884e4c516c849c108db44fd35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 92
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 92
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 68,
+ "total": 92
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 64,
+ "total": 82
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 68,
+ "total": 92
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990795,
+ "username": "kronic",
+ "fullName": "kronic",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990795/medium/f3e16163f42dd477b6cb6b1bc541bbff.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 202,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 243,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 46,
+ "total": 48
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 202,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003781,
+ "username": "krysia0196",
+ "fullName": "krysia0196",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/169c092691e6bf76213b324770ecbdfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 283,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 303,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984959,
+ "username": "lesnov",
+ "fullName": "lesnov",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7b606916d76de291f823b051e96c00ec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 174
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 174
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 174,
+ "total": 174
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 160,
+ "total": 160
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 174,
+ "total": 174
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996569,
+ "username": "lib",
+ "fullName": "lib",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e6b38eae96bfc3dadae468e552ed75bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 135
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 135
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 139,
+ "total": 139
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14956337,
+ "username": "lidianycs",
+ "fullName": "lidianycs",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956337/medium/918c6540264cbd711a5a6616ebb2c3ee.jpg",
+ "preTranslated": 0,
+ "totalCosts": 295
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 295
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 285,
+ "total": 295
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 327,
+ "total": 341
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 213,
+ "total": 215
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 285,
+ "total": 295
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002239,
+ "username": "maedrag0vich_",
+ "fullName": "maedrag0vich_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/80a8507728d5863c9be644372810a645?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 487
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 487
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 487,
+ "total": 487
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 421,
+ "total": 421
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 487,
+ "total": 487
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14637016,
+ "username": "maole",
+ "fullName": "maole",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/64c0a27d29a81099cacb505ba3e954b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 43,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023979,
"username": "moirauche",
"fullName": "moirauche",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/10382b9429b35bf72d096b02d923c250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 09:51:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1389,
- "target": 1474,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984219",
- "username": "James100",
- "fullName": "James100",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984219/medium/170c2a833d512d43190723fab37cb527.jpg",
- "joined": "2021-10-31 12:37:03"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "my",
- "name": "Burmese"
- }
- ],
- "translated": 1285,
- "target": 2582,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999587",
- "username": "muratgozel",
- "fullName": "Murat Gözel (muratgozel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999587/medium/e65a2434011d9519ff52ade683b53b8c.jpeg",
- "joined": "2021-11-11 17:15:04"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1176,
- "target": 767,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997595",
+ "preTranslated": 0,
+ "totalCosts": 1389
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1389
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 1386,
+ "total": 1389
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 1471,
+ "total": 1474
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 452,
+ "total": 452
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 1386,
+ "total": 1389
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14580234,
+ "username": "mouneer",
+ "fullName": "mouneer",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/003a97f237eb7d3e3a88c2ef122062ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 792
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 792
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 784,
+ "total": 792
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 829,
+ "total": 843
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 48,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 784,
+ "total": 792
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028277,
+ "username": "mowaii",
+ "fullName": "mowaii",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/01a6398959b9c93dcc3ed0f406eb857a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035233,
+ "username": "neoneo",
+ "fullName": "neoneo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d55b6ff26807dd7a1471fe28dfe8faf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 321
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 321
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 321,
+ "total": 321
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 305,
+ "total": 305
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 321,
+ "total": 321
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13583128,
+ "username": "nikaose",
+ "fullName": "nikaose",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8797df9c6783cbd1053c886e2916af38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 30,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 27,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 30,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028385,
+ "username": "oriolbcn",
+ "fullName": "oriolbcn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c832775578714077b8e76c46d57276f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1667
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1667
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 1642,
+ "total": 1667
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 1887,
+ "total": 1914
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 1642,
+ "total": 1667
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978565,
+ "username": "paulDE",
+ "fullName": "paulDE",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e610595f1678b9c8d02ad759c0944182?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 466
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 466
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 410,
+ "total": 466
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 399,
+ "total": 448
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 410,
+ "total": 466
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12817692,
+ "username": "poltoray",
+ "fullName": "poltoray",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/588c81f1c401f3512b1e7a4466e68485?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003105,
+ "username": "pouria.mirzaei",
+ "fullName": "pouria.mirzaei",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e766286d4eb36f973ca935e3acb9c23b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 275
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 275
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 268,
+ "total": 275
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 363,
+ "total": 372
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 268,
+ "total": 275
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033497,
+ "username": "programonauta",
+ "fullName": "programonauta",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/358ba475fad48e1783afe977706d1c7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003267,
+ "username": "r_victory",
+ "fullName": "r_victory",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003267/medium/4137644ea8974a0c3d2a8c73b189d7c5.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030189,
+ "username": "seshasri",
+ "fullName": "seshasri",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bf6eab15bd0d4c2712b91ea83172f980?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15004157,
+ "username": "seventeenfive36",
+ "fullName": "seventeenfive36",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f61cd2c2dfe9ab7fb8ff014cfcf64596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 803
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 803
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 775,
+ "total": 803
+ },
+ "targetTranslated": {
+ "tmMatch": 29,
+ "default": 701,
+ "total": 730
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 567,
+ "total": 580
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 775,
+ "total": 803
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036355,
+ "username": "sgamb",
+ "fullName": "sgamb",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2bd38a1873d67e93283f57eed1690248?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 90,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034331,
+ "username": "sjadrzvani1998",
+ "fullName": "sjadrzvani1998",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f5eb76929dad34e5283b059b1a231d88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15027127,
+ "username": "sunnyyyc",
+ "fullName": "sunnyyyc",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e4592835622152ea1bb4e87ca028bed8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 20,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 13,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023365,
+ "username": "tomworxs",
+ "fullName": "tomworxs",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d58e0868ecaa2277d865042e97a961b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 462
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 462
+ },
+ "translated": {
+ "tmMatch": 96,
+ "default": 366,
+ "total": 462
+ },
+ "targetTranslated": {
+ "tmMatch": 142,
+ "default": 374,
+ "total": 516
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 96,
+ "default": 366,
+ "total": 462
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987673,
+ "username": "vlunaram",
+ "fullName": "vlunaram",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d436fcb22ecfe2eaf1f7b3ccfb530cd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15012463,
+ "username": "wanna_bee",
+ "fullName": "wanna_bee",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c94006ffc800b682bcec23252528cdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2362
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 2327,
+ "total": 2362
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 2085,
+ "total": 2127
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 2327,
+ "total": 2362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15025129,
+ "username": "willianpaixao",
+ "fullName": "willianpaixao",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c3fa9a3959a870790d96b08e7fbce05?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 44,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 49,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 44,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987791,
+ "username": "xefert",
+ "fullName": "xefert",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6a068cdf2e1768eeb6467c8ff06582d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1978
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1978
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 1961,
+ "total": 1978
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 2330,
+ "total": 2345
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 1919,
+ "total": 1925
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 1961,
+ "total": 1978
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029193,
+ "username": "xtrzy",
+ "fullName": "xtrzy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/18b91a7c8dc214ade6b3d23353b8cea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984177,
+ "username": "yangxiaoyang",
+ "fullName": "yangxiaoyang",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984177/medium/b47ea275e28b376850b3ee05c4f709e3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1643
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1643
+ },
+ "translated": {
+ "tmMatch": 120,
+ "default": 1523,
+ "total": 1643
+ },
+ "targetTranslated": {
+ "tmMatch": 128,
+ "default": 1121,
+ "total": 1249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 120,
+ "default": 1523,
+ "total": 1643
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036539,
+ "username": "0xAMarshe",
+ "fullName": "AXMarshe (0xAMarshe)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15036539/medium/4904375572309d545a53e955b5e60b1a.png",
+ "preTranslated": 0,
+ "totalCosts": 220
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 220
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 198,
+ "total": 220
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 190,
+ "total": 209
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 198,
+ "total": 220
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999231,
+ "username": "Slovak01",
+ "fullName": "Aco_Diskusija (Slovak01)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/b73531365dc50a892ce2f96cdc22e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 1277,
+ "default": 2527,
+ "total": 3804
+ },
+ "targetTranslated": {
+ "tmMatch": 818,
+ "default": 2150,
+ "total": 2968
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13151214,
+ "username": "Technolex",
+ "fullName": "Aco_Technolex (Technolex)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/791ecd38a944b240bea06694828e6dd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 118,
+ "default": 462,
+ "total": 580
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 437,
+ "total": 547
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1007
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033057,
+ "username": "reiko1991",
+ "fullName": "Alessandra P. (reiko1991)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033057/medium/4a20c91eda2b109e3c3f3f12274cbb7c.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 33,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 31,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 33,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003205,
+ "username": "fernandososxd4",
+ "fullName": "Alex Flores (fernandososxd4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003205/medium/b1db938973973fdb74103eab0f2ae3a7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034495,
+ "username": "alexsans9",
+ "fullName": "Alexander Muñoz Avella (alexsans9)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034495/medium/29568fb8b009000bcf827c64c4336379.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 58,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 73,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 58,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13071224,
+ "username": "akkiris",
+ "fullName": "Ali Kaan Kiriş (akkiris)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13071224/medium/70bc840133ae0f0c69d172f5108d06f0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999609,
+ "username": "metlyakova",
+ "fullName": "Alisa Metlyakova (metlyakova)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999609/medium/2447d5841fbb956f3d44eea295f09b65.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 44,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14555882,
+ "username": "ElAmir",
+ "fullName": "Amir Reza (ElAmir)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/edcaf24c34ef3506613bad9099389fc6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 539
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 539
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 493,
+ "total": 539
+ },
+ "targetTranslated": {
+ "tmMatch": 51,
+ "default": 579,
+ "total": 630
+ },
+ "translatedByMt": {
+ "tmMatch": 35,
+ "default": 0,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 493,
+ "total": 539
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989997,
+ "username": "Sirlupinwatson1",
+ "fullName": "Armand Brunelle (Sirlupinwatson1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989997/medium/58dac31cb4d977a29d3caf7d37e7cd45.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 562
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 562
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 561,
+ "total": 562
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 673,
+ "total": 676
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 66,
+ "total": 66
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 561,
+ "total": 562
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000323,
+ "username": "aryoharris9a",
+ "fullName": "Aryo Haris Wirakusuma (aryoharris9a)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000323/medium/fffd3847d1ccffc61f4eeea7cab07f36.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 28,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 34,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 28,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14340146,
+ "username": "axelrindle",
+ "fullName": "Axel Rindle (axelrindle)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/700121f3ea3d87e17a834e8b36fa2657?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 38,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 31,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 18,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 38,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996887,
+ "username": "berksukahramn",
+ "fullName": "Berksu Kahraman (berksukahramn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996887/medium/e27fe47548643527bf782f6881c5318b.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14978829,
+ "username": "skarabhaa",
+ "fullName": "Bhaskar Kashyap (skarabhaa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978829/medium/3663a98d785554954dfd7008b7447181.jpg",
+ "preTranslated": 0,
+ "totalCosts": 721
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 721
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 703,
+ "total": 721
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 1174,
+ "total": 1210
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 703,
+ "total": 721
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029629,
+ "username": "Pirozok",
+ "fullName": "Bohdan Gluschak (Pirozok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029629/medium/55883d9f15e025e45decd9434a3a1c01.png",
+ "preTranslated": 0,
+ "totalCosts": 144
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 144
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 97,
+ "total": 144
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 87,
+ "total": 125
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 97,
+ "total": 144
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14997595,
"username": "decentra1ized",
"fullName": "Chaerin Kim (decentra1ized)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14997595/medium/6b4e74c0fca0d1518f52a865ceec865a.jpeg",
- "joined": "2021-11-15 02:10:49"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1142
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 1136,
+ "total": 1142
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 868,
+ "total": 875
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 1136,
+ "total": 1142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989121,
+ "username": "sylvianvanbemmel",
+ "fullName": "Chyllvian (sylvianvanbemmel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989121/medium/1507b0b8f93626fb0c0c36cbc12b378d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 560
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 560
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 538,
+ "total": 560
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 521,
+ "total": 539
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 529,
+ "total": 532
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 538,
+ "total": 560
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035449,
+ "username": "Dan_Landry",
+ "fullName": "Dan Landry (Dan_Landry)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035449/medium/81bf040c3f1fbfe99386b2f003522680.png",
+ "preTranslated": 0,
+ "totalCosts": 195
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 195
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 147,
+ "total": 195
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 171,
+ "total": 220
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 147,
+ "total": 195
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14581548,
+ "username": "danielpg2106",
+ "fullName": "Daniel Pedraza G (danielpg2106)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581548/medium/15cfd2d3d8015efbcfbc20c47deeb5be.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 477
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 477
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 477,
+ "total": 477
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 504,
+ "total": 504
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 441,
+ "total": 441
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 477,
+ "total": 477
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002741,
+ "username": "dariusheslamipor",
+ "fullName": "Dariush Eslami (dariusheslamipor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002741/medium/368ee2e7888434a922e5781aa2c194bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 475
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 475
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 472,
+ "total": 475
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 574,
+ "total": 581
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 472,
+ "total": 475
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13559470,
+ "username": "DavidCai1993",
+ "fullName": "David Cai (DavidCai1993)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559470/medium/1e2b0d1a56fd808a6ae2f7ac6bc45075.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005325,
+ "username": "dmrdemircioglu08",
+ "fullName": "Demir Demircioglu (dmrdemircioglu08)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005325/medium/07bdd1addeecac3fa5c9d1c4469fcdd3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 0,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990899,
+ "username": "juan.baranowa",
+ "fullName": "Diego Baranowski (juan.baranowa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990899/medium/c7ef51465c9acf0f30c989ec42d6d5d2.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 12,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 16,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 12,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992673,
+ "username": "dmars300",
+ "fullName": "Diego Mares (dmars300)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992673/medium/4add4365ba4bd588ffc2988d4d7966fa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 0,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992061,
+ "username": "Divanny",
+ "fullName": "Divanny",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992061/medium/932dae148005c8671a50691ac97b7ddc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 362
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 362
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 362,
+ "total": 362
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 403,
+ "total": 403
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 275,
+ "total": 275
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 362,
+ "total": 362
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861994,
+ "username": "DougPimentel",
+ "fullName": "Douglas Pimentel (DougPimentel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2bb137811df634f2bebf5519f13d0313?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 97
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 97
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 95,
+ "total": 97
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 114,
+ "total": 116
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 95,
+ "total": 97
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030799,
+ "username": "DushicaU",
+ "fullName": "Dusica Udovicki (DushicaU)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030799/medium/a5b101b66042af522070c34cf65d7805.jpg",
+ "preTranslated": 0,
+ "totalCosts": 244
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 244
+ },
+ "translated": {
+ "tmMatch": 47,
+ "default": 197,
+ "total": 244
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 193,
+ "total": 240
+ },
+ "translatedByMt": {
+ "tmMatch": 36,
+ "default": 0,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 47,
+ "default": 197,
+ "total": 244
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13842283,
+ "username": "Dzenan",
+ "fullName": "Dženan (Dzenan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13842283/medium/bbfb9ef4136417577f368ab059d20644.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 1,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 1,
+ "total": 8
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 1,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13897487,
+ "username": "ethdotorg",
+ "fullName": "Ethereum.org Team (ethdotorg)",
+ "userRole": "Owner",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13897487/medium/246e50d7e9ccde07088ed892b07a0efd.png",
+ "preTranslated": 932,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 33,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 1142,
- "target": 875,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829178",
- "username": "chenrui5199",
- "fullName": "陈蕊 (chenrui5199)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/e6159a10b18799b3820a73a86a3d8780.png",
- "joined": "2021-07-06 08:41:18"
- },
- "languages": [
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 21,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1123,
- "target": 1671,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14959239",
- "username": "kevinalexander",
- "fullName": "Kevin Alexander (kevinalexander)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959239/medium/b99ff2880943456ec68996360243e73e.jpeg",
- "joined": "2021-10-30 20:27:08"
- },
- "languages": [
+ "language": {
+ "id": "az",
+ "name": "Azerbaijani",
+ "tmSavings": 0,
+ "preTranslate": 53,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1109,
- "target": 1345,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14939633",
- "username": "nellikaminska1967",
- "fullName": "Неля Камінська (nellikaminska1967)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939633/medium/5533147ee1a8ba8dd395e949d74ead6e.png",
- "joined": "2021-11-08 08:43:56"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1027,
- "target": 891,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023705",
- "username": "UmuTR42",
- "fullName": "Ümit Rahim MUTLU (UmuTR42)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023705/medium/74abbc96e311225d644210239912356c.png",
- "joined": "2021-11-20 04:56:52"
- },
- "languages": [
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 11,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 1014,
- "target": 913,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991283",
- "username": "imexcalibur",
- "fullName": "imexcalibur",
- "avatarUrl": "https://www.gravatar.com/avatar/04256138ca3ce9021a2323705e83f77e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 09:37:30"
- },
- "languages": [
+ "language": {
+ "id": "my",
+ "name": "Burmese",
+ "tmSavings": 0,
+ "preTranslate": 35,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1011,
- "target": 1657,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027079",
- "username": "wmduuh",
- "fullName": "José Eduardo (wmduuh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027079/medium/827d9b374220d233a59c4a1f2ffb1452.jpg",
- "joined": "2021-11-22 23:48:01"
- },
- "languages": [
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 11,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1009,
- "target": 1085,
- "approved": 0,
- "voted": 31,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978829",
- "username": "skarabhaa",
- "fullName": "Bhaskar Kashyap (skarabhaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978829/medium/3663a98d785554954dfd7008b7447181.jpg",
- "joined": "2021-10-27 22:11:32"
- },
- "languages": [
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 32,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 984,
- "target": 1599,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026857",
- "username": "longtran02",
- "fullName": "Long Tran (longtran02)",
- "avatarUrl": "https://www.gravatar.com/avatar/7e42114d71608ad394a0b202d3abfb1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-22 17:36:29"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 32,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 970,
- "target": 1290,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973077",
- "username": "arin32",
- "fullName": "arin32",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973077/medium/bd7c4f92ab2c1f86489508b41262fdad.png",
- "joined": "2021-10-22 22:26:41"
- },
- "languages": [
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 16,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 969,
- "target": 291,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15019927",
- "username": "Sewon",
- "fullName": "Sewon Park (Sewon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019927/medium/0ebf5c870c1c120a265fccba1a0d9d9a.png",
- "joined": "2021-11-17 08:47:39"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 925,
- "target": 703,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15019903",
- "username": "naaa187",
- "fullName": "naaa187",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019903/medium/eb71b3cb69bad0676610d45b7c805b46.png",
- "joined": "2021-11-24 06:20:35"
- },
- "languages": [
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 880,
- "target": 639,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982803",
- "username": "ahmadkzbar",
- "fullName": "Ahmad Kazbar (ahmadkzbar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982803/medium/9630fb2eb58f6274d257bfc1c287be61.jpeg",
- "joined": "2021-10-30 13:34:11"
- },
- "languages": [
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 11,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 877,
- "target": 798,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "15005635",
- "username": "michaelast",
- "fullName": "michaelast",
- "avatarUrl": "https://www.gravatar.com/avatar/9885ded5d890367e60df4ea1479b8104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 11:23:40"
- },
- "languages": [
+ "language": {
+ "id": "et",
+ "name": "Estonian",
+ "tmSavings": 0,
+ "preTranslate": 8,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 821,
- "target": 907,
- "approved": 1044,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 806
- },
- {
- "user": {
- "id": "14996091",
- "username": "divas7",
- "fullName": "divas7",
- "avatarUrl": "https://www.gravatar.com/avatar/c5bea20c781d457353d5dfe7a901c341?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 06:14:18"
- },
- "languages": [
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 4,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 817,
- "target": 938,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004157",
- "username": "seventeenfive36",
- "fullName": "seventeenfive36",
- "avatarUrl": "https://www.gravatar.com/avatar/f61cd2c2dfe9ab7fb8ff014cfcf64596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 13:58:32"
- },
- "languages": [
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 803,
- "target": 730,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14989943",
- "username": "Saph",
- "fullName": "Saph",
- "avatarUrl": "https://www.gravatar.com/avatar/85790b7e21d231372b65133fa7124467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-04 08:57:17"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 31,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 801,
- "target": 860,
- "approved": 0,
- "voted": 24,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14580234",
- "username": "mouneer",
- "fullName": "mouneer",
- "avatarUrl": "https://www.gravatar.com/avatar/003a97f237eb7d3e3a88c2ef122062ef?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 15:48:51"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 24,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 792,
- "target": 843,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861756",
- "username": "RahayuRafika_12",
- "fullName": "Rahayu Rafikahwulan Sari (RahayuRafika_12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg",
- "joined": "2021-08-01 20:12:38"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 765,
- "target": 711,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914333",
- "username": "SamB",
- "fullName": "Samira Bourai (SamB)",
- "avatarUrl": "https://www.gravatar.com/avatar/2d0de1488d23af8d721dca29ccec7577?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-28 15:12:16"
- },
- "languages": [
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 756,
- "target": 717,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005293",
- "username": "Proofreader_PT",
- "fullName": "Proofreader_PT",
- "avatarUrl": "https://www.gravatar.com/avatar/5016dc5d64f6e86078cc0191822ffff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 06:36:27"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 20,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 748,
- "target": 819,
- "approved": 100,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14008271",
- "username": "comodoro",
- "fullName": "Vojtěch Drábek (comodoro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008271/medium/c7b5cf629f7c0a1a3c8be6944f69983e.png",
- "joined": "2019-10-09 08:41:38"
- },
- "languages": [
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 743,
- "target": 640,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031031",
- "username": "Ramonski88",
- "fullName": "Ramonski (Ramonski88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031031/medium/131fb2000b0b7fb9c5b1e66b48efc721.jpeg",
- "joined": "2021-11-25 20:41:02"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 32,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 699,
- "target": 943,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002975",
- "username": "Sabine.Goesker",
- "fullName": "Sabine Gösker (Sabine.Goesker)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002975/medium/c27bb77b234f3e4492a3880925ffa6f3.jpeg",
- "joined": "2021-11-14 09:12:47"
- },
- "languages": [
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 32,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 695,
- "target": 680,
- "approved": 0,
- "voted": 46,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15012031",
- "username": "TTG_VTM",
- "fullName": "TTG_VTM",
- "avatarUrl": "https://www.gravatar.com/avatar/02c6804ff53675aeacabacad44ff5d1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 18:57:37"
- },
- "languages": [
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 23,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 689,
- "target": 1017,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13651371",
- "username": "Pactera_Caiping",
- "fullName": "Pactera_Vietnamese_Proofreader (Pactera_Caiping)",
- "avatarUrl": "https://www.gravatar.com/avatar/3661624d771e84aa4f4d472588a5d823?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 06:16:35"
- },
- "languages": [
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 14,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 679,
- "target": 1003,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028647",
- "username": "hhkim0",
- "fullName": "Hanhui Kim (hhkim0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028647/medium/1ef77054a9896b40551efaac9878f218.png",
- "joined": "2021-11-24 01:21:02"
- },
- "languages": [
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 10,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 675,
- "target": 525,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937735",
- "username": "ilonaternovych",
- "fullName": "Ілона Тернович (ilonaternovych)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937735/medium/4121baba80985301f8e6d1ba5c829a6c.jpg",
- "joined": "2021-10-25 07:49:24"
- },
- "languages": [
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 20,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 675,
- "target": 610,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984193",
- "username": "Mourad820",
- "fullName": "Mourad Tajja (Mourad820)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984193/medium/4f7d92fc7cf31a84b0319c093942aa1c.jpg",
- "joined": "2021-10-31 12:19:45"
- },
- "languages": [
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 4,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 645,
- "target": 623,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029495",
- "username": "caceres.jose.fr",
- "fullName": "Jose Caceres (caceres.jose.fr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029495/medium/6cfbaec8bb35e6835abad73d00c81517.jpeg",
- "joined": "2021-11-24 13:59:37"
- },
- "languages": [
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 644,
- "target": 715,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967539",
- "username": "Dana_Oliinyk",
- "fullName": "Dana_Oliinyk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967539/medium/6c853b27ba244892f1f49a4e63ce06bf.jpg",
- "joined": "2021-10-23 11:52:11"
- },
- "languages": [
+ "language": {
+ "id": "ne-NP",
+ "name": "Nepali",
+ "tmSavings": 0,
+ "preTranslate": 5,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 639,
- "target": 546,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14943437",
- "username": "trungan1511",
- "fullName": "Nguyen An (trungan1511)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943437/medium/03d7b6c2f65c04c60b008a38a221cf5f.png",
- "joined": "2021-10-06 20:28:34"
- },
- "languages": [
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 17,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 614,
- "target": 953,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15019905",
- "username": "e06-tech",
- "fullName": "e06-tech",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019905/medium/8d5a2069e2825a02309a7da0b1e019bb.png",
- "joined": "2021-11-24 07:02:13"
- },
- "languages": [
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 10,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 598,
- "target": 539,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13151214",
- "username": "Technolex",
- "fullName": "Technolex",
- "avatarUrl": "https://www.gravatar.com/avatar/791ecd38a944b240bea06694828e6dd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 11:00:46"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 30,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 580,
- "target": 547,
- "approved": 1007,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 578
- },
- {
- "user": {
- "id": "14983201",
- "username": "longartdavid",
- "fullName": "heber longart (longartdavid)",
- "avatarUrl": "https://www.gravatar.com/avatar/050a2eebc902660c90b7272d1ee4390a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 22:53:11"
- },
- "languages": [
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 4,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 579,
- "target": 606,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "15005335",
- "username": "Mamorim",
- "fullName": "Mamorim",
- "avatarUrl": "https://www.gravatar.com/avatar/f82ada829f5ae687a76827cd7b41f4ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 07:11:52"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 30,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 572,
- "target": 604,
- "approved": 347,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14875990",
- "username": "guilhermevendramini",
- "fullName": "Guilherme Vendramini (guilhermevendramini)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875990/medium/6c42a855600f60124d4fbb49962d2226.jpeg",
- "joined": "2021-08-11 22:26:41"
- },
- "languages": [
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 27,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 568,
- "target": 622,
- "approved": 0,
- "voted": 156,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 24
- },
- {
- "user": {
- "id": "14989997",
- "username": "Sirlupinwatson1",
- "fullName": "Armand Brunelle (Sirlupinwatson1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989997/medium/58dac31cb4d977a29d3caf7d37e7cd45.jpeg",
- "joined": "2021-11-04 10:50:41"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 11,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 562,
- "target": 676,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14989121",
- "username": "sylvianvanbemmel",
- "fullName": "Chyllvian (sylvianvanbemmel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989121/medium/1507b0b8f93626fb0c0c36cbc12b378d.jpeg",
- "joined": "2021-11-03 15:54:07"
- },
- "languages": [
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 7,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 560,
- "target": 539,
- "approved": 0,
- "voted": 71,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968423",
- "username": "YuliiaBufan",
- "fullName": "YuliiaBufan",
- "avatarUrl": "https://www.gravatar.com/avatar/2764d7cdb4d94d3facb628364d1c2be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 06:23:27"
- },
- "languages": [
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 14,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 553,
- "target": 482,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 79,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856762",
- "username": "richardostrmn",
- "fullName": "richardostrmn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14856762/medium/8ba94b1cc2b169f34e314c11a0e7880b.jpeg",
- "joined": "2021-07-31 15:00:56"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 552,
- "target": 544,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996861",
- "username": "kaanmetu",
- "fullName": "Kaan Ataman (kaanmetu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/a93e7675448b5ea3eaa4485b70cea4ec.jpeg",
- "joined": "2021-11-10 20:25:32"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 551,
- "target": 499,
- "approved": 0,
- "voted": 16,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "15005017",
- "username": "catmalark",
- "fullName": "catmalark",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005017/medium/ebecfd5187d2eafcc7a249142442c7e1.png",
- "joined": "2021-11-16 01:59:45"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 549,
- "target": 498,
- "approved": 0,
- "voted": 43,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14357794",
- "username": "robertdosa",
- "fullName": "Robert Dosa (robertdosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png",
- "joined": "2020-07-27 14:12:54"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 548,
- "target": 522,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14555882",
- "username": "ElAmir",
- "fullName": "Amir Reza (ElAmir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/edcaf24c34ef3506613bad9099389fc6.jpg",
- "joined": "2020-12-30 03:39:19"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 539,
- "target": 630,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 59
- },
- {
- "user": {
- "id": "14953547",
- "username": "Tostaito",
- "fullName": "Tostaito",
- "avatarUrl": "https://www.gravatar.com/avatar/dfc450105a871dc30b6dd17a3ec27848?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 08:09:34"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 537,
- "target": 591,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 223
- },
- {
- "user": {
- "id": "15005475",
- "username": "TTG_MLY",
- "fullName": "TTG_MLY",
- "avatarUrl": "https://www.gravatar.com/avatar/d561292be8daa0a3d305dea33fed9465?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 09:03:08"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 527,
- "target": 542,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13981955",
- "username": "orzalaga",
- "fullName": "Julio César Velásquez Mejía (orzalaga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13981955/medium/dfd17ae7d8a17413f45733fb2c672a35.jpeg",
- "joined": "2021-11-06 00:51:46"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 519,
- "target": 609,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14810002",
- "username": "pettinarip",
- "fullName": "Pablo Pettinari (pettinarip)",
- "avatarUrl": "https://www.gravatar.com/avatar/ba86a933c7e919a2b12f9a431e54fd9a?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 13:58:42"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 509,
- "target": 598,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 76
- },
- {
- "user": {
- "id": "15012107",
- "username": "TTG_FR",
- "fullName": "TTG_FR",
- "avatarUrl": "https://www.gravatar.com/avatar/02036de3a59a96080761f7fff486db8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 19:02:36"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 508,
- "target": 631,
- "approved": 763,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 508
- },
- {
- "user": {
- "id": "15002239",
- "username": "maedrag0vich_",
- "fullName": "maedrag0vich_",
- "avatarUrl": "https://www.gravatar.com/avatar/80a8507728d5863c9be644372810a645?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 15:35:38"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 487,
- "target": 421,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002255",
- "username": "AsharFR",
- "fullName": "AsharFR",
- "avatarUrl": "https://www.gravatar.com/avatar/dffad03f7c651a72565b53bef30adba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 15:48:44"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 485,
- "target": 555,
- "approved": 0,
- "voted": 55,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837806",
- "username": "yisosd",
- "fullName": "iso Y (yisosd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837806/medium/a024dfd35587ad67921934a9d6c6410e.png",
- "joined": "2021-07-13 07:50:49"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 19,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 484,
- "target": 705,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13128900",
- "username": "YannAries",
- "fullName": "Y@nnick (YannAries)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13128900/medium/7d1e00ebe7aca553dd475b2b888e769f.jpeg",
- "joined": "2021-11-16 15:59:52"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 27,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 477,
- "target": 519,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581548",
- "username": "danielpg2106",
- "fullName": "Daniel Pedraza G (danielpg2106)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581548/medium/15cfd2d3d8015efbcfbc20c47deeb5be.jpeg",
- "joined": "2021-01-17 15:29:29"
- },
- "languages": [
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 87,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 477,
- "target": 504,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 283
- },
- {
- "user": {
- "id": "15002741",
- "username": "dariusheslamipor",
- "fullName": "Dariush Eslami (dariusheslamipor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002741/medium/368ee2e7888434a922e5781aa2c194bf.jpeg",
- "joined": "2021-11-14 04:44:37"
- },
- "languages": [
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 16,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 475,
- "target": 581,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12358726",
- "username": "cardex",
- "fullName": "Selim Unver (cardex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12358726/medium/b3cea9e8e6ca4b84de7d0b0d3f071827.jpg",
- "joined": "2021-10-30 18:37:06"
- },
- "languages": [
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 472,
- "target": 368,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14978565",
- "username": "paulDE",
- "fullName": "paulDE",
- "avatarUrl": "https://www.gravatar.com/avatar/e610595f1678b9c8d02ad759c0944182?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-27 16:11:25"
- },
- "languages": [
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 466,
- "target": 448,
- "approved": 0,
- "voted": 52,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982821",
- "username": "adriolguin",
- "fullName": "Adrian Olguin (adriolguin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982821/medium/1d14c841994683501efe6856e8ca396f.jpg",
- "joined": "2021-10-30 13:53:07"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 466,
- "target": 495,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023365",
- "username": "tomworxs",
- "fullName": "tomworxs",
- "avatarUrl": "https://www.gravatar.com/avatar/d58e0868ecaa2277d865042e97a961b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 20:59:26"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 462,
- "target": 516,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14087195",
- "username": "nicklcanada",
- "fullName": "Nicolae Liviu (nicklcanada)",
- "avatarUrl": "https://www.gravatar.com/avatar/6ba04182461bb02bcf5d19d81c9b1cb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-31 00:00:13"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 50,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 458,
- "target": 443,
- "approved": 0,
- "voted": 558,
- "positiveVotes": 964,
- "negativeVotes": 14,
- "winning": 0
- },
- {
- "user": {
- "id": "15020371",
- "username": "danielsotog",
- "fullName": "danielsotog",
- "avatarUrl": "https://www.gravatar.com/avatar/0822f1dc9f3dec8545f759f0b092229c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 13:36:21"
- },
- "languages": [
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 35,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 439,
- "target": 507,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968331",
- "username": "Ripa_Khrystyna01",
- "fullName": "Khrystyna Ripa (Ripa_Khrystyna01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968331/medium/e3b844b6bc7859c29a20d4b21bcd251c.jpeg",
- "joined": "2021-10-20 11:13:32"
- },
- "languages": [
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 438,
- "target": 331,
- "approved": 0,
- "voted": 149,
- "positiveVotes": 141,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028479",
- "username": "jtauil",
- "fullName": "Julieta Tauil (jtauil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028479/medium/ed3bfe8c5f223b62ec35989faa018bef.png",
- "joined": "2021-11-23 21:13:23"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 27,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995351,
+ "username": "jora535",
+ "fullName": "Evgeniy (jora535)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995351/medium/5edba64a00e991d7176c8a1d6fe5cb27.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 78
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 78
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024245,
+ "username": "gayathri.ramanujam.2021",
+ "fullName": "Gayathri Ramanujam (gayathri.ramanujam.2021)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024245/medium/334a06e375b4e1726f745adff19eadb3.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 8,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 5,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 435,
- "target": 470,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995487",
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12804952,
+ "username": "imgelu",
+ "fullName": "Gelu Ungur (imgelu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12804952/medium/59d5d165d5b422c57908e7797d3b83ee.jpg",
+ "preTranslated": 0,
+ "totalCosts": 80
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 80
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 66,
+ "total": 80
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 70,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 66,
+ "total": 80
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995487,
"username": "Gu1ll0t3",
"fullName": "Gu1ll0t3",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995487/medium/f890d1e85e50d0289ca19930aae629d1.png",
- "joined": "2021-11-08 18:00:44"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 434,
- "target": 442,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14988691",
- "username": "gargavar",
- "fullName": "gargavar",
- "avatarUrl": "https://www.gravatar.com/avatar/d2451670ce34a7f8ed1646923c0a6be7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-03 09:26:22"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 423,
- "target": 409,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968267",
+ "preTranslated": 0,
+ "totalCosts": 434
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 434
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 376,
+ "total": 434
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 375,
+ "total": 442
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 376,
+ "total": 434
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14969167,
+ "username": "Chenguang",
+ "fullName": "Guang Chen (Chenguang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969167/medium/836403c60f29409ef8ca2acc585c8d61.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1485
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1485
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 1442,
+ "total": 1485
+ },
+ "targetTranslated": {
+ "tmMatch": 63,
+ "default": 2282,
+ "total": 2345
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 1442,
+ "total": 1485
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14875990,
+ "username": "guilhermevendramini",
+ "fullName": "Guilherme Vendramini (guilhermevendramini)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875990/medium/6c42a855600f60124d4fbb49962d2226.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 568
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 568
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 555,
+ "total": 568
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 608,
+ "total": 622
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 297,
+ "total": 306
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 555,
+ "total": 568
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028647,
+ "username": "hhkim0",
+ "fullName": "Hanhui Kim (hhkim0)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028647/medium/1ef77054a9896b40551efaac9878f218.png",
+ "preTranslated": 0,
+ "totalCosts": 675
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 675
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 666,
+ "total": 675
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 515,
+ "total": 525
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 666,
+ "total": 675
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14968267,
"username": "Dekicrypto",
"fullName": "Hideki Kanazawa (Dekicrypto)",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/27f054c2f49a9bd452ec71b6e24364c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 07:34:44"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 397,
- "target": 1061,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15025653",
- "username": "TsubTsub",
- "fullName": "TsubTsub",
- "avatarUrl": "https://www.gravatar.com/avatar/e4ae10f8e06992d98372770f0b7bf81c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 23:13:26"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 373,
- "target": 933,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953975",
- "username": "Cyberdog",
- "fullName": "Cyberdog",
- "avatarUrl": "https://www.gravatar.com/avatar/637197c572b1479acb3e40d910bd3a21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 15:01:52"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 372,
- "target": 603,
- "approved": 0,
- "voted": 80,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998169",
- "username": "xcanchal",
- "fullName": "Xavier Canchal (xcanchal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998169/medium/6da03bbf781254776ba5a5c630ee4644.png",
- "joined": "2021-11-10 16:45:02"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 367,
- "target": 406,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992061",
- "username": "Divanny",
- "fullName": "Divanny",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992061/medium/932dae148005c8671a50691ac97b7ddc.jpeg",
- "joined": "2021-11-06 01:07:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 362,
- "target": 403,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032539",
- "username": "devsapariya94",
- "fullName": "devsapariya94",
- "avatarUrl": "https://www.gravatar.com/avatar/9f678368bc574de9cf675e8011f18e6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 03:12:41"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 360,
- "target": 624,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787072",
- "username": "HidroGaming",
- "fullName": "_H1dR0_ (HidroGaming)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787072/medium/43874b3e9048a461c2bf7be02100d08d.png",
- "joined": "2021-09-29 08:13:38"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 397
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 397
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 396,
+ "total": 397
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 1056,
+ "total": 1061
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 396,
+ "total": 397
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566994,
+ "username": "papoy3",
+ "fullName": "Hydro Honey 3000 (papoy3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566994/medium/27c38d4eb236018e454793c342fbf118.jpg",
+ "preTranslated": 0,
+ "totalCosts": 25044
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25044
+ },
+ "translated": {
+ "tmMatch": 513,
+ "default": 24531,
+ "total": 25044
+ },
+ "targetTranslated": {
+ "tmMatch": 538,
+ "default": 25964,
+ "total": 26502
+ },
+ "translatedByMt": {
+ "tmMatch": 90,
+ "default": 18094,
+ "total": 18184
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 513,
+ "default": 24531,
+ "total": 25044
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991161,
+ "username": "icarusdavinci",
+ "fullName": "Icarus Da Vinci (icarusdavinci)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991161/medium/8fdd324d960a172803c5d6f6ee179e84.png",
+ "preTranslated": 0,
+ "totalCosts": 98
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 98
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 98,
+ "total": 98
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 74,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 98,
+ "total": 98
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991627,
+ "username": "isemau",
+ "fullName": "Isemau Antong Tie (isemau)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991627/medium/e6eecc0d9401f25366b7e6020b466415.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035751,
+ "username": "jpratv23",
+ "fullName": "Joel Prat (jpratv23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035751/medium/cf3dd58253bd2aa62bdadab67b1c41ea.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1106
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1105,
+ "total": 1106
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 1072,
+ "total": 1074
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1105,
+ "total": 1106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14998839,
+ "username": "jony.stn",
+ "fullName": "Jony S (jony.stn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998839/medium/db1c6ba3b1fe58d45e94b7d36ba46677.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029495,
+ "username": "caceres.jose.fr",
+ "fullName": "Jose Caceres (caceres.jose.fr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029495/medium/6cfbaec8bb35e6835abad73d00c81517.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 989
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 989
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 947,
+ "total": 989
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 1047,
+ "total": 1094
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 947,
+ "total": 989
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992821,
+ "username": "josemigc2411",
+ "fullName": "Jose Miguel Garcia Cervan (josemigc2411)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992821/medium/2b2f9d5465cbcbe34f8fb3d00847efdc.png",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 49,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 53,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 49,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687676,
+ "username": "joseachemazzei",
+ "fullName": "José A. Mazzei (joseachemazzei)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1415
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1415
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 1407,
+ "total": 1415
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 1776,
+ "total": 1789
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 1407,
+ "total": 1415
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14320782,
+ "username": "JoseDeFreitas",
+ "fullName": "José De Freitas (JoseDeFreitas)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320782/medium/988805bcea26898a44f89f036124c176.png",
+ "preTranslated": 0,
+ "totalCosts": 11329
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11329
+ },
+ "translated": {
+ "tmMatch": 138,
+ "default": 11191,
+ "total": 11329
+ },
+ "targetTranslated": {
+ "tmMatch": 150,
+ "default": 12509,
+ "total": 12659
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 138,
+ "default": 11191,
+ "total": 11329
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15027079,
+ "username": "wmduuh",
+ "fullName": "José Eduardo (wmduuh)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027079/medium/827d9b374220d233a59c4a1f2ffb1452.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1009
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1009
+ },
+ "translated": {
+ "tmMatch": 44,
+ "default": 965,
+ "total": 1009
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 1042,
+ "total": 1085
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 44,
+ "default": 965,
+ "total": 1009
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14670272,
+ "username": "JulienMuggli",
+ "fullName": "Julien Muggli (JulienMuggli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a59c8646c23ffc82c3e26019e602f2c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 50,
+ "total": 51
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 45,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028479,
+ "username": "jtauil",
+ "fullName": "Julieta Tauil (jtauil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028479/medium/ed3bfe8c5f223b62ec35989faa018bef.png",
+ "preTranslated": 0,
+ "totalCosts": 435
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 435
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 431,
+ "total": 435
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 466,
+ "total": 470
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 431,
+ "total": 435
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13981955,
+ "username": "orzalaga",
+ "fullName": "Julio César Velásquez Mejía (orzalaga)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13981955/medium/dfd17ae7d8a17413f45733fb2c672a35.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 519
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 519
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 513,
+ "total": 519
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 601,
+ "total": 609
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 200,
+ "total": 200
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 513,
+ "total": 519
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028971,
+ "username": "2-zoo1",
+ "fullName": "Juwon Lee (2-zoo1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028971/medium/6faadcb6b16f1435e1fc51ae5413192d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 106
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 106
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 78,
+ "total": 78
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 106,
+ "total": 106
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035061,
+ "username": "khalilelmejhed",
+ "fullName": "KAOS NEDRO (khalilelmejhed)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035061/medium/d03bdfcc3a9aece4fd738a9eca07f39c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 14,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 25,
+ "total": 103
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 14,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996861,
+ "username": "kaanmetu",
+ "fullName": "Kaan Ataman (kaanmetu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/a93e7675448b5ea3eaa4485b70cea4ec.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 551
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 551
+ },
+ "translated": {
+ "tmMatch": 87,
+ "default": 464,
+ "total": 551
+ },
+ "targetTranslated": {
+ "tmMatch": 81,
+ "default": 418,
+ "total": 499
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 14,
+ "total": 32
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 87,
+ "default": 464,
+ "total": 551
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15034979,
+ "username": "karelusdripus",
+ "fullName": "Karel Szwoytz (karelusdripus)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034979/medium/f261972ef98bc1298ed741a0ccabe2f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 254
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 254
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 206,
+ "total": 254
+ },
+ "targetTranslated": {
+ "tmMatch": 48,
+ "default": 186,
+ "total": 234
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 23,
+ "total": 25
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 206,
+ "total": 254
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880458,
+ "username": "sekisanchi",
+ "fullName": "Kazunori Seki (sekisanchi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7434df198795c08088636407dc7f96c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10975
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10975
+ },
+ "translated": {
+ "tmMatch": 793,
+ "default": 10182,
+ "total": 10975
+ },
+ "targetTranslated": {
+ "tmMatch": 1584,
+ "default": 25024,
+ "total": 26608
+ },
+ "translatedByMt": {
+ "tmMatch": 22,
+ "default": 963,
+ "total": 985
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 793,
+ "default": 10182,
+ "total": 10975
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14959239,
+ "username": "kevinalexander",
+ "fullName": "Kevin Alexander (kevinalexander)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959239/medium/b99ff2880943456ec68996360243e73e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 312
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 312
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 287,
+ "total": 312
+ },
+ "targetTranslated": {
+ "tmMatch": 46,
+ "default": 353,
+ "total": 399
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 287,
+ "total": 312
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14988257,
+ "username": "khafidprayoga",
+ "fullName": "Khafid Prayoga (khafidprayoga)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988257/medium/90f049a63e6c2b1d6775756247dbdc5a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779158,
+ "username": "K0ue1",
+ "fullName": "Kouei (K0ue1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png",
+ "preTranslated": 0,
+ "totalCosts": 122
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 358,
- "target": 442,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001037",
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 94
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 74,
+ "total": 94
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 95,
+ "total": 118
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 74,
+ "total": 94
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14989289,
+ "username": "KriptoBunny",
+ "fullName": "KriptoBunny",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989289/medium/ab471be1fda9094f666fd76082600690.jpg",
+ "preTranslated": 0,
+ "totalCosts": 42
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 42,
+ "total": 42
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003713,
+ "username": "kundansahu.official",
+ "fullName": "Kundan (kundansahu.official)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003713/medium/f69051583d5702ac8c51249dbe620409.png",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 76,
+ "default": 66,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 124,
+ "default": 113,
+ "total": 237
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 76,
+ "default": 66,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13502365,
+ "username": "dogukan.26c2",
+ "fullName": "Kürşad Kanlı (dogukan.26c2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13502365/medium/9fffbebbce3fed225f001a10dd570860.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026871,
+ "username": "Naiyoma",
+ "fullName": "Lankas Aurelia (Naiyoma)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026871/medium/aff7c0f7016144e5aa436606c298be80.png",
+ "preTranslated": 0,
+ "totalCosts": 181
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 181
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 176,
+ "total": 181
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 161,
+ "total": 170
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 176,
+ "total": 181
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15022459,
+ "username": "leonardo002031",
+ "fullName": "Leonardo Williams (leonardo002031)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022459/medium/49d209032b65b891f5122d63ca0e7490.png",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992691,
+ "username": "lindormfinance",
+ "fullName": "Lindorm Finance (lindormfinance)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992691/medium/aaf8c25e10c1e588f9d8ed58c2a2a657.jpg",
+ "preTranslated": 0,
+ "totalCosts": 137
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 137
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 127,
+ "total": 137
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 112,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 127,
+ "total": 137
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14987203,
+ "username": "LiuShugao",
+ "fullName": "LiuShugao",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987203/medium/65e8ba04a4c177bf9656b47c627ba205.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 91
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 91
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 91,
+ "total": 91
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 174,
+ "total": 174
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 91,
+ "total": 91
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026857,
+ "username": "longtran02",
+ "fullName": "Long Tran (longtran02)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e42114d71608ad394a0b202d3abfb1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 970
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 970
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 970,
+ "total": 970
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1290,
+ "total": 1290
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 970,
+ "total": 970
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035059,
+ "username": "LucasVelazquez",
+ "fullName": "Lucas Velazquez (LucasVelazquez)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035059/medium/b6b05fe77c62eabd62d797d71ed1b707.png",
+ "preTranslated": 0,
+ "totalCosts": 244
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 244
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 243,
+ "total": 244
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 272,
+ "total": 273
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 243,
+ "total": 244
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992877,
+ "username": "Dolor3s",
+ "fullName": "Lydia Kretschmer (Dolor3s)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992877/medium/4482e74c7921e2ce85e573db65775652.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 191
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 191
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15001037,
"username": "voducminh09",
"fullName": "M V (voducminh09)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001037/medium/05e1fb1e3b0b19fb94ac88599bf36b68.jpeg",
- "joined": "2021-11-12 18:08:41"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 345,
- "target": 508,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968207",
- "username": "Vdovychyn_Oksana",
- "fullName": "Vdovychyn_Oksana",
- "avatarUrl": "https://www.gravatar.com/avatar/f751daa8f9217192b5333e29064e43f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 17:19:52"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 344,
- "target": 310,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14979771",
- "username": "gieffe",
- "fullName": "gieffe",
- "avatarUrl": "https://www.gravatar.com/avatar/1b69ac19cc5f713958bb337307e776bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-28 11:35:43"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 323,
- "target": 350,
- "approved": 0,
- "voted": 45,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968325",
- "username": "Yana07Koval",
- "fullName": "Yana07Koval",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968325/medium/8c553a29e24897c09104eb989c3932da.jpeg",
- "joined": "2021-10-20 07:37:55"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 319,
- "target": 233,
- "approved": 0,
- "voted": 141,
- "positiveVotes": 140,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12427762",
- "username": "zhous",
- "fullName": "zhous",
- "avatarUrl": "https://www.gravatar.com/avatar/151b6388b20487473d630f98ddf99805?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 04:34:34"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 312,
- "target": 556,
- "approved": 0,
- "voted": 219,
- "positiveVotes": 37,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967619",
- "username": "Liliia02",
- "fullName": "Liliia02",
- "avatarUrl": "https://www.gravatar.com/avatar/d92b7d370bc905ed131527729aaf8dfc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 13:38:37"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 309,
- "target": 284,
- "approved": 0,
- "voted": 46,
- "positiveVotes": 91,
- "negativeVotes": 12,
- "winning": 0
- },
- {
- "user": {
- "id": "15003781",
- "username": "krysia0196",
- "fullName": "krysia0196",
- "avatarUrl": "https://www.gravatar.com/avatar/169c092691e6bf76213b324770ecbdfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 02:30:25"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 303,
- "target": 283,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003105",
- "username": "pouria.mirzaei",
- "fullName": "pouria.mirzaei",
- "avatarUrl": "https://www.gravatar.com/avatar/e766286d4eb36f973ca935e3acb9c23b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 11:33:22"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 275,
- "target": 372,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968209",
- "username": "vi_ryb05",
- "fullName": "Vitaliia Rybenchuk (vi_ryb05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968209/medium/02c2aae41308eec65dac12117f9dfc8d.jpg",
- "joined": "2021-10-20 04:24:57"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 267,
- "target": 206,
- "approved": 0,
- "voted": 103,
- "positiveVotes": 44,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14995227",
- "username": "asche",
- "fullName": "asche",
- "avatarUrl": "https://www.gravatar.com/avatar/aecd054f094f92603e24b6bffbf7e0c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 13:01:48"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 261,
- "target": 239,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991277",
- "username": "mafezinha",
- "fullName": "mafê (mafezinha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991277/medium/537793d445141505c201bf6f59daff90.jpeg",
- "joined": "2021-11-05 09:31:28"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 259,
- "target": 279,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 37
- },
- {
- "user": {
- "id": "12425646",
- "username": "-klinsky-",
- "fullName": "Vlad Klinsky (-klinsky-)",
- "avatarUrl": "https://www.gravatar.com/avatar/454088a3c4838cf352ec793f63d5aa3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 09:37:56"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 252,
- "target": 265,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "15030799",
- "username": "DushicaU",
- "fullName": "Dusica Udovicki (DushicaU)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030799/medium/a5b101b66042af522070c34cf65d7805.jpg",
- "joined": "2021-11-25 14:36:32"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 244,
- "target": 240,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980565",
- "username": "grayPark",
- "fullName": "박규하 (grayPark)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14980565/medium/11096f92db3bb79f08f0bfcbd1f9f379.jpeg",
- "joined": "2021-10-29 01:38:20"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 243,
- "target": 225,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973999",
- "username": "deadinside",
- "fullName": "Dmytro (deadinside)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973999/medium/e78028a33f442fd5ef071b87b758a415.png",
- "joined": "2021-10-30 08:53:30"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 239,
- "target": 217,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024737",
- "username": "rogertw87",
- "fullName": "Roger CY LI (rogertw87)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024737/medium/1c947a00daf3ab3b6118b7080d28d672.jpeg",
- "joined": "2021-11-21 02:53:24"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 233,
- "target": 408,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996863",
- "username": "Mighuma",
- "fullName": "Mighuma",
- "avatarUrl": "https://www.gravatar.com/avatar/2ea5f2f5aaf790e05a752c111f1dc306?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 18:01:43"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 230,
- "target": 253,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981773",
- "username": "Alaeddin",
- "fullName": "Alaeddin",
- "avatarUrl": "https://www.gravatar.com/avatar/56396ba09b27eff0a61a37cc5b7a4a2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 16:59:22"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 230,
- "target": 199,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000979",
- "username": "mauri.lustosa",
- "fullName": "Mauriano Lustosa (mauri.lustosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000979/medium/d3463e880ee39ff00ec110108c7c1711.png",
- "joined": "2021-11-12 16:29:21"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 227,
- "target": 242,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972621",
- "username": "CSR1415926535",
- "fullName": "CSR1415926535",
- "avatarUrl": "https://www.gravatar.com/avatar/4f21674423ae94c870d639e1bf09ebf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:41:17"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 223,
- "target": 245,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14989955",
- "username": "darya.vrk",
- "fullName": "darya.vrk",
- "avatarUrl": "https://www.gravatar.com/avatar/6a6feaaab6afc3a2e49327308d76a3a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 10:09:26"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 215,
- "target": 182,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13343841",
- "username": "jrthsr700tmax",
- "fullName": "jrthsr700tmax",
- "avatarUrl": "https://www.gravatar.com/avatar/271f36fa0507edc4ae9d7108a43bf1fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 21:56:13"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 214,
- "target": 353,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024805",
- "username": "laneser.kuo",
- "fullName": "laneser kuo (laneser.kuo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024805/medium/397e610d238f3db6882905462dcecac0.jpeg",
- "joined": "2021-11-21 04:30:52"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 211,
- "target": 391,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990795",
- "username": "kronic",
- "fullName": "kronic",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990795/medium/f3e16163f42dd477b6cb6b1bc541bbff.png",
- "joined": "2021-11-05 01:12:12"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 211,
- "target": 254,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032061",
- "username": "coffeeparty",
- "fullName": "coffeeparty",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032061/medium/7e52ad480ca81e424568526990ada2fb.jpeg",
- "joined": "2021-11-26 15:18:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 206,
- "target": 253,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992877",
- "username": "Dolor3s",
- "fullName": "Lydia Kretschmer (Dolor3s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992877/medium/4482e74c7921e2ce85e573db65775652.jpeg",
- "joined": "2021-11-06 17:00:52"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 191,
- "target": 191,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14994299",
+ "preTranslated": 0,
+ "totalCosts": 345
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 345
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 305,
+ "total": 345
+ },
+ "targetTranslated": {
+ "tmMatch": 68,
+ "default": 440,
+ "total": 508
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 305,
+ "total": 345
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675712,
+ "username": "LEMIBANDDEXARI",
+ "fullName": "MIBAND (LEMIBANDDEXARI)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/3416b6f2cac5da2e70205556774c847e.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14230886,
+ "username": "moul",
+ "fullName": "Manfred Touron (moul)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230886/medium/7848e69a7fa9dd1f94f0509d56498b07.png",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 95,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 111,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 95,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005021,
+ "username": "mrcvs31",
+ "fullName": "Marc Vernet (mrcvs31)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005021/medium/99b5ad6194f6bf4449f55fb9a64f97c0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 6,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026503,
+ "username": "MB337",
+ "fullName": "Matteo Bianchi (MB337)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026503/medium/a98b0fc8ef5fa3095adac492aac5bf5f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14633448,
+ "username": "ilrado",
+ "fullName": "Matteo Radice (ilrado)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633448/medium/00e36a91231d5f6980f4ea96c1f24ab9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8188
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 8183,
+ "total": 8188
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 8223,
+ "total": 8229
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 8183,
+ "total": 8188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14994299,
"username": "matiasj.lopez",
"fullName": "Matías López (matiasj.lopez)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994299/medium/c364edddc0c92088708266c5d0788ef9.jpeg",
- "joined": "2021-11-07 21:15:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 182,
- "target": 192,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984959",
- "username": "lesnov",
- "fullName": "lesnov",
- "avatarUrl": "https://www.gravatar.com/avatar/7b606916d76de291f823b051e96c00ec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 04:04:07"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 174,
- "target": 160,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990557",
- "username": "samuel281",
- "fullName": "sungwoo park (samuel281)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990557/medium/ec6e0432bcf1ee504ec6f7b281ca52ac.jpeg",
- "joined": "2021-11-04 19:17:28"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 169,
- "target": 104,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005487",
- "username": "Anna_Shirkova",
- "fullName": "Anna_Shirkova",
- "avatarUrl": "https://www.gravatar.com/avatar/db6b29e6ea944a2b355e690459255898?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 09:08:38"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 162,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026871",
- "username": "Naiyoma",
- "fullName": "Lankas Aurelia (Naiyoma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026871/medium/aff7c0f7016144e5aa436606c298be80.png",
- "joined": "2021-11-22 17:55:31"
- },
- "languages": [
- {
- "id": "sw",
- "name": "Swahili"
- }
- ],
- "translated": 151,
- "target": 142,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027271",
- "username": "FDuchesne",
- "fullName": "florentduchesne (FDuchesne)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027271/medium/b41c07fe5b0ff8c2c5b506eeee41e184.png",
- "joined": "2021-11-23 03:14:31"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 149,
- "target": 153,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977143",
- "username": "David0",
- "fullName": "David0",
- "avatarUrl": "https://www.gravatar.com/avatar/079915c43f9e9335cb9507680fb52dec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-26 14:29:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 149,
- "target": 158,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 45
- },
- {
- "user": {
- "id": "14385582",
- "username": "pongpan",
- "fullName": "Pongpan Nakkaew (pongpan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14385582/medium/306a571c35caa1c778b853fd1596ef1c.jpeg",
- "joined": "2021-02-20 10:45:42"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 148,
- "target": 95,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727044",
+ "preTranslated": 0,
+ "totalCosts": 182
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 182
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 147,
+ "total": 182
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 155,
+ "total": 192
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 147,
+ "total": 182
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000979,
+ "username": "mauri.lustosa",
+ "fullName": "Mauriano Lustosa (mauri.lustosa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000979/medium/d3463e880ee39ff00ec110108c7c1711.png",
+ "preTranslated": 0,
+ "totalCosts": 227
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 227
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 199,
+ "total": 227
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 214,
+ "total": 242
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 199,
+ "total": 227
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727044,
"username": "MetehanOzyurek",
"fullName": "Metehan Özyürek (MetehanOzyurek)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727044/medium/185fcf0359203eb8d719570e8cf23646.png",
- "joined": "2021-04-28 05:56:50"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 148,
- "target": 133,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999655",
- "username": "Kevster",
- "fullName": "Kevster",
- "avatarUrl": "https://www.gravatar.com/avatar/9d6dba77a98f5e2d3115cbf8f877f3c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 18:52:02"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 148,
- "target": 154,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029629",
- "username": "Pirozok",
- "fullName": "Bohdan Gluschak (Pirozok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029629/medium/55883d9f15e025e45decd9434a3a1c01.png",
- "joined": "2021-11-24 16:20:42"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 144,
- "target": 125,
- "approved": 0,
- "voted": 35,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003713",
- "username": "kundansahu.official",
- "fullName": "Kundan (kundansahu.official)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003713/medium/f69051583d5702ac8c51249dbe620409.png",
- "joined": "2021-11-15 00:59:45"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 142,
- "target": 237,
- "approved": 0,
- "voted": 23,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992815",
- "username": "Radiovolna86",
- "fullName": "Radiovolna86",
- "avatarUrl": "https://www.gravatar.com/avatar/d87b568efadaff6a07b43bb2b191bf80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 15:09:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 138,
- "target": 117,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992691",
- "username": "lindormfinance",
- "fullName": "Lindorm Finance (lindormfinance)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992691/medium/aaf8c25e10c1e588f9d8ed58c2a2a657.jpg",
- "joined": "2021-11-06 13:09:21"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 137,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996569",
- "username": "lib",
- "fullName": "lib",
- "avatarUrl": "https://www.gravatar.com/avatar/e6b38eae96bfc3dadae468e552ed75bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 13:05:17"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 135,
- "target": 139,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779158",
- "username": "K0ue1",
- "fullName": "Kouei (K0ue1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png",
- "joined": "2021-05-30 18:24:45"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 132,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14997983",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 100,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 84,
+ "total": 133
+ },
+ "translatedByMt": {
+ "tmMatch": 39,
+ "default": 0,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 100,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14985003,
+ "username": "m.naeimy",
+ "fullName": "Meysam Naeimy (m.naeimy)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985003/medium/0e21b7a5dcd802d0203fceadaf2ef22f.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035521,
+ "username": "mrodasmunera",
+ "fullName": "Miguel angel Rodas munera (mrodasmunera)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035521/medium/5baccc971b5f496fa477b256fe411c8e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023359,
+ "username": "empresamorclo",
+ "fullName": "Morclo Empresa (empresamorclo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023359/medium/3370355ea7d096ade0905d238a24f26a.png",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 10,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 11,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 10,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14984193,
+ "username": "Mourad820",
+ "fullName": "Mourad Tajja (Mourad820)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984193/medium/4f7d92fc7cf31a84b0319c093942aa1c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 584
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 584
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 538,
+ "total": 584
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 523,
+ "total": 576
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 538,
+ "total": 584
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14814538,
+ "username": "multilkyx",
+ "fullName": "Multi lkyx (multilkyx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814538/medium/a758db833b50a769463ef35c5d5b99f1.gif",
+ "preTranslated": 0,
+ "totalCosts": 21
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 21
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 13,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 14,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 13,
+ "total": 21
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999587,
+ "username": "muratgozel",
+ "fullName": "Murat Gözel (muratgozel)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999587/medium/e65a2434011d9519ff52ade683b53b8c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1176
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1176
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1163,
+ "total": 1176
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 755,
+ "total": 767
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1163,
+ "total": 1176
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003615,
+ "username": "coffe67",
+ "fullName": "Narciso Avalos (coffe67)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003615/medium/6595139d2c5d5e19f74d7859d0f0bea8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14943437,
+ "username": "trungan1511",
+ "fullName": "Nguyen An (trungan1511)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943437/medium/03d7b6c2f65c04c60b008a38a221cf5f.png",
+ "preTranslated": 0,
+ "totalCosts": 614
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 614
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 613,
+ "total": 614
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 952,
+ "total": 953
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 613,
+ "total": 614
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15031079,
+ "username": "jvxon",
+ "fullName": "Nhơn Võ (jvxon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031079/medium/1099cf15f2a152105f5014bb6e748954.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14087195,
+ "username": "nicklcanada",
+ "fullName": "Nicolae Liviu (nicklcanada)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ba04182461bb02bcf5d19d81c9b1cb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 360
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 360
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 334,
+ "total": 360
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 313,
+ "total": 340
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 334,
+ "total": 360
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13651371,
+ "username": "Pactera_Caiping",
+ "fullName": "Pactera_Vietnamese_Proofreader (Pactera_Caiping)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3661624d771e84aa4f4d472588a5d823?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 679
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 679
+ },
+ "translated": {
+ "tmMatch": 63,
+ "default": 616,
+ "total": 679
+ },
+ "targetTranslated": {
+ "tmMatch": 78,
+ "default": 925,
+ "total": 1003
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 63,
+ "default": 616,
+ "total": 679
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14977831,
+ "username": "PeterKecman",
+ "fullName": "Peter Škoda Kecman (PeterKecman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977831/medium/e1e3f150ce524a6cb88fccb8b4f52422.png",
+ "preTranslated": 0,
+ "totalCosts": 38159
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38159
+ },
+ "translated": {
+ "tmMatch": 733,
+ "default": 37426,
+ "total": 38159
+ },
+ "targetTranslated": {
+ "tmMatch": 686,
+ "default": 33446,
+ "total": 34132
+ },
+ "translatedByMt": {
+ "tmMatch": 49,
+ "default": 18,
+ "total": 67
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 733,
+ "default": 37426,
+ "total": 38159
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14952363,
+ "username": "ensingerphilipp",
+ "fullName": "Philipp Ensinger (ensingerphilipp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952363/medium/491e25bf6c69040369e342c3b1d12249.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1360
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1360
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 1332,
+ "total": 1360
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 1301,
+ "total": 1327
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 1332,
+ "total": 1360
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14389094,
+ "username": "Pol_Lanski",
+ "fullName": "Pol_Lanski",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14389094/medium/7c36be19eeb088c45a38e21224aca68f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14385582,
+ "username": "pongpan",
+ "fullName": "Pongpan Nakkaew (pongpan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14385582/medium/306a571c35caa1c778b853fd1596ef1c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 105,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 54,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 42,
+ "default": 3,
+ "total": 45
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 105,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002503,
+ "username": "xuqiaose",
+ "fullName": "Qiao se Xu (xuqiaose)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002503/medium/e5d866fa06f7598f347de663345aff21.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 25,
+ "default": 13,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 15,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 25,
+ "default": 13,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14970323,
+ "username": "ragnolimichele99",
+ "fullName": "Ragn Oh (ragnolimichele99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970323/medium/fb22954c81db3329ada19b179d4f63f6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 65
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861756,
+ "username": "RahayuRafika_12",
+ "fullName": "Rahayu Rafikahwulan Sari (RahayuRafika_12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 765
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 765
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 725,
+ "total": 765
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 644,
+ "total": 711
+ },
+ "translatedByMt": {
+ "tmMatch": 35,
+ "default": 0,
+ "total": 35
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 725,
+ "total": 765
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15032613,
+ "username": "3olotoy83",
+ "fullName": "Rahmatullo Abdullaev (3olotoy83)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032613/medium/bbddc287052a26aacbc92b56388427c9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 37,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 35,
+ "total": 49
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 37,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15031031,
+ "username": "Ramonski88",
+ "fullName": "Ramonski (Ramonski88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031031/medium/131fb2000b0b7fb9c5b1e66b48efc721.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 750
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 750
+ },
+ "translated": {
+ "tmMatch": 35,
+ "default": 715,
+ "total": 750
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 982,
+ "total": 1024
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 35,
+ "default": 715,
+ "total": 750
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996511,
+ "username": "rlandeira",
+ "fullName": "Renato A. Landeira (rlandeira)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996511/medium/bc8903b9375a605c6351bc77c9976524.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14682564,
+ "username": "rich1n",
+ "fullName": "Richard Rodríguez (rich1n)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682564/medium/3198f898fb53f31fa32bf08236627a34.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 474
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 474
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 462,
+ "total": 474
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 488,
+ "total": 504
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 462,
+ "total": 474
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14994889,
+ "username": "t123987132",
+ "fullName": "Rick Ho (t123987132)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994889/medium/93d1e53923e9e7018fa27234967859e8.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553216,
+ "username": "rielychen",
+ "fullName": "Riely (rielychen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/2fd387175612fea1ecb0db49b0178419.png",
+ "preTranslated": 0,
+ "totalCosts": 2210
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2210
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 2182,
+ "total": 2210
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 3422,
+ "total": 3459
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 355,
+ "total": 363
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 2182,
+ "total": 2210
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14357794,
+ "username": "robertdosa",
+ "fullName": "Robert Dosa (robertdosa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png",
+ "preTranslated": 0,
+ "totalCosts": 455
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 455
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 452,
+ "total": 455
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 426,
+ "total": 429
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 452,
+ "total": 455
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024737,
+ "username": "rogertw87",
+ "fullName": "Roger CY LI (rogertw87)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024737/medium/1c947a00daf3ab3b6118b7080d28d672.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 233
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 233
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 188,
+ "total": 233
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 351,
+ "total": 408
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 188,
+ "total": 233
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002975,
+ "username": "Sabine.Goesker",
+ "fullName": "Sabine Gösker (Sabine.Goesker)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002975/medium/c27bb77b234f3e4492a3880925ffa6f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 695
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 695
+ },
+ "translated": {
+ "tmMatch": 95,
+ "default": 600,
+ "total": 695
+ },
+ "targetTranslated": {
+ "tmMatch": 82,
+ "default": 598,
+ "total": 680
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 95,
+ "default": 600,
+ "total": 695
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14997983,
"username": "saitalay86",
"fullName": "Sait ALAY (saitalay86)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14997983/medium/8a892e10792fe564e2bfad9938fb2cf2.png",
- "joined": "2021-11-10 13:43:11"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 130,
- "target": 107,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952681",
- "username": "AleksandrMorozov",
- "fullName": "Александр (AleksandrMorozov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952681/medium/bea7a5ef230daeda223ee3d7265903a2.png",
- "joined": "2021-10-06 15:40:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 130,
- "target": 114,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 55
- },
- {
- "user": {
- "id": "14987479",
- "username": "Rosina70",
- "fullName": "Rosina70",
- "avatarUrl": "https://www.gravatar.com/avatar/03661309d28016f48fde01e40b661d38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 12:56:13"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 127,
- "target": 134,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000525",
- "username": "foteskuIgor",
- "fullName": "Игорь Фотеску (foteskuIgor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000525/medium/a83b7d1987932ba37c04f8afa3a1a6c0.png",
- "joined": "2021-11-12 10:26:21"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 126,
- "target": 131,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 25,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997221",
- "username": "DD369",
- "fullName": "DD369",
- "avatarUrl": "https://www.gravatar.com/avatar/b1b0eba0f0c27e5adb35bf066143a30f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 02:40:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 117,
- "target": 113,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000681",
- "username": "BXS",
- "fullName": "BXS",
- "avatarUrl": "https://www.gravatar.com/avatar/7d9b2aad645e110ad96a043cbdef7a18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 12:23:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 115,
- "target": 142,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 50
- },
- {
- "user": {
- "id": "14957477",
- "username": "asdcBRA",
- "fullName": "André Silva de Carvalho (asdcBRA)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957477/medium/4731034c4ad881ab8ce76389b7952162.jpeg",
- "joined": "2021-10-10 15:55:03"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 111,
- "target": 123,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 57,
- "negativeVotes": 0,
- "winning": 36
- },
- {
- "user": {
- "id": "14983857",
- "username": "shimonchick",
- "fullName": "Mihail Kirov (shimonchick)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983857/medium/212e2f1bde341380eba33d9562c9695b.jpeg",
- "joined": "2021-10-31 07:43:22"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 108,
- "target": 131,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033779",
- "username": "victorsvn",
- "fullName": "Victor SVN (victorsvn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033779/medium/528a08c0e6d0621aa6ac770be78d516b.png",
- "joined": "2021-11-28 05:21:18"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 108,
- "target": 155,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028971",
- "username": "2-zoo1",
- "fullName": "Juwon Lee (2-zoo1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028971/medium/6faadcb6b16f1435e1fc51ae5413192d.jpeg",
- "joined": "2021-11-24 07:48:54"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 106,
- "target": 78,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14058791",
- "username": "shameed",
- "fullName": "shameed",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058791/medium/a52fd50f68c1f10bc8e139c33fddef76.png",
- "joined": "2019-12-27 08:11:15"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 101,
- "target": 209,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990849",
+ "preTranslated": 0,
+ "totalCosts": 130
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 130
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 111,
+ "total": 130
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 90,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 111,
+ "total": 130
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14985249,
+ "username": "Venenosa03",
+ "fullName": "Samantha H. (Venenosa03)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985249/medium/bb7a19c923d2a36d7c69d2b92f448c17.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914333,
+ "username": "SamB",
+ "fullName": "Samira Bourai (SamB)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2d0de1488d23af8d721dca29ccec7577?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 694
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 694
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 686,
+ "total": 694
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 649,
+ "total": 659
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 686,
+ "total": 694
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020309,
+ "username": "sandeepsahu",
+ "fullName": "Sandeep Kumar Sahu (sandeepsahu)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020309/medium/19858a2b34be230b1d361e5a0be59757.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14986013,
+ "username": "santosmichael3856",
+ "fullName": "Santos Michael (santosmichael3856)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14986013/medium/7145f141cdce5146f180f8455875b76c.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 2,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12358726,
+ "username": "cardex",
+ "fullName": "Selim Unver (cardex)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12358726/medium/b3cea9e8e6ca4b84de7d0b0d3f071827.jpg",
+ "preTranslated": 0,
+ "totalCosts": 302
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 302
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 301,
+ "total": 302
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 222,
+ "total": 223
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 301,
+ "total": 302
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995627,
+ "username": "slelrlelgla",
+ "fullName": "Sergey (slelrlelgla)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995627/medium/5c9cc272fc1131cd84293a6c6a69e5fe.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15002823,
+ "username": "sdominguez894",
+ "fullName": "Sergio Domínguez (sdominguez894)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002823/medium/1d1caae3bcae5e7a54ddaa3a4b15784b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15019927,
+ "username": "Sewon",
+ "fullName": "Sewon Park (Sewon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019927/medium/0ebf5c870c1c120a265fccba1a0d9d9a.png",
+ "preTranslated": 0,
+ "totalCosts": 925
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 925
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 921,
+ "total": 925
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 700,
+ "total": 703
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 921,
+ "total": 925
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990849,
"username": "shanehung",
"fullName": "Shane Hung (shanehung)",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/5211f9577580f012f260838835943be6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 02:41:51"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 101
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 101
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 97,
+ "total": 101
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 142,
+ "total": 154
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 97,
+ "total": 101
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14748368,
+ "username": "i-shivamsoni",
+ "fullName": "Shivam Soni (i-shivamsoni)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748368/medium/e03c2dbecb8b847dac210c562882112b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 55,
+ "total": 55
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14982689,
+ "username": "Sioux",
+ "fullName": "Timothee Manh (Sioux)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982689/medium/fdc76838236e97df852a1fc98077f7d7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2986
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2986
+ },
+ "translated": {
+ "tmMatch": 93,
+ "default": 2893,
+ "total": 2986
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 3223,
+ "total": 3333
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 838,
+ "total": 848
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 93,
+ "default": 2893,
+ "total": 2986
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021217,
+ "username": "senthilvenkat",
+ "fullName": "Venkatachalam (senthilvenkat)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021217/medium/5b98edb188f1d3de5516a85f4c0d8348.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 33,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 59,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 33,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15033779,
+ "username": "victorsvn",
+ "fullName": "Victor SVN (victorsvn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033779/medium/528a08c0e6d0621aa6ac770be78d516b.png",
+ "preTranslated": 0,
+ "totalCosts": 108
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 108
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 98,
+ "total": 108
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 139,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 98,
+ "total": 108
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14514124,
+ "username": "ViktorOn",
+ "fullName": "Vik (ViktorOn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514124/medium/070d8d1854a62bf318b2dcb1a02052b9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3271
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3270
+ },
+ "translated": {
+ "tmMatch": 66,
+ "default": 3204,
+ "total": 3270
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 2702,
+ "total": 2766
+ },
+ "translatedByMt": {
+ "tmMatch": 30,
+ "default": 469,
+ "total": 499
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 66,
+ "default": 3204,
+ "total": 3270
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 101,
- "target": 154,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992351",
- "username": "viljarkahari",
- "fullName": "Viljar Kähari (viljarkahari)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992351/medium/6963ec089ec7a0d1f698c0ceefad6fb6.jpeg",
- "joined": "2021-11-06 07:13:01"
- },
- "languages": [
- {
- "id": "et",
- "name": "Estonian"
- }
- ],
- "translated": 99,
- "target": 80,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991161",
- "username": "icarusdavinci",
- "fullName": "Icarus Da Vinci (icarusdavinci)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991161/medium/8fdd324d960a172803c5d6f6ee179e84.png",
- "joined": "2021-11-05 07:43:06"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 98,
- "target": 74,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14861994",
- "username": "DougPimentel",
- "fullName": "Douglas Pimentel (DougPimentel)",
- "avatarUrl": "https://www.gravatar.com/avatar/2bb137811df634f2bebf5519f13d0313?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 11:19:59"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 97,
- "target": 116,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14230886",
- "username": "moul",
- "fullName": "Manfred Touron (moul)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230886/medium/7848e69a7fa9dd1f94f0509d56498b07.png",
- "joined": "2021-11-25 15:28:37"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 95,
- "target": 111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993957",
- "username": "julijuli_69",
- "fullName": "julijuli_69",
- "avatarUrl": "https://www.gravatar.com/avatar/3a56d24884e4c516c849c108db44fd35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-07 13:45:45"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 92,
- "target": 82,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987203",
- "username": "LiuShugao",
- "fullName": "LiuShugao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987203/medium/65e8ba04a4c177bf9656b47c627ba205.jpeg",
- "joined": "2021-11-02 10:06:37"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 91,
- "target": 174,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995749",
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995749,
"username": "vikendrit",
"fullName": "Vikendrit Decentralized (vikendrit)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995749/medium/dd27eac8759a2044212d1803d0965a7b.png",
- "joined": "2021-11-09 00:31:17"
- },
- "languages": [
- {
- "id": "ne-NP",
- "name": "Nepali"
- }
- ],
- "translated": 87,
- "target": 168,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982023",
- "username": "jdgomes",
- "fullName": "jdgomes",
- "avatarUrl": "https://www.gravatar.com/avatar/4d69fb95b1d8d208d48c2269e9594b3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 22:51:20"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 84,
- "target": 92,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12841010",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ne-NP",
+ "name": "Nepali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 78,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 150,
+ "total": 168
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 78,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14992351,
+ "username": "viljarkahari",
+ "fullName": "Viljar Kähari (viljarkahari)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992351/medium/6963ec089ec7a0d1f698c0ceefad6fb6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 99
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "et",
+ "name": "Estonian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 99
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 91,
+ "total": 99
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 74,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 91,
+ "total": 99
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15029535,
+ "username": "vitekurban0",
+ "fullName": "Vit Urban (vitekurban0)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029535/medium/d1920ed19810c05c35d43b4ea0a8ff85.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12425646,
+ "username": "-klinsky-",
+ "fullName": "Vlad Klinsky (-klinsky-)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/454088a3c4838cf352ec793f63d5aa3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 252
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 252
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 247,
+ "total": 252
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 261,
+ "total": 265
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 16,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 247,
+ "total": 252
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12841010,
"username": "slyadmin",
"fullName": "Vladimir (slyadmin)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12841010/medium/844c2fb2c1a8866c2b873b171d9b994d.jpg",
- "joined": "2021-10-22 09:33:55"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 82,
- "target": 79,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992821",
- "username": "josemigc2411",
- "fullName": "Jose Miguel Garcia Cervan (josemigc2411)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992821/medium/2b2f9d5465cbcbe34f8fb3d00847efdc.png",
- "joined": "2021-11-06 15:21:20"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 79,
- "target": 85,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995351",
- "username": "jora535",
- "fullName": "Evgeniy (jora535)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995351/medium/5edba64a00e991d7176c8a1d6fe5cb27.jpeg",
- "joined": "2021-11-08 14:52:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 78,
- "target": 72,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965517",
- "username": "Valentyna_Boberska",
- "fullName": "Valentyna_Boberska",
- "avatarUrl": "https://www.gravatar.com/avatar/dd60ddbd850a18319b1f729948633370?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 03:24:09"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 76,
- "target": 46,
- "approved": 0,
- "voted": 213,
- "positiveVotes": 181,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14984185",
- "username": "0xiguana",
- "fullName": "Chris Lee (0xiguana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984185/medium/262b7d8ef8c2b3a21a0d7e9f992acf7a.png",
- "joined": "2021-10-31 12:10:42"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 74,
- "target": 132,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020181",
- "username": "jcruzrivera",
- "fullName": "jcruzrivera",
- "avatarUrl": "https://www.gravatar.com/avatar/71150e449e40c218bc198b8d26dba0b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 13:44:47"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 72,
- "target": 87,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026665",
+ "preTranslated": 0,
+ "totalCosts": 82
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 82
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 82,
+ "total": 82
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15028671,
+ "username": "folo2010",
+ "fullName": "Vladimir Alexandrovich (folo2010)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15028671/medium/ba01b8798dfc582c1878e173533aeae3.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2005
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2005
+ },
+ "translated": {
+ "tmMatch": 52,
+ "default": 1953,
+ "total": 2005
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 1633,
+ "total": 1678
+ },
+ "translatedByMt": {
+ "tmMatch": 18,
+ "default": 714,
+ "total": 732
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 52,
+ "default": 1953,
+ "total": 2005
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14008271,
+ "username": "comodoro",
+ "fullName": "Vojtěch Drábek (comodoro)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008271/medium/c7b5cf629f7c0a1a3c8be6944f69983e.png",
+ "preTranslated": 0,
+ "totalCosts": 882
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 882
+ },
+ "translated": {
+ "tmMatch": 130,
+ "default": 752,
+ "total": 882
+ },
+ "targetTranslated": {
+ "tmMatch": 112,
+ "default": 658,
+ "total": 770
+ },
+ "translatedByMt": {
+ "tmMatch": 47,
+ "default": 109,
+ "total": 156
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 130,
+ "default": 752,
+ "total": 882
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15037157,
+ "username": "Apspelet33",
+ "fullName": "William Eliasson (Apspelet33)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15037157/medium/df96a4edda4e709ce0a0663c57372630.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 141
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 108,
+ "total": 141
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 104,
+ "total": 136
+ },
+ "translatedByMt": {
+ "tmMatch": 30,
+ "default": 92,
+ "total": 122
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 108,
+ "total": 141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14998169,
+ "username": "xcanchal",
+ "fullName": "Xavier Canchal (xcanchal)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998169/medium/6da03bbf781254776ba5a5c630ee4644.png",
+ "preTranslated": 0,
+ "totalCosts": 367
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 367
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 365,
+ "total": 367
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 404,
+ "total": 406
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 365,
+ "total": 367
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13128900,
+ "username": "YannAries",
+ "fullName": "Y@nnick (YannAries)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13128900/medium/7d1e00ebe7aca553dd475b2b888e769f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 477
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 477
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 472,
+ "total": 477
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 514,
+ "total": 519
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 42,
+ "total": 43
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 472,
+ "total": 477
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866604,
+ "username": "yeremiaryangunadi",
+ "fullName": "Yeremia Ryan Gunadi (yeremiaryangunadi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png",
+ "preTranslated": 0,
+ "totalCosts": 95
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 95
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 73,
+ "total": 95
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 75,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 73,
+ "total": 95
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026665,
"username": "yzarbun",
"fullName": "Yigit Zarbun (yzarbun)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026665/medium/20e52ef9a7092025f059cc558f3bafe4.png",
- "joined": "2021-11-22 14:43:53"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 72,
- "target": 57,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030613",
- "username": "ChadleyETH",
- "fullName": "ChadleyETH",
- "avatarUrl": "https://www.gravatar.com/avatar/d524ba7ea4e118deb12193eb4391dd1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 11:46:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 71,
- "target": 85,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002443",
- "username": "Pamelaocampo444",
- "fullName": "Pamelaocampo444",
- "avatarUrl": "https://www.gravatar.com/avatar/dd6cbc98230ea745d12905b0e8048af1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 21:06:13"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 71,
- "target": 71,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982731",
- "username": "stepantsova.marina",
- "fullName": "Marina Step (stepantsova.marina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982731/medium/75bfe4bbb86944281ad86000f10b8b7c.jpeg",
- "joined": "2021-10-30 12:39:26"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 70,
- "target": 55,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030241",
- "username": "sonata-chen",
- "fullName": "sonata-chen",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030241/medium/521fb44a99be409b8deb401d00d2439b.png",
- "joined": "2021-11-25 05:41:09"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 69,
- "target": 134,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15025455",
- "username": "Taha_Yasu",
- "fullName": "Taha_Yasu",
- "avatarUrl": "https://www.gravatar.com/avatar/7703f7a0f8868bfd33e1666be3f6f50f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 17:27:57"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 69,
- "target": 56,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003267",
- "username": "r_victory",
- "fullName": "r_victory",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003267/medium/4137644ea8974a0c3d2a8c73b189d7c5.png",
- "joined": "2021-11-14 15:17:24"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 69,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569472",
- "username": "NH4HCO3",
- "fullName": "NH4HCO3",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569472/medium/fe8c93ec393c72040d3d294ff046f04d.gif",
- "joined": "2021-11-27 07:14:23"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 69,
- "target": 129,
- "approved": 0,
- "voted": 36,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946101",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995121,
+ "username": "abhi.kanodia803",
+ "fullName": "abhishek Kanodia (abhi.kanodia803)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995121/medium/d05ae7488e7a8e4a2b4e2be59c889f0e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14999683,
+ "username": "amal.jaison2000",
+ "fullName": "amal jaison (amal.jaison2000)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999683/medium/2a99d9bd895c3104f4b4ca40e8642477.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 9,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 22,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 9,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026807,
+ "username": "arican35",
+ "fullName": "arican35",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026807/medium/a64aca2b97f9362fdcee4d7ac1145477.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14973077,
+ "username": "arin32",
+ "fullName": "arin32",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973077/medium/bd7c4f92ab2c1f86489508b41262fdad.png",
+ "preTranslated": 0,
+ "totalCosts": 969
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 969
+ },
+ "translated": {
+ "tmMatch": 68,
+ "default": 901,
+ "total": 969
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 256,
+ "total": 291
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 3,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 68,
+ "default": 901,
+ "total": 969
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15022465,
+ "username": "avolpe1998",
+ "fullName": "avolpe1998",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022465/medium/0c46ffa5589448ece16b6ef83d7c2a1e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 36,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 29,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 36,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15005017,
+ "username": "catmalark",
+ "fullName": "catmalark",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005017/medium/ebecfd5187d2eafcc7a249142442c7e1.png",
+ "preTranslated": 0,
+ "totalCosts": 549
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 549
+ },
+ "translated": {
+ "tmMatch": 105,
+ "default": 444,
+ "total": 549
+ },
+ "targetTranslated": {
+ "tmMatch": 96,
+ "default": 402,
+ "total": 498
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 105,
+ "default": 444,
+ "total": 549
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15032061,
+ "username": "coffeeparty",
+ "fullName": "coffeeparty",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032061/medium/7e52ad480ca81e424568526990ada2fb.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 249,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15019905,
+ "username": "e06-tech",
+ "fullName": "e06-tech",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019905/medium/8d5a2069e2825a02309a7da0b1e019bb.png",
+ "preTranslated": 0,
+ "totalCosts": 598
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 598
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 593,
+ "total": 598
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 534,
+ "total": 539
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 593,
+ "total": 598
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15036227,
+ "username": "fusionist989",
+ "fullName": "emel benlice (fusionist989)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15036227/medium/7dc3f62c732c630bf1b87bd4371c831a.png",
+ "preTranslated": 0,
+ "totalCosts": 124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 124,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 124,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14946101,
"username": "orioncafune_",
"fullName": "fede (orioncafune_)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946101/medium/a769eea4ec46c048adcddef91897b0e6.png",
- "joined": "2021-11-19 12:03:40"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 68,
- "target": 68,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970323",
- "username": "ragnolimichele99",
- "fullName": "Ragn Oh (ragnolimichele99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970323/medium/fb22954c81db3329ada19b179d4f63f6.jpeg",
- "joined": "2021-10-20 16:01:02"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 65,
- "target": 56,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14979259",
- "username": "caglarylmz",
- "fullName": "Çağlar YILMAZ (caglarylmz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14979259/medium/aaea9fcba4c2027490c2336e6d9b86c8.png",
- "joined": "2021-10-28 04:52:31"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 63,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981431",
- "username": "dilebucalossi",
- "fullName": "dilebucalossi",
- "avatarUrl": "https://www.gravatar.com/avatar/71cc24a8d6b8ab5842fafe0b4d94a1de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 11:47:15"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 62,
- "target": 62,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021999",
- "username": "10denisenko10",
- "fullName": "Сергей Денисенко (10denisenko10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021999/medium/6019beedada344d78d324971b3adfd2c.jpeg",
- "joined": "2021-11-18 19:57:26"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 62,
- "target": 58,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999017",
- "username": "Stasha",
- "fullName": "Stasha",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999017/medium/6ada1c7859066549d278be64d778b2fa.jpeg",
- "joined": "2021-11-11 08:32:01"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 59,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14543498",
- "username": "numdar335",
- "fullName": "Nikolaos Karellas (numdar335)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14543498/medium/86c5a5e34804ba36df795323383d16d9.jpeg",
- "joined": "2020-12-20 11:22:34"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 56,
- "target": 56,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003025",
- "username": "RishYang",
- "fullName": "楊日新 (RishYang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003025/medium/2c2e962666bcd40b0f06ca6c1eb5e258.png",
- "joined": "2021-11-14 10:14:36"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 54,
- "target": 94,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15025129",
- "username": "willianpaixao",
- "fullName": "willianpaixao",
- "avatarUrl": "https://www.gravatar.com/avatar/2c3fa9a3959a870790d96b08e7fbce05?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 10:52:30"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 52,
- "target": 59,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029193",
- "username": "xtrzy",
- "fullName": "xtrzy",
- "avatarUrl": "https://www.gravatar.com/avatar/18b91a7c8dc214ade6b3d23353b8cea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 09:14:16"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 50,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957901",
+ "preTranslated": 0,
+ "totalCosts": 68
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 68
+ },
+ "translated": {
+ "tmMatch": 12,
+ "default": 56,
+ "total": 68
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 56,
+ "total": 68
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 12,
+ "default": 56,
+ "total": 68
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15027271,
+ "username": "FDuchesne",
+ "fullName": "florentduchesne (FDuchesne)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027271/medium/b41c07fe5b0ff8c2c5b506eeee41e184.png",
+ "preTranslated": 0,
+ "totalCosts": 149
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 149
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 149,
+ "total": 149
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14395884,
+ "username": "Frodo821",
+ "fullName": "frodo821 (Frodo821)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395884/medium/be6488d24fd9f5ff7ac7d461e6cd6758.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2504
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2504
+ },
+ "translated": {
+ "tmMatch": 412,
+ "default": 2092,
+ "total": 2504
+ },
+ "targetTranslated": {
+ "tmMatch": 1073,
+ "default": 5456,
+ "total": 6529
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 32,
+ "total": 36
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 412,
+ "default": 2092,
+ "total": 2504
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14635690,
+ "username": "mollyroor",
+ "fullName": "hashim alhashimi (mollyroor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635690/medium/869fb615ccd82f3ec379228ccd6a859e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14983201,
+ "username": "longartdavid",
+ "fullName": "heber longart (longartdavid)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/050a2eebc902660c90b7272d1ee4390a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 379
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 379
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 334,
+ "total": 379
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 350,
+ "total": 400
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 334,
+ "total": 379
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12523167,
+ "username": "jackson21182",
+ "fullName": "jackson shi (jackson21182)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3efef6f33bab3a76c44bb09e068a3931?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 37,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957177,
+ "username": "joeurassa",
+ "fullName": "joeurassa",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957177/medium/a88c293bcc8b749456d71edee74329f5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 7708
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7708
+ },
+ "translated": {
+ "tmMatch": 232,
+ "default": 7476,
+ "total": 7708
+ },
+ "targetTranslated": {
+ "tmMatch": 258,
+ "default": 7466,
+ "total": 7724
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 232,
+ "default": 7476,
+ "total": 7708
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15001441,
+ "username": "supercode",
+ "fullName": "kevin lee (supercode)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001441/medium/f08615f09b6d388db02efbc751ca3f77.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 43,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 43,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 43,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14957901,
"username": "LiwenGou",
"fullName": "kevingou (LiwenGou)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957901/medium/acd97ba37a23af54ecfa9e470fcb1f0d.jpeg",
- "joined": "2021-10-11 02:43:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 50,
- "target": 87,
- "approved": 0,
- "voted": 37,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982589",
- "username": "cleber07.gab",
- "fullName": "Cleberson Gabriel (cleber07.gab)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982589/medium/0e324ff9259147b8e782e9545f17bbb4.jpeg",
- "joined": "2021-10-30 10:17:08"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 50,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032613",
- "username": "3olotoy83",
- "fullName": "Rahmatullo Abdullaev (3olotoy83)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15032613/medium/bbddc287052a26aacbc92b56388427c9.jpeg",
- "joined": "2021-11-27 04:51:10"
- },
- "languages": [
- {
- "id": "uz",
- "name": "Uzbek"
- }
- ],
- "translated": 50,
- "target": 49,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022465",
- "username": "avolpe1998",
- "fullName": "avolpe1998",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022465/medium/0c46ffa5589448ece16b6ef83d7c2a1e.jpeg",
- "joined": "2021-11-19 05:08:51"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 50,
- "target": 41,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020157",
- "username": "simplyfoodbiz",
- "fullName": "Смелый Стиль (simplyfoodbiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020157/medium/e87d1d7c1fed53ec6910d8515fe0afba.jpeg",
- "joined": "2021-11-17 10:56:46"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 49,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14340146",
- "username": "axelrindle",
- "fullName": "Axel Rindle (axelrindle)",
- "avatarUrl": "https://www.gravatar.com/avatar/700121f3ea3d87e17a834e8b36fa2657?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 04:37:23"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 48,
- "target": 39,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033057",
- "username": "reiko1991",
- "fullName": "Alessandra P. (reiko1991)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033057/medium/4a20c91eda2b109e3c3f3f12274cbb7c.png",
- "joined": "2021-11-27 12:19:18"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 47,
- "target": 45,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670272",
- "username": "JulienMuggli",
- "fullName": "Julien Muggli (JulienMuggli)",
- "avatarUrl": "https://www.gravatar.com/avatar/a59c8646c23ffc82c3e26019e602f2c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 02:59:18"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 46,
- "target": 51,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000323",
- "username": "aryoharris9a",
- "fullName": "Aryo Haris Wirakusuma (aryoharris9a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000323/medium/fffd3847d1ccffc61f4eeea7cab07f36.jpeg",
- "joined": "2021-11-12 07:31:12"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 45,
- "target": 49,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996665",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 23,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 44,
+ "default": 43,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 17,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 23,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15024805,
+ "username": "laneser.kuo",
+ "fullName": "laneser kuo (laneser.kuo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024805/medium/397e610d238f3db6882905462dcecac0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 36,
+ "default": 175,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 342,
+ "total": 391
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 36,
+ "default": 175,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14991277,
+ "username": "mafezinha",
+ "fullName": "mafê (mafezinha)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991277/medium/537793d445141505c201bf6f59daff90.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 259
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 259
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 232,
+ "total": 259
+ },
+ "targetTranslated": {
+ "tmMatch": 31,
+ "default": 248,
+ "total": 279
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 232,
+ "total": 259
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15019903,
+ "username": "naaa187",
+ "fullName": "naaa187",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019903/medium/eb71b3cb69bad0676610d45b7c805b46.png",
+ "preTranslated": 0,
+ "totalCosts": 880
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 880
+ },
+ "translated": {
+ "tmMatch": 58,
+ "default": 822,
+ "total": 880
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 589,
+ "total": 639
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 58,
+ "default": 822,
+ "total": 880
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14985297,
+ "username": "nicoin39",
+ "fullName": "nicoin39",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985297/medium/a162dafaeba29430c0df4a824a66fc2f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 2,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 165,
+ "default": 8,
+ "total": 173
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 2,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021219,
+ "username": "olexandr13",
+ "fullName": "olexandr13",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021219/medium/ce5d674ca767f1212b184bc3878a368d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14856762,
+ "username": "richardostrmn",
+ "fullName": "richardostrmn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14856762/medium/8ba94b1cc2b169f34e314c11a0e7880b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 552
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 552
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 552,
+ "total": 552
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 544,
+ "total": 544
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 92,
+ "total": 92
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 552,
+ "total": 552
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15026429,
+ "username": "robin.thonhaugen11",
+ "fullName": "robin thonhaugen (robin.thonhaugen11)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026429/medium/a8585ab9f4c29cee70147de56d7e73b0.png",
+ "preTranslated": 0,
+ "totalCosts": 36
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 36
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15037199,
+ "username": "rshiyamdg",
+ "fullName": "rshi mo (rshiyamdg)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15037199/medium/920c5104d94ace251cae3c71e0984c04.png",
+ "preTranslated": 0,
+ "totalCosts": 53
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 53
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14058791,
+ "username": "shameed",
+ "fullName": "shameed",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058791/medium/a52fd50f68c1f10bc8e139c33fddef76.png",
+ "preTranslated": 0,
+ "totalCosts": 101
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 101
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 96,
+ "total": 101
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 198,
+ "total": 209
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 96,
+ "total": 101
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996665,
"username": "slowwdev",
"fullName": "slow (slowwdev)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996665/medium/d9d39ce06d506da97c2bad107ed016c5.png",
- "joined": "2021-11-09 14:37:36"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 44,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001441",
- "username": "supercode",
- "fullName": "kevin lee (supercode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15001441/medium/f08615f09b6d388db02efbc751ca3f77.png",
- "joined": "2021-11-13 04:31:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 44,
- "target": 45,
- "approved": 0,
- "voted": 49,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14989289",
- "username": "KriptoBunny",
- "fullName": "KriptoBunny",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989289/medium/ab471be1fda9094f666fd76082600690.jpg",
- "joined": "2021-11-03 19:14:17"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 42,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999609",
- "username": "metlyakova",
- "fullName": "Alisa Metlyakova (metlyakova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999609/medium/2447d5841fbb956f3d44eea295f09b65.jpeg",
- "joined": "2021-11-11 17:57:15"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 42,
- "target": 50,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14999027",
- "username": "Oetomo",
- "fullName": "Oetomo",
- "avatarUrl": "https://www.gravatar.com/avatar/d4f8b6842ce7edb993915c0d6ccf2752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 08:50:27"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 41,
- "target": 40,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023359",
- "username": "empresamorclo",
- "fullName": "Morclo Empresa (empresamorclo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023359/medium/3370355ea7d096ade0905d238a24f26a.png",
- "joined": "2021-11-19 20:48:18"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 40,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002503",
- "username": "xuqiaose",
- "fullName": "Qiao se Xu (xuqiaose)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002503/medium/e5d866fa06f7598f347de663345aff21.png",
- "joined": "2021-11-13 22:38:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 38,
- "target": 43,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637016",
- "username": "maole",
- "fullName": "maole",
- "avatarUrl": "https://www.gravatar.com/avatar/64c0a27d29a81099cacb505ba3e954b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 11:03:10"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 37,
- "target": 44,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026429",
- "username": "robin.thonhaugen11",
- "fullName": "robin thonhaugen (robin.thonhaugen11)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026429/medium/a8585ab9f4c29cee70147de56d7e73b0.png",
- "joined": "2021-11-22 11:27:40"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 36,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985297",
- "username": "nicoin39",
- "fullName": "nicoin39",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985297/medium/a162dafaeba29430c0df4a824a66fc2f.jpg",
- "joined": "2021-11-01 08:56:11"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 35,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021217",
- "username": "senthilvenkat",
- "fullName": "Venkatachalam (senthilvenkat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021217/medium/5b98edb188f1d3de5516a85f4c0d8348.png",
- "joined": "2021-11-18 07:32:47"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 34,
- "target": 61,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13583128",
- "username": "nikaose",
- "fullName": "nikaose",
- "avatarUrl": "https://www.gravatar.com/avatar/8797df9c6783cbd1053c886e2916af38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 16:47:05"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 34,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13897487",
- "username": "ethdotorg",
- "fullName": "Ethereum.org Team (ethdotorg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13897487/medium/246e50d7e9ccde07088ed892b07a0efd.png",
- "joined": "2019-06-27 06:42:56"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- },
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "bg",
- "name": "Bulgarian"
- },
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "da",
- "name": "Danish"
- },
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "fi",
- "name": "Finnish"
- },
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "ko",
- "name": "Korean"
- },
- {
- "id": "lt",
- "name": "Lithuanian"
- },
- {
- "id": "nl",
- "name": "Dutch"
- },
- {
- "id": "no",
- "name": "Norwegian"
- },
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sk",
- "name": "Slovak"
- },
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "th",
- "name": "Thai"
- },
- {
- "id": "hr",
- "name": "Croatian"
- },
- {
- "id": "et",
- "name": "Estonian"
- },
- {
- "id": "az",
- "name": "Azerbaijani"
- },
- {
- "id": "hi",
- "name": "Hindi"
- },
- {
- "id": "ms",
- "name": "Malay"
- },
- {
- "id": "my",
- "name": "Burmese"
- },
- {
- "id": "fil",
- "name": "Filipino"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- },
- {
- "id": "uz",
- "name": "Uzbek"
- },
- {
- "id": "kn",
- "name": "Kannada"
- },
- {
- "id": "sw",
- "name": "Swahili"
- },
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- },
- {
- "id": "ne-NP",
- "name": "Nepali"
- },
- {
- "id": "tg",
- "name": "Tajik"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- },
- {
- "id": "ig",
- "name": "Igbo"
- }
- ],
- "translated": 32,
- "target": 53,
- "approved": 4,
- "voted": 0,
- "positiveVotes": 631,
- "negativeVotes": 68,
- "winning": 13
- },
- {
- "user": {
- "id": "15029781",
- "username": "B0nst3r",
- "fullName": "B0nst3r",
- "avatarUrl": "https://www.gravatar.com/avatar/7275eb6c8622d46317cbbc160c0ac843?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 19:58:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 32,
- "target": 26,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682564",
- "username": "rich1n",
- "fullName": "Richard Rodríguez (rich1n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682564/medium/3198f898fb53f31fa32bf08236627a34.jpeg",
- "joined": "2021-06-10 21:58:15"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 32,
- "target": 45,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "15002823",
- "username": "sdominguez894",
- "fullName": "Sergio Domínguez (sdominguez894)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002823/medium/1d1caae3bcae5e7a54ddaa3a4b15784b.jpeg",
- "joined": "2021-11-14 06:40:59"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 32,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748368",
- "username": "i-shivamsoni",
- "fullName": "Shivam Soni (i-shivamsoni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748368/medium/e03c2dbecb8b847dac210c562882112b.jpeg",
- "joined": "2021-11-25 05:21:14"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 31,
- "target": 55,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980727",
- "username": "francismaduro",
- "fullName": "francismaduro",
- "avatarUrl": "https://www.gravatar.com/avatar/6317d5bd489d8ca570ea2954ea7475db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 04:02:18"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 31,
- "target": 33,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033497",
- "username": "programonauta",
- "fullName": "programonauta",
- "avatarUrl": "https://www.gravatar.com/avatar/358ba475fad48e1783afe977706d1c7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 22:51:45"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 30,
- "target": 34,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866158",
- "username": "Kazel",
- "fullName": "Kazel",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866158/medium/95b9c5e14784dc12d1399307e66d4eb2.gif",
- "joined": "2021-08-04 08:56:36"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 30,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 24,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958579",
- "username": "AWZ",
- "fullName": "AWZ",
- "avatarUrl": "https://www.gravatar.com/avatar/c1847aceaa5b7bb77810b614a56de60e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 23:21:26"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 29,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996735",
- "username": "AndreaBadini",
- "fullName": "AndreaBadini",
- "avatarUrl": "https://www.gravatar.com/avatar/95266066115a8f09d277ee565691426a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-09 15:42:39"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 28,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12523167",
- "username": "jackson21182",
- "fullName": "jackson shi (jackson21182)",
- "avatarUrl": "https://www.gravatar.com/avatar/3efef6f33bab3a76c44bb09e068a3931?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 03:50:35"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 26,
- "target": 37,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003205",
- "username": "fernandososxd4",
- "fullName": "Alex Flores (fernandososxd4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003205/medium/b1db938973973fdb74103eab0f2ae3a7.jpeg",
- "joined": "2021-11-14 13:25:00"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031079",
- "username": "jvxon",
- "fullName": "Nhơn Võ (jvxon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15031079/medium/1099cf15f2a152105f5014bb6e748954.jpeg",
- "joined": "2021-11-25 21:44:36"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 26,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12892013",
- "username": "donlaiq",
- "fullName": "donlaiq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12892013/medium/3ab82b955b65e5eac6d5c108533c38a7.jpg",
- "joined": "2021-11-20 09:54:29"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990899",
- "username": "juan.baranowa",
- "fullName": "Diego Baranowski (juan.baranowa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990899/medium/c7ef51465c9acf0f30c989ec42d6d5d2.png",
- "joined": "2021-11-05 03:31:34"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 25,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14986897",
- "username": "Blockchainnewbie",
- "fullName": "Blockchainnewbie",
- "avatarUrl": "https://www.gravatar.com/avatar/70d268bdaf5a4a94ba316f5a49e9fb55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 06:01:24"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 24,
- "target": 28,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987673",
- "username": "vlunaram",
- "fullName": "vlunaram",
- "avatarUrl": "https://www.gravatar.com/avatar/d436fcb22ecfe2eaf1f7b3ccfb530cd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 15:18:25"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 24,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982575",
- "username": "Dhirajnyse",
- "fullName": "DJ (Dhirajnyse)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982575/medium/da7bc8b41720e10df6e46a4a76d78bb2.jpeg",
- "joined": "2021-10-30 10:01:39"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 23,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033811",
- "username": "Lubiab19",
- "fullName": "Lubiab19",
- "avatarUrl": "https://www.gravatar.com/avatar/85f5f55b79e8f44bf36ebd75a3883092?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 05:35:41"
- },
- "languages": [
- {
- "id": "ur-IN",
- "name": "Urdu (India)"
- }
- ],
- "translated": 23,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028313",
- "username": "jafuda",
- "fullName": "jafuda",
- "avatarUrl": "https://www.gravatar.com/avatar/bb3ad2846c9c73de07ab3c8e009a8d1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 17:14:25"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 22,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999683",
- "username": "amal.jaison2000",
- "fullName": "amal jaison (amal.jaison2000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999683/medium/2a99d9bd895c3104f4b4ca40e8642477.jpeg",
- "joined": "2021-11-11 19:38:37"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 22,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814538",
- "username": "multilkyx",
- "fullName": "Multi lkyx (multilkyx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814538/medium/a758db833b50a769463ef35c5d5b99f1.gif",
- "joined": "2021-06-24 23:36:03"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 21,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022459",
- "username": "leonardo002031",
- "fullName": "Leonardo Williams (leonardo002031)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022459/medium/49d209032b65b891f5122d63ca0e7490.png",
- "joined": "2021-11-19 09:55:53"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 21,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987665",
- "username": "Artem_Levenko",
- "fullName": "Artem_Levenko",
- "avatarUrl": "https://www.gravatar.com/avatar/17f91c5dddb6c7766a5153a009880b3b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 05:20:18"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 20,
- "target": 16,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958061",
- "username": "Dearry",
- "fullName": "Dearry",
- "avatarUrl": "https://www.gravatar.com/avatar/c0545f4225c9b4184db8d4a7eef62a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 05:23:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 19,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999585",
- "username": "CaptnSauerkraut",
- "fullName": "CaptnSauerkraut",
- "avatarUrl": "https://www.gravatar.com/avatar/6c22f8073f60dde4c50101bf6d222da9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 17:10:08"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 18,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996511",
- "username": "rlandeira",
- "fullName": "Renato A. Landeira (rlandeira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996511/medium/bc8903b9375a605c6351bc77c9976524.jpeg",
- "joined": "2021-11-09 12:29:19"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 18,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14988379",
- "username": "Nikita_Yuriev",
- "fullName": "Никита Юрьев (Nikita_Yuriev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988379/medium/30ba5c83780593f0dbbb5f35b47dd1b7.png",
- "joined": "2021-11-06 07:11:40"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 18,
- "target": 17,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030189",
- "username": "seshasri",
- "fullName": "seshasri",
- "avatarUrl": "https://www.gravatar.com/avatar/bf6eab15bd0d4c2712b91ea83172f980?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 04:53:48"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 17,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996607",
- "username": "rigmah",
- "fullName": "성창환 (rigmah)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996607/medium/fdd3ab42388c593e2bc61fc4ebba6849.png",
- "joined": "2021-11-09 13:39:26"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 16,
- "target": 16,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14988257",
- "username": "khafidprayoga",
- "fullName": "Khafid Prayoga (khafidprayoga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988257/medium/90f049a63e6c2b1d6775756247dbdc5a.jpeg",
- "joined": "2021-11-03 03:22:38"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 15,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992833",
- "username": "Nommie",
- "fullName": "Nommie",
- "avatarUrl": "https://www.gravatar.com/avatar/6eadf26d494174c45ea18d5af36b6f66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 15:30:16"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 15,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024397",
- "username": "AM113",
- "fullName": "AM113",
- "avatarUrl": "https://www.gravatar.com/avatar/b735be89478a1b1d81ca55d1cc4e2cce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 17:19:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 15,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027127",
- "username": "sunnyyyc",
- "fullName": "sunnyyyc",
- "avatarUrl": "https://www.gravatar.com/avatar/e4592835622152ea1bb4e87ca028bed8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 00:32:15"
- },
- "languages": [
- {
- "id": "gu-IN",
- "name": "Gujarati"
- }
- ],
- "translated": 15,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024245",
- "username": "gayathri.ramanujam.2021",
- "fullName": "Gayathri Ramanujam (gayathri.ramanujam.2021)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15024245/medium/334a06e375b4e1726f745adff19eadb3.png",
- "joined": "2021-11-20 14:01:51"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 15,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005325",
- "username": "dmrdemircioglu08",
- "fullName": "Demir Demircioglu (dmrdemircioglu08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005325/medium/07bdd1addeecac3fa5c9d1c4469fcdd3.jpeg",
- "joined": "2021-11-16 07:07:47"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 14,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034331",
- "username": "sjadrzvani1998",
- "fullName": "sjadrzvani1998",
- "avatarUrl": "https://www.gravatar.com/avatar/f5eb76929dad34e5283b059b1a231d88?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 15:32:33"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 14,
- "target": 17,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991627",
- "username": "isemau",
- "fullName": "Isemau Antong Tie (isemau)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14991627/medium/e6eecc0d9401f25366b7e6020b466415.png",
- "joined": "2021-11-05 14:04:23"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 14,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029535",
- "username": "vitekurban0",
- "fullName": "Vit Urban (vitekurban0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029535/medium/d1920ed19810c05c35d43b4ea0a8ff85.png",
- "joined": "2021-11-24 14:31:15"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 14,
- "target": 15,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769736",
- "username": "Andpatagon",
- "fullName": "Andpatagon",
- "avatarUrl": "https://www.gravatar.com/avatar/5aa159c0ea923eba17a923ca3c2930c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 15:21:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 14,
- "target": 16,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14158559",
- "username": "BruceLvJC",
- "fullName": "吕锦程 (BruceLvJC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158559/medium/6173bbb0f2c1da287c7c3864d98fd739.jpg",
- "joined": "2021-11-16 03:44:11"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 14,
- "target": 38,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996737",
- "username": "_FROGGIE__",
- "fullName": "_FROGGIE__",
- "avatarUrl": "https://www.gravatar.com/avatar/c57a9394def752f461ff5f3b9d8dfad4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 03:11:19"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 13,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021479",
- "username": "dcecil",
- "fullName": "dcecil",
- "avatarUrl": "https://www.gravatar.com/avatar/20e2ccb1fb13cd9dbf3fc8d218747a99?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-18 11:18:18"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 11,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985003",
- "username": "m.naeimy",
- "fullName": "Meysam Naeimy (m.naeimy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985003/medium/0e21b7a5dcd802d0203fceadaf2ef22f.png",
- "joined": "2021-11-01 04:40:38"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 10,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023385",
- "username": "Aparticle",
- "fullName": "Aparticle",
- "avatarUrl": "https://www.gravatar.com/avatar/7145c493f2cd4d97b93ef42b16a88478?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 21:22:29"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 10,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983237",
- "username": "Zaqms",
- "fullName": "Zaqms",
- "avatarUrl": "https://www.gravatar.com/avatar/7948ededf44b206485cb4e1337f3036e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 23:42:17"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 10,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026807",
- "username": "arican35",
- "fullName": "arican35",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026807/medium/a64aca2b97f9362fdcee4d7ac1145477.png",
- "joined": "2021-11-22 16:46:22"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 10,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779018",
- "username": "jaskoeth",
- "fullName": "jaskoeth",
- "avatarUrl": "https://www.gravatar.com/avatar/8985ed0bd166da1b98c9c957829d0c24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 04:59:16"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 10,
- "target": 8,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980905",
- "username": "Ash601",
- "fullName": "Ash601",
- "avatarUrl": "https://www.gravatar.com/avatar/0c0e62552585e1262e035565688260e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 06:05:50"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "15020309",
- "username": "sandeepsahu",
- "fullName": "Sandeep Kumar Sahu (sandeepsahu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020309/medium/19858a2b34be230b1d361e5a0be59757.jpeg",
- "joined": "2021-11-17 12:46:31"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12817692",
- "username": "poltoray",
- "fullName": "poltoray",
- "avatarUrl": "https://www.gravatar.com/avatar/588c81f1c401f3512b1e7a4466e68485?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 07:18:36"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 9,
- "target": 14,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981781",
- "username": "frameset",
- "fullName": "frameset",
- "avatarUrl": "https://www.gravatar.com/avatar/5f768fb05238d3a9ff75c4d56ce52061?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 17:04:55"
- },
- "languages": [
- {
- "id": "ku",
- "name": "Kurdish"
- }
- ],
- "translated": 9,
- "target": 8,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14389094",
- "username": "Pol_Lanski",
- "fullName": "Pol_Lanski",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14389094/medium/7c36be19eeb088c45a38e21224aca68f.jpg",
- "joined": "2020-08-24 02:33:35"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 9,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15025347",
- "username": "Imothep12",
- "fullName": "Imothep12",
- "avatarUrl": "https://www.gravatar.com/avatar/2874e7a09ede048e240ddb883db8bc6b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 14:52:27"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995627",
- "username": "slelrlelgla",
- "fullName": "Sergey (slelrlelgla)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995627/medium/5c9cc272fc1131cd84293a6c6a69e5fe.jpeg",
- "joined": "2021-11-08 21:27:15"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 8,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005021",
- "username": "mrcvs31",
- "fullName": "Marc Vernet (mrcvs31)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005021/medium/99b5ad6194f6bf4449f55fb9a64f97c0.jpeg",
- "joined": "2021-11-16 02:05:38"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 8,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992673",
- "username": "dmars300",
- "fullName": "Diego Mares (dmars300)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992673/medium/4add4365ba4bd588ffc2988d4d7966fa.jpeg",
- "joined": "2021-11-06 12:40:50"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996887",
- "username": "berksukahramn",
- "fullName": "Berksu Kahraman (berksukahramn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996887/medium/e27fe47548643527bf782f6881c5318b.png",
- "joined": "2021-11-09 18:40:09"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028277",
- "username": "mowaii",
- "fullName": "mowaii",
- "avatarUrl": "https://www.gravatar.com/avatar/01a6398959b9c93dcc3ed0f406eb857a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 16:20:40"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 7,
- "target": 8,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034399",
- "username": "Blob.eth",
- "fullName": "Blob.eth",
- "avatarUrl": "https://www.gravatar.com/avatar/4a544345569010a1d328df3bfcbc11ad?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 17:14:24"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030445",
- "username": "eth31",
- "fullName": "eth31",
- "avatarUrl": "https://www.gravatar.com/avatar/309c2f8ce89e7c67718e3ba5ef91bef8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 08:55:27"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635690",
- "username": "mollyroor",
- "fullName": "hashim alhashimi (mollyroor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635690/medium/869fb615ccd82f3ec379228ccd6a859e.jpeg",
- "joined": "2021-02-22 05:15:13"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 7,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998947",
- "username": "JohanZwaan",
- "fullName": "JohanZwaan",
- "avatarUrl": "https://www.gravatar.com/avatar/059ccba4dec87bf92777b65c96d4eea5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 07:53:25"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 6,
- "target": 114,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983447",
- "username": "vincentlaucy",
- "fullName": "Chun Yin Vincent Lau (vincentlaucy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983447/medium/209213ddd4e53e7b0996911c0436f71d.png",
- "joined": "2021-10-31 02:01:03"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 6,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13842283",
- "username": "Dzenan",
- "fullName": "Dženan (Dzenan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13842283/medium/bbfb9ef4136417577f368ab059d20644.jpeg",
- "joined": "2021-02-01 16:25:44"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13659341",
- "username": "nimapourazad52",
- "fullName": "Nima Pourazad (nimapourazad52)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13659341/medium/4ad7ae1e017a3fd4ddba1d1a8c30bb51.jpg",
- "joined": "2021-07-21 00:46:30"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 6,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14675712",
- "username": "LEMIBANDDEXARI",
- "fullName": "MIBAND (LEMIBANDDEXARI)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/3416b6f2cac5da2e70205556774c847e.png",
- "joined": "2021-03-26 08:03:58"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 5,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998839",
- "username": "jony.stn",
- "fullName": "Jony S (jony.stn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998839/medium/db1c6ba3b1fe58d45e94b7d36ba46677.png",
- "joined": "2021-11-11 06:22:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021219",
- "username": "olexandr13",
- "fullName": "olexandr13",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021219/medium/ce5d674ca767f1212b184bc3878a368d.jpeg",
- "joined": "2021-11-18 07:12:54"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14986013",
- "username": "santosmichael3856",
- "fullName": "Santos Michael (santosmichael3856)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14986013/medium/7145f141cdce5146f180f8455875b76c.png",
- "joined": "2021-11-02 03:21:22"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 4,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13071224",
- "username": "akkiris",
- "fullName": "Ali Kaan Kiriş (akkiris)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13071224/medium/70bc840133ae0f0c69d172f5108d06f0.jpg",
- "joined": "2021-11-07 19:28:19"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13559470",
- "username": "DavidCai1993",
- "fullName": "David Cai (DavidCai1993)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559470/medium/1e2b0d1a56fd808a6ae2f7ac6bc45075.jpeg",
- "joined": "2021-11-17 01:57:42"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003615",
- "username": "coffe67",
- "fullName": "Narciso Avalos (coffe67)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003615/medium/6595139d2c5d5e19f74d7859d0f0bea8.jpeg",
- "joined": "2021-11-14 22:23:32"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13502365",
- "username": "dogukan.26c2",
- "fullName": "Kürşad Kanlı (dogukan.26c2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13502365/medium/9fffbebbce3fed225f001a10dd570860.jpg",
- "joined": "2021-11-02 04:13:54"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974343",
- "username": "George4530",
- "fullName": "George4530",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974343/medium/eccecfc959d5a742451c99f239351234.jpg",
- "joined": "2021-10-24 06:25:05"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 85,
- "negativeVotes": 19,
- "winning": 0
- },
- {
- "user": {
- "id": "15026503",
- "username": "MB337",
- "fullName": "Matteo Bianchi (MB337)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026503/medium/a98b0fc8ef5fa3095adac492aac5bf5f.jpeg",
- "joined": "2021-11-22 12:03:41"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982037",
- "username": "denyirawan",
- "fullName": "Deny Anggi Irawan (denyirawan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14982037/medium/2c440d6ee2460ca805d18915e7fd58b0.png",
- "joined": "2021-10-29 23:12:29"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14994889",
- "username": "t123987132",
- "fullName": "Rick Ho (t123987132)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994889/medium/93d1e53923e9e7018fa27234967859e8.png",
- "joined": "2021-11-08 08:38:24"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 2,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004413",
- "username": "Judzovka",
- "fullName": "Judzovka",
- "avatarUrl": "https://www.gravatar.com/avatar/96db3d146f56e353c11734a72926390d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 12:24:51"
- },
- "languages": [
- {
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14473322",
- "username": "Elhadi_Bouazizi",
- "fullName": "Elhadi_Bouazizi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14473322/medium/597d58b8d19a3394b781b39fbb5c1a3c.jpg",
- "joined": "2021-01-20 11:51:02"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985249",
- "username": "Venenosa03",
- "fullName": "Samantha H. (Venenosa03)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985249/medium/bb7a19c923d2a36d7c69d2b92f448c17.jpeg",
- "joined": "2021-11-01 08:14:39"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995909",
- "username": "borodinavaleria8",
- "fullName": "Валерия Бородина (borodinavaleria8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995909/medium/546efb6d14694d4fc0bb261ec7bb350d.png",
- "joined": "2021-11-11 15:31:06"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995121",
- "username": "abhi.kanodia803",
- "fullName": "abhishek Kanodia (abhi.kanodia803)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995121/medium/d05ae7488e7a8e4a2b4e2be59c889f0e.jpeg",
- "joined": "2021-11-08 11:30:15"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14980407",
- "username": "effy.yin",
- "fullName": "Effy Yin (effy.yin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14980407/medium/5d9e6f53ff114ccf4f721d700110ee13.jpeg",
- "joined": "2021-10-28 22:38:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775478",
- "username": "massimo.renzi.serviziauto.it",
- "fullName": "Massimo Renzi (massimo.renzi.serviziauto.it)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775478/medium/d7f3ec6247cbe28f330bb49eeb421584.png",
- "joined": "2021-05-27 14:41:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780840",
- "username": "amy.yingzhao",
- "fullName": "Amy (amy.yingzhao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780840/medium/0aba5691262a6bf6a8a56d9a391c6b9f.jpeg",
- "joined": "2021-05-31 23:52:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780880",
- "username": "arnoldo.lat",
- "fullName": "arnoldo.lat",
- "avatarUrl": "https://www.gravatar.com/avatar/b465c0d7ec2b8fdb93400d9e93585262?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 00:26:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775426",
- "username": "leekarmeng9",
- "fullName": "leekarmeng9",
- "avatarUrl": "https://www.gravatar.com/avatar/710785b07b027423633a9a7b669fc5d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 16:44:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781176",
- "username": "GraysonZhang",
- "fullName": "我是花轮 (GraysonZhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781176/medium/d43f3175d04c05008e18cb3c14209ff2.png",
- "joined": "2021-06-01 05:57:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775946",
- "username": "Beas",
- "fullName": "Beas",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775946/medium/22ad4db44fa2f657ec257775cddc899c.jpg",
- "joined": "2021-05-28 09:52:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777356",
- "username": "AleksanderU",
- "fullName": "AleksanderU",
- "avatarUrl": "https://www.gravatar.com/avatar/9bc05e7e7f73fbb6c8f9d06f623d0910?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-29 04:35:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780896",
- "username": "Hacklowa",
- "fullName": "Hacklowa",
- "avatarUrl": "https://www.gravatar.com/avatar/d8e6df7ff204ca03bc2a2f76c4923b33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 00:52:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777028",
- "username": "jieunrim",
- "fullName": "Jieun Rim (jieunrim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777028/medium/1fe90e42c9af650a9cf108d584403209.png",
- "joined": "2021-05-28 19:52:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775416",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/6497883f93acdfc4506f4fffe6d43a0a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 13:35:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776892",
- "username": "Juampe",
- "fullName": "Juan Pedro González (Juampe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14776892/medium/ed93a942f76be8907e623f5824f16e9b.jpeg",
- "joined": "2021-05-28 16:51:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776878",
- "username": "JoshNX",
- "fullName": "JoshNX",
- "avatarUrl": "https://www.gravatar.com/avatar/4137d46ef3ef3f0fcb886d48e80491d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 16:30:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776866",
- "username": "Piter666",
- "fullName": "Piter666",
- "avatarUrl": "https://www.gravatar.com/avatar/23e91ffae232d25364aa0dd4c8d8eaff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 16:14:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776668",
- "username": "ana.rodrigues",
- "fullName": "ana.rodrigues",
- "avatarUrl": "https://www.gravatar.com/avatar/67de41c05bb9a3bbf6ac836098557d26?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 12:57:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781120",
- "username": "hamed.ashrafi",
- "fullName": "Hamed Ashrafi (hamed.ashrafi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781120/medium/d555db51771c6342e7a1cbe6ac78039b.jpeg",
- "joined": "2021-06-01 04:49:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781034",
- "username": "Tomfoxy0852",
- "fullName": "Tomfoxy0852",
- "avatarUrl": "https://www.gravatar.com/avatar/51f8a651a0b3b57c601d5cf147e3ae29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 03:13:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775706",
- "username": "xx--omar--xx",
- "fullName": "عمر المزواري (xx--omar--xx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775706/medium/36bdb89bb709a92eda9c9b0b2521cf6e.jpeg",
- "joined": "2021-05-27 19:31:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776226",
- "username": "feistar",
- "fullName": "Fei Wen (feistar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14776226/medium/5e0abce0a8f875b0a4352eed7ef2067b.jpeg",
- "joined": "2021-05-28 06:09:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775956",
- "username": "Leruk",
- "fullName": "Timur Pikovets (Leruk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775956/medium/cac7cd7eb165362b9d35654f1c932586.png",
- "joined": "2021-05-28 02:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780966",
- "username": "umut-ay",
- "fullName": "Umut Kaan Işık (umut-ay)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780966/medium/f40dd13f50d7e4a2a2ad9294fe429bc6.jpeg",
- "joined": "2021-06-01 02:01:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781010",
- "username": "NinaWrong",
- "fullName": "NinaWrong",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781010/medium/8c3e0660cd91ea8501e6d571d298fc62.jpeg",
- "joined": "2021-06-01 02:44:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775492",
- "username": "riesterkilian",
- "fullName": "Kilian Riester (riesterkilian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775492/medium/502eb2a57d2062455fd7d5e170d9e14e.png",
- "joined": "2021-05-27 14:54:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778160",
- "username": "wynako",
- "fullName": "Xsourcingf (wynako)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778160/medium/2bbf8cda69d3ab51ac86cc1d50ed69c2.png",
- "joined": "2021-05-29 21:07:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777388",
- "username": "henryprohater",
- "fullName": "Henry_Prohater (henryprohater)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777388/medium/f9050a3878fe999bfab4ba907a8e5cde.png",
- "joined": "2021-05-29 05:18:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779418",
- "username": "arminshoughi",
- "fullName": "armin shoghi (arminshoughi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779418/medium/871c3e1eb7d9102bbec05027c14dcdfe.jpeg",
- "joined": "2021-05-31 00:18:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778926",
- "username": "FedericoV",
- "fullName": "FedericoV",
- "avatarUrl": "https://www.gravatar.com/avatar/e7d4c282f4dc61c560a7b89d15d4f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 14:27:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779586",
- "username": "patrick020804",
- "fullName": "Patrick D. Halberg (patrick020804)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779586/medium/e95f76f316fe199da587bb52cdb0e89d.png",
- "joined": "2021-05-31 04:00:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778950",
- "username": "diplomaticone66",
- "fullName": "diplomaticone66",
- "avatarUrl": "https://www.gravatar.com/avatar/2c8a4711e2887877dfbbba99b5c09a6e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 14:45:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779562",
- "username": "andrejmirovic",
- "fullName": "andrejmirovic",
- "avatarUrl": "https://www.gravatar.com/avatar/43a8f2a3cb58903a933b335fe6a98e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 03:36:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779546",
- "username": "arpit.kumar",
- "fullName": "ARPIT KUMAR (arpit.kumar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779546/medium/1b77f7cf2e4930307ad3dd36345e5017.png",
- "joined": "2021-05-31 03:31:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779518",
- "username": "iromain",
- "fullName": "iromain",
- "avatarUrl": "https://www.gravatar.com/avatar/e8b9b351cf57be1bddf548fc104dcb09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 02:48:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779512",
- "username": "amkelhatw",
- "fullName": "Aly Hatw (amkelhatw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779512/medium/c1bff336933b85526e7bba7078cc79be.png",
- "joined": "2021-05-31 02:39:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14778956",
- "username": "zhaitkin",
- "fullName": "Zak Haitkin (zhaitkin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778956/medium/cbbcb41eea198309631de1e55bd67ddd.jpeg",
- "joined": "2021-05-30 14:56:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779220",
- "username": "damienk",
- "fullName": "damienk",
- "avatarUrl": "https://www.gravatar.com/avatar/00a8722582bce7f61d6e74e2fd1c2471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 19:23:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779612",
- "username": "gwenael.griffon",
- "fullName": "GwN (gwenael.griffon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779612/medium/a701e4e478f925227717ec68a9fb0581.jpeg",
- "joined": "2021-05-31 04:27:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779212",
- "username": "matthewrock2011",
- "fullName": "Lil Homo (matthewrock2011)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779212/medium/39661a937aa3dc153a7acd8d06b4a8fd.jpeg",
- "joined": "2021-05-30 19:21:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779146",
- "username": "Ewen190402",
- "fullName": "Ewen (Ewen190402)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779146/medium/9b4d550ef47412c053101f91995038c5.png",
- "joined": "2021-05-30 18:07:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778974",
- "username": "Plaotin",
- "fullName": "Plaotin",
- "avatarUrl": "https://www.gravatar.com/avatar/eab03bb8abbb3f1774760eea9ff5be07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 15:03:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779128",
- "username": "Alexandros_An",
- "fullName": "Alexandros_An",
- "avatarUrl": "https://www.gravatar.com/avatar/12664a63595289ebc401fba5acab07c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 17:48:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775092",
- "username": "alexsenchin",
- "fullName": "alexsenchin",
- "avatarUrl": "https://www.gravatar.com/avatar/9aab7074203a4c051ab2a23acf134c6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 09:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778976",
- "username": "Jakob_Farian_Krarup",
- "fullName": "Jakob Farian Krarup (Jakob_Farian_Krarup)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778976/medium/b0d2bc0c4bb05f9c8da4fac5af6acd5b.jpeg",
- "joined": "2021-05-30 15:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778992",
- "username": "IsmaelRC",
- "fullName": "El Gato (IsmaelRC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778992/medium/646865835d4b959bf3bfca67b66ef04f.png",
- "joined": "2021-05-30 15:24:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778994",
- "username": "george_madikas",
- "fullName": "George Madikas (george_madikas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778994/medium/4cfe80680f967a77cf11d702460efc46.jpeg",
- "joined": "2021-05-30 15:21:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778910",
- "username": "dilian.nalbantov",
- "fullName": "Dilyan Nalbantov (dilian.nalbantov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778910/medium/00559aa3f79533afbbb0eee1b5be29f1.jpeg",
- "joined": "2021-05-30 14:15:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779628",
- "username": "echo.wang9192",
- "fullName": "echo wang (echo.wang9192)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779628/medium/d2ecefc415ceccd7755167fc332eb6c4.png",
- "joined": "2021-06-23 05:28:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777620",
- "username": "luyu7559",
- "fullName": "xianwu lu (luyu7559)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777620/medium/054bf3002d2dc5fdf1049b8f8a6c0b6f.jpeg",
- "joined": "2021-05-29 10:07:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779956",
- "username": "aminmousavi5147",
- "fullName": "amin mousavi (aminmousavi5147)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779956/medium/e7f9bbadcf8a0fcd735ad66373fdb4fd.png",
- "joined": "2021-05-31 08:09:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777654",
- "username": "rikcags",
- "fullName": "Ricardo Gaxiola (rikcags)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777654/medium/2b82111d83c35beff3f05476b3a65b2f.png",
- "joined": "2021-05-29 10:39:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780684",
- "username": "ssfuentes.99",
- "fullName": "sebastian fuentes (ssfuentes.99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780684/medium/043f791a09160411432cc5c7146f6aaa.jpeg",
- "joined": "2021-05-31 20:26:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780506",
- "username": "madhupuranik",
- "fullName": "Madhu S Puranik (madhupuranik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780506/medium/fcaf897c30258cd1a675a9d9210816a9.jpeg",
- "joined": "2021-05-31 16:07:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780488",
- "username": "daniil.khyzhniak",
- "fullName": "Daniil Khyzhniak (daniil.khyzhniak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780488/medium/3cfbd9dab620e021904c163e614199e3.png",
- "joined": "2021-05-31 15:43:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780362",
- "username": "88wcJoWl",
- "fullName": "Jona (88wcJoWl)",
- "avatarUrl": "https://www.gravatar.com/avatar/58ecaea5ef98515761ef428c59fdacb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 15:20:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777840",
- "username": "educordobac",
- "fullName": "Edu Córdoba (educordobac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777840/medium/28e0c7c5a9b9377a04173c40e52eb5f2.jpeg",
- "joined": "2021-05-29 13:29:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780208",
- "username": "marko.soldo17",
- "fullName": "ice578 (marko.soldo17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780208/medium/9ed60f78ebf70fd97eee70588062babb.jpeg",
- "joined": "2021-05-31 11:35:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780050",
- "username": "davidsard",
- "fullName": "David Sardinha (davidsard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780050/medium/a71a50629c8f17bbc5648dfc208157f8.png",
- "joined": "2021-05-31 09:34:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14777938",
- "username": "arcadipaneluigi05",
- "fullName": "Luigi Arcadipane (arcadipaneluigi05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777938/medium/7780111bb3377c948f242d5c60904ddd.png",
- "joined": "2021-05-29 15:23:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778796",
- "username": "Tiara19",
- "fullName": "Fauzi Rahman (Tiara19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778796/medium/78468d88b1f5701e8d8aefa5c6272c4d.jpeg",
- "joined": "2021-05-30 12:34:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779894",
- "username": "willemringnalda",
- "fullName": "Don Willy (willemringnalda)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779894/medium/b053311fee67d8e8d1bb6a197022979b.png",
- "joined": "2021-05-31 07:11:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779764",
- "username": "Mar3s",
- "fullName": "Mario Yang (Mar3s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779764/medium/7bbdbc6cac3c460360fe5e1295a139b9.png",
- "joined": "2021-05-31 05:45:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779700",
- "username": "viktolas",
- "fullName": "Victor B (viktolas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779700/medium/b093f2503629b02618afc9e43f1ec486.jpeg",
- "joined": "2021-05-31 05:16:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 22,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14778302",
- "username": "TheBrazilianDude",
- "fullName": "TheBrazilianDude",
- "avatarUrl": "https://www.gravatar.com/avatar/85fb868fc9ac7e59a500436000261b19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 01:48:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779688",
- "username": "michaelmeli",
- "fullName": "michaelmeli",
- "avatarUrl": "https://www.gravatar.com/avatar/359dabbe068e2581c31d896b17648203?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 05:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778638",
- "username": "Aiyaya.Zihan",
- "fullName": "Aiyaya.Zihan",
- "avatarUrl": "https://www.gravatar.com/avatar/c7b333dd9a8c7cc46bb87bf28c0a7e10?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 09:10:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779686",
- "username": "WorsT21",
- "fullName": "WorsT21",
- "avatarUrl": "https://www.gravatar.com/avatar/d4d30285fbef0996a2f6e878115f6a44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 05:13:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778724",
- "username": "tpereira2005",
- "fullName": "Tomás Pereira (tpereira2005)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778724/medium/03bd53bd35c7863f67760bc34e0289f7.jpg",
- "joined": "2021-05-30 10:59:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775170",
- "username": "sy.199.as",
- "fullName": "احمد مجدمي (sy.199.as)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775170/medium/2db7266809e5769a4057c423167dedc6.jpeg",
- "joined": "2021-05-27 10:34:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767094",
- "username": "joshuaoliverdouglas",
- "fullName": "Joshua Douglas (joshuaoliverdouglas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767094/medium/3114c0487b19c05afa8dc283c94c3a76.png",
- "joined": "2021-05-21 12:26:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775032",
- "username": "fadeltd",
- "fullName": "Fadel Trivandi Dipantara (fadeltd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775032/medium/6055b8485797870254f6f76e17aafd3c.jpeg",
- "joined": "2021-05-27 09:00:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761864",
- "username": "stevensun9046",
- "fullName": "Steven Sun (stevensun9046)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761864/medium/040069d06c6dc89e287ef60bde6c7968.png",
- "joined": "2021-05-18 02:15:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760586",
- "username": "floandy",
- "fullName": "Florian Krippner (floandy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760586/medium/57f87df59f24a82082b8210539f6e3c4.jpeg",
- "joined": "2021-05-17 05:38:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760662",
- "username": "stepanov0808200",
- "fullName": "MoolCooV (stepanov0808200)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760662/medium/0f50d9b003a29eec10bcce9ced1e43e4.jpeg",
- "joined": "2021-05-17 06:57:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760728",
- "username": "amicod9r",
- "fullName": "AwiR (amicod9r)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760728/medium/2905324afa04498f40bdcde399b96d47.jpeg",
- "joined": "2021-05-17 07:53:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760746",
- "username": "centaurian",
- "fullName": "centaurian",
- "avatarUrl": "https://www.gravatar.com/avatar/1f48400ab68be9e2848fb312c9dc6230?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 08:15:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760876",
- "username": "Flipper98rus",
- "fullName": "Flipper98rus",
- "avatarUrl": "https://www.gravatar.com/avatar/f287e36edaf044d5cc1fefcd8aea59fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 09:38:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761026",
- "username": "Dagestan13",
- "fullName": "Dagestan13",
- "avatarUrl": "https://www.gravatar.com/avatar/343224e689e6d7b63884741fdeb69ca7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 11:22:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761046",
- "username": "Marcello087",
- "fullName": "Marcello087",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761046/medium/e8c304e5afacfaab6c6d8242294739bc.png",
- "joined": "2021-05-17 11:37:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761440",
- "username": "Azael.",
- "fullName": "Azael.",
- "avatarUrl": "https://www.gravatar.com/avatar/5185f1e89dbda1e6c6e031f9c0d4b92e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 16:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761562",
- "username": "Klodbeer",
- "fullName": "Klodbeer",
- "avatarUrl": "https://www.gravatar.com/avatar/19f68ab96ec38c94649343c8fb1a87a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 18:24:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761818",
- "username": "ilogyk",
- "fullName": "ilogyk",
- "avatarUrl": "https://www.gravatar.com/avatar/0247ebbb97cc06d67eece0dfab3bfd00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 01:15:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761822",
- "username": "PomaPoma1",
- "fullName": "PomaPoma1",
- "avatarUrl": "https://www.gravatar.com/avatar/479a18bfde9075f956427ebd61645f9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 01:24:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762030",
- "username": "hendra.herviawan",
- "fullName": "M Hendra Herviawan (hendra.herviawan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762030/medium/5b0aca21e7e52bd490df7b009d924f40.jpeg",
- "joined": "2021-05-18 04:56:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760278",
- "username": "1st.tati",
- "fullName": "Wisavaponr Tati (1st.tati)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760278/medium/757ae458617fb31da8ec9b4d38fcf55e.jpeg",
- "joined": "2021-05-17 01:16:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762352",
- "username": "Atefemoe",
- "fullName": "Atef Emor (Atefemoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762352/medium/e7ee7b58349b6ed082fc8fdc8409d13f.jpg",
- "joined": "2021-05-18 09:03:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762488",
- "username": "4191235872",
- "fullName": "4191235872",
- "avatarUrl": "https://www.gravatar.com/avatar/f1e8401423d8f23d8aa8dd3fccf961db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 10:27:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762626",
- "username": "mykolasalata7",
- "fullName": "Mykola Salata (mykolasalata7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762626/medium/ef496f3afd20230d8775e3cfb6175c14.jpeg",
- "joined": "2021-05-18 11:56:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762702",
- "username": "heathcliff",
- "fullName": "heathcliff",
- "avatarUrl": "https://www.gravatar.com/avatar/5af0e75a21458996716e217cd4e9e123?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 13:00:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762802",
- "username": "IvanaEth",
- "fullName": "IvanaEth",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762802/medium/bf27721f20f228816129b84335301a7f.jpg",
- "joined": "2021-05-18 14:54:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763166",
- "username": "coencoem",
- "fullName": "Wiro Dharmo (coencoem)",
- "avatarUrl": "https://www.gravatar.com/avatar/ef0936564d2d522606fd250f0700ecd0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 21:59:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763374",
- "username": "untipollamadomarcelo",
- "fullName": "Marcelo Cornejo (untipollamadomarcelo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/6fada991f179e004707187b671444058.jpeg",
- "joined": "2021-08-14 03:27:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763728",
- "username": "polowong5",
- "fullName": "wong polo (polowong5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763728/medium/d720628694a0e5f789553c9cf1526327.jpeg",
- "joined": "2021-05-19 07:46:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763818",
- "username": "fontainepr9",
- "fullName": "Pierre Fontaine (fontainepr9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763818/medium/7fe833564b2595abbcb1908ceada87bf.png",
- "joined": "2021-05-19 08:37:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763978",
- "username": "rayxeden",
- "fullName": "Ray Eden (rayxeden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763978/medium/4f9c92629cbbd74784e018e397fbf629.png",
- "joined": "2021-05-19 10:17:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764350",
- "username": "mosfetti",
- "fullName": "mosfetti",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764350/medium/d84a713e1a14175198ac72212f6b3d05.png",
- "joined": "2021-05-19 14:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760436",
- "username": "Samarth",
- "fullName": "Samarth",
- "avatarUrl": "https://www.gravatar.com/avatar/113b48269478627f239bdabbfd8c9f93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 03:51:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760114",
- "username": "keinstn",
- "fullName": "keinstn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760114/medium/5b3fa243c923f93b7a7c7560a00b69cc.jpeg",
- "joined": "2021-05-16 21:23:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 31,
- "negativeVotes": 30,
- "winning": 0
- },
- {
- "user": {
- "id": "14764738",
- "username": "semprepk13",
- "fullName": "Sempre Patricia Kelly (semprepk13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764738/medium/dc4b07533773785e8353c86472ba6fe0.jpeg",
- "joined": "2021-05-19 21:38:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758828",
- "username": "shiftcm",
- "fullName": "Shift CM (shiftcm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758828/medium/789fac20720b9fedb35242f98b6d37f0.jpeg",
- "joined": "2021-05-16 00:41:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757760",
- "username": "makshatsenko",
- "fullName": "makshatsenko",
- "avatarUrl": "https://www.gravatar.com/avatar/2485f32a34bd303fa6e0ffb75178dfd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 05:23:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757788",
- "username": "zeririzakaria10",
- "fullName": "ninja games (zeririzakaria10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757788/medium/58c27779ad2481afce1af14d09bed24f.png",
- "joined": "2021-05-15 05:46:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757860",
- "username": "hzpws",
- "fullName": "hzpws",
- "avatarUrl": "https://www.gravatar.com/avatar/c8fcc3a1a580329a970a57d9cc5708a1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 07:02:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757938",
- "username": "WuGi89",
- "fullName": "Wojciech Gebicki (WuGi89)",
- "avatarUrl": "https://www.gravatar.com/avatar/3c23fdb40027692ff48eeccc2750850a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 06:26:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757940",
- "username": "androx",
- "fullName": "androx",
- "avatarUrl": "https://www.gravatar.com/avatar/ec1937d5a33dc737e4500e7735ce74f0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 08:51:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758100",
- "username": "Wisheechia",
- "fullName": "Marco Abate (Wisheechia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758100/medium/420cea9c5114f42804b9bfde2e438c38.png",
- "joined": "2021-05-15 10:18:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758114",
- "username": "sandsbai",
- "fullName": "sandsbai",
- "avatarUrl": "https://www.gravatar.com/avatar/5fe0e525079b61509b15de7f880e153a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 10:42:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758430",
- "username": "Maitha01",
- "fullName": "Maitha01",
- "avatarUrl": "https://www.gravatar.com/avatar/740fbf77f98b5235c9b65b1c5f607bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 15:38:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758456",
- "username": "AmirDeveloper",
- "fullName": "Amirjon Rajabov (AmirDeveloper)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758456/medium/b93489a116fc73d4aed09dddf8e29541.png",
- "joined": "2021-05-15 15:56:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758486",
- "username": "martinh2",
- "fullName": "martinh2",
- "avatarUrl": "https://www.gravatar.com/avatar/8110ea29ba7e021792151be9e17763ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 12:32:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758532",
- "username": "manu55a",
- "fullName": "Mariano F. (manu55a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758532/medium/a8628399954ffeaa70d3614014c851f6.png",
- "joined": "2021-05-15 17:03:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758844",
- "username": "Oldleo76",
- "fullName": "Oldleo76",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758844/medium/011d0875b2d6dab274acc9e2d028dbfc.jpg",
- "joined": "2021-05-16 01:07:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759974",
- "username": "onurf",
- "fullName": "Onur F. Özben (onurf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759974/medium/f4393009ab051483d1e3fb647bff34bb.png",
- "joined": "2021-05-16 18:13:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758876",
- "username": "yezgan_16",
- "fullName": "yezgan_16",
- "avatarUrl": "https://www.gravatar.com/avatar/821b8362ce99a75fa0b2196d4ba13706?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 01:47:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758900",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/49090229849f3c49d5049a1434605122?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 02:12:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758970",
- "username": "JJulles",
- "fullName": "JJulles",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758970/medium/2f15c96da08e09ca5186337bcebc19a8.png",
- "joined": "2021-05-16 04:40:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759220",
- "username": "arturlesniewski",
- "fullName": "Artur Leśniewski (arturlesniewski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759220/medium/ce0dfc426c882d10a157bb152afe3a16.png",
- "joined": "2021-05-16 07:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759230",
- "username": "mojtabafazelee",
- "fullName": "مجتبی فاضلیث (mojtabafazelee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759230/medium/85e221e3f6d74ef8ff725baa0da4e36e.png",
- "joined": "2021-05-16 07:15:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759260",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/5b96ffce5b4fd476cec3890b501a5e35?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 09:13:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759534",
- "username": "ThTy56",
- "fullName": "Thomas T. (ThTy56)",
- "avatarUrl": "https://www.gravatar.com/avatar/4cac9a501952bdb258c2b786bac7335a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 11:07:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759618",
- "username": "PanteaNegra",
- "fullName": "Maryana Pantea (PanteaNegra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759618/medium/ed23a37bb50ec664979f34807af1ed31.jpg",
- "joined": "2021-05-16 12:24:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759682",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/b93e7425aa8f14a9be4e163b0dc1d651?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 13:20:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759692",
- "username": "ank23",
- "fullName": "ank23",
- "avatarUrl": "https://www.gravatar.com/avatar/bc8ae154070703d7052271a75af85090?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 13:27:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759828",
- "username": "FSJGus",
- "fullName": "Gustavo Lima (FSJGus)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759828/medium/2ab0d05afed7232420ed8bb10abe5513.jpeg",
- "joined": "2021-05-16 15:45:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764370",
- "username": "RivaSergio",
- "fullName": "RivaSergio",
- "avatarUrl": "https://www.gravatar.com/avatar/fcdaf3e9afb9e8a3e31562fc79984d61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 14:35:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764846",
- "username": "mrvuong.bitcoin",
- "fullName": "Ngọc Vương Trương (mrvuong.bitcoin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764846/medium/68d83ddd0632b9ff5d0ab6b85b038317.jpeg",
- "joined": "2021-05-20 00:06:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774728",
- "username": "matyukhin04",
- "fullName": "М М (matyukhin04)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774728/medium/29acb7ec37f7d43284d880ce09e68776.png",
- "joined": "2021-05-27 04:52:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14772756",
- "username": "antoniodejesus",
- "fullName": "antoniodejesus",
- "avatarUrl": "https://www.gravatar.com/avatar/173846750cbe8709a446a51849944766?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 19:18:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770474",
- "username": "AuliaRizky",
- "fullName": "Arhking (AuliaRizky)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14770474/medium/514a9862bdf41eebf06c7e9bcefca2e9.png",
- "joined": "2021-05-24 06:38:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771104",
- "username": "Jonathereum",
- "fullName": "Jonathereum",
- "avatarUrl": "https://www.gravatar.com/avatar/73a76621e41852e8503594d132ed12c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-24 14:43:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771456",
- "username": "marcusma",
- "fullName": "marcusma",
- "avatarUrl": "https://www.gravatar.com/avatar/a91e4ae62ef84bb9fa2e63901510b03e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 21:10:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771472",
- "username": "Eason_Wang",
- "fullName": "Eason Wang (Eason_Wang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771472/medium/af427b7ae2024d379e57f6324179e0ad.jpeg",
- "joined": "2021-06-05 04:17:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771528",
- "username": "gsonicsad",
- "fullName": "GSS Germanstreetstyle (gsonicsad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771528/medium/c51abef9fc773d08735d7b7445d524c4.png",
- "joined": "2021-05-25 01:12:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771650",
- "username": "EasonWW",
- "fullName": "EasonWW",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771650/medium/bdfc60c7672791687a1ad086f1690ae3.jpeg",
- "joined": "2021-05-25 03:22:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771770",
- "username": "Archeb",
- "fullName": "Archeb",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771770/medium/97595f39d34a57c19224c3cc05a73dd0.jpeg",
- "joined": "2021-05-25 04:51:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771800",
- "username": "rtree",
- "fullName": "rtree",
- "avatarUrl": "https://www.gravatar.com/avatar/4693242a4c7bc7ca86e6f639e507d8a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 05:10:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771984",
- "username": "killermank",
- "fullName": "killermank",
- "avatarUrl": "https://www.gravatar.com/avatar/55a71960177c24670504919684ad714f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 07:48:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771990",
- "username": "Badzso7",
- "fullName": "Badzso7",
- "avatarUrl": "https://www.gravatar.com/avatar/18691a412a18e3ebfcde4550b1f19748?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 07:50:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14772374",
- "username": "ssm82009",
- "fullName": "Sultan Alzahrani (ssm82009)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14772374/medium/a564a83de3921010741be671f5e9f229.jpeg",
- "joined": "2021-05-25 12:45:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773014",
- "username": "tp8295452",
- "fullName": "Hieucandy (tp8295452)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773014/medium/8802fa2974c858a3af63fd7949e4a958.jpeg",
- "joined": "2021-05-26 02:07:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770168",
- "username": "imdm",
- "fullName": "Deming Zhu (imdm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14770168/medium/ae80ab75acd7aa5b7b81f56b7512d581.jpeg",
- "joined": "2021-05-24 01:19:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773262",
- "username": "Zoey-jack",
- "fullName": "Zoey-jack",
- "avatarUrl": "https://www.gravatar.com/avatar/3d1e2f881012de8ce272fd7e3ef7879f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 05:31:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773280",
- "username": "ricardosouzasantos12",
- "fullName": "Ricardo Santos (ricardosouzasantos12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773280/medium/5a652d356da40908fe076115199f1edc.jpeg",
- "joined": "2021-05-26 05:47:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773468",
- "username": "limin.yan.cs",
- "fullName": "Yan LiMin (limin.yan.cs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773468/medium/4155ab1e68774a89fe4a7be36a66c641.png",
- "joined": "2021-05-26 07:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773928",
- "username": "Sozkil",
- "fullName": "Sozkil",
- "avatarUrl": "https://www.gravatar.com/avatar/113f21ec90fe9266365c154fe40c4178?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 13:47:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773990",
- "username": "franrungo",
- "fullName": "Fran Rungo (franrungo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773990/medium/47a7bdb594a935a135b55d6fd938ff41.png",
- "joined": "2021-05-26 14:34:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774118",
- "username": "reabetsoe",
- "fullName": "reabetsoe",
- "avatarUrl": "https://www.gravatar.com/avatar/11096cf8c5098409fa8d49483be4f84a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 16:54:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774352",
- "username": "Malyutin",
- "fullName": "Malyutin",
- "avatarUrl": "https://www.gravatar.com/avatar/ddae53151985e333b38ef4a9e0e7f327?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-26 22:06:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774422",
- "username": "Blu620",
- "fullName": "Kevin Vélez Vera (Blu620)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774422/medium/49ca5ab77b6f06bf3bd213d6db9e426f.jpeg",
- "joined": "2021-05-26 23:20:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774492",
- "username": "osmanliperde46",
- "fullName": "Osmanlı Perde (osmanliperde46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774492/medium/bac7237fa5c3b19cf42e68a90e98e016.jpeg",
- "joined": "2021-05-27 00:56:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774556",
- "username": "yipu0v0",
- "fullName": "yipu0v0",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774556/medium/dc85181aa42b536fe5c1130fbbd398b0.png",
- "joined": "2021-05-27 02:05:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774614",
- "username": "biwenming",
- "fullName": "biwenming",
- "avatarUrl": "https://www.gravatar.com/avatar/ec1c9952af60a46c178ab66ac0873d50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 03:12:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770398",
- "username": "zhangyuenet",
- "fullName": "Yue Zhang (zhangyuenet)",
- "avatarUrl": "https://www.gravatar.com/avatar/91e5db633c553cc5938984a6711a32bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-24 05:24:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770012",
- "username": "byAndreas",
- "fullName": "byAndreas",
- "avatarUrl": "https://www.gravatar.com/avatar/7c2d8bddf434753453cc85f0e67cef3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 20:37:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765250",
- "username": "syamjayaraj",
- "fullName": "Syamlal C M (syamjayaraj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765250/medium/bf911d033e60adbf046de5f66fb0b8a0.jpeg",
- "joined": "2021-05-20 06:57:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767676",
- "username": "julianocbmfc",
- "fullName": "Juliano Barcelos (julianocbmfc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767676/medium/788df8caf2776168c8c27cfa6b801cb0.jpeg",
- "joined": "2021-05-22 00:07:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765612",
- "username": "mintleaf",
- "fullName": "Shawna Lee (mintleaf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765612/medium/95146c9af272a6aa0fe1ee9060d19ab4.jpeg",
- "joined": "2021-05-20 11:18:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765916",
- "username": "nsuki",
- "fullName": "Mert Gülmüş (nsuki)",
- "avatarUrl": "https://www.gravatar.com/avatar/f18495d1aba6ae6350fa10a1d87847f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 15:31:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766056",
- "username": "george.vslv",
- "fullName": "George V (george.vslv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766056/medium/154d4f8776f49bc3b56ac57c0c2b02c9.png",
- "joined": "2021-05-20 17:44:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766176",
- "username": "Kussov",
- "fullName": "Kussov",
- "avatarUrl": "https://www.gravatar.com/avatar/2ca94e6cc967b1cc45808fa81b5b5ba3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 20:23:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766386",
- "username": "shamekhi.ali",
- "fullName": "ali shamekhi (shamekhi.ali)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766386/medium/5a6c7247fbce5af5ba2830e1b988f2c6.png",
- "joined": "2021-05-21 01:29:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766776",
- "username": "rociodg",
- "fullName": "rociodg",
- "avatarUrl": "https://www.gravatar.com/avatar/09514e41728e92cdf81fb58b8f487408?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-21 07:58:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766920",
- "username": "Trinhquan1988",
- "fullName": "Trinhquan1988",
- "avatarUrl": "https://www.gravatar.com/avatar/5cf9a2ff70e8524d5e747dc410cfb79e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-21 09:53:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767082",
- "username": "necouo",
- "fullName": "Nemanja Stefanović (necouo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767082/medium/0fccf3a82fbadce0ebb0435a070a3bdf.png",
- "joined": "2021-05-21 13:56:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767322",
- "username": "Matcenko",
- "fullName": "Pavel Matsenko (Matcenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767322/medium/660180b8eea7b731dad55d908dbb6b3f.jpeg",
- "joined": "2021-05-21 16:14:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767556",
- "username": "JenMerino",
- "fullName": "Jen (JenMerino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767556/medium/8e9b6fc5b596521ce4e332d78fd7df40.jpeg",
- "joined": "2021-05-21 21:12:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767666",
- "username": "chengDu20",
- "fullName": "Huan Rainy (chengDu20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767666/medium/47a20ae9302d71170d1613138da1e5f1.png",
- "joined": "2021-05-21 23:52:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767746",
- "username": "oleksii.n.start",
- "fullName": "Oleksii Nesterenko (oleksii.n.start)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767746/medium/184824239fa1c4e35057bd68ef36d801.png",
- "joined": "2021-05-22 01:24:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14770008",
- "username": "smsa",
- "fullName": "smsa",
- "avatarUrl": "https://www.gravatar.com/avatar/d6c924918457853266e8a35122734428?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 20:42:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767956",
- "username": "Taigan",
- "fullName": "Daniel Van mosnenck (Taigan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767956/medium/a72b13affbab7771e971c11783374b34.jpeg",
- "joined": "2021-05-22 06:04:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768172",
- "username": "settarovrustem483",
- "fullName": "Рустем Сеттаров (settarovrustem483)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14768172/medium/3657322c0a00fe3ce0869a6ee4863bef.png",
- "joined": "2021-05-22 09:46:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768562",
- "username": "Egor13245",
- "fullName": "Egor13245",
- "avatarUrl": "https://www.gravatar.com/avatar/decdd1207ec8148060d066f85928d862?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-22 15:59:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768574",
- "username": "mrezahassani",
- "fullName": "mrezahassani",
- "avatarUrl": "https://www.gravatar.com/avatar/87e93a46a2331f12bc150ec11ae5ee54?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-22 16:14:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14768694",
- "username": "ricardo85x",
- "fullName": "Ricardo T (ricardo85x)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14768694/medium/e63f9b8d3d789dc08be178d569abef0d.jpeg",
- "joined": "2021-05-22 19:09:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769062",
- "username": "StellaSoluti",
- "fullName": "StellaSoluti",
- "avatarUrl": "https://www.gravatar.com/avatar/281ca3f2745f8da888c13ab1d009fcef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 08:39:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769082",
- "username": "tzimpoulasnikos",
- "fullName": "Tzimpoulas Nikolaos (tzimpoulasnikos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769082/medium/2c98bf823fc33865c306a4bb16e2c8b4.jpeg",
- "joined": "2021-05-23 04:44:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769148",
- "username": "tomonakar",
- "fullName": "Tomonakar (tomonakar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769148/medium/d22038e0d5ec47fc64ef9167da382c81.png",
- "joined": "2021-05-23 05:51:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14769540",
- "username": "yanning33528",
- "fullName": "小林嘎 (yanning33528)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769540/medium/c8c6c3a24e612a920d353cc69b1166f1.png",
- "joined": "2021-05-23 12:13:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769646",
- "username": "Kingline001",
- "fullName": "Kingline001",
- "avatarUrl": "https://www.gravatar.com/avatar/068cd0381288b2ddc4e600b96f5d0d47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 13:58:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769694",
- "username": "andrey1a5",
- "fullName": "andrey moroz (andrey1a5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769694/medium/b5641bfee356df01a3835c1fda9a8c24.png",
- "joined": "2021-05-23 14:41:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769932",
- "username": "SilverJanoi",
- "fullName": "Eren Durmuş (SilverJanoi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14769932/medium/24314d73e1b8d17279d5d019f277f0c1.jpeg",
- "joined": "2021-05-23 18:50:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781240",
- "username": "herrisonfnascimento",
- "fullName": "Herrison (herrisonfnascimento)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781240/medium/7ca1a1a0b850a8d749c5e711eba35e85.png",
- "joined": "2021-06-01 06:26:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799334",
- "username": "m037871",
- "fullName": "Huan Xian WU (m037871)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799334/medium/a03fb1630d23f9aec41d2bca4cfb9422.jpeg",
- "joined": "2021-06-14 14:10:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781418",
- "username": "Martha_Stein",
- "fullName": "Martha Stein (Martha_Stein)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781418/medium/1578d9e8f05c516c1bb985dd0580c4e8.jpeg",
- "joined": "2021-06-01 08:25:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810158",
- "username": "victora0",
- "fullName": "Víctor Vera Gómez (victora0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810158/medium/eca56cd9269d07b76a32626622599257.png",
- "joined": "2021-06-21 16:32:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808906",
- "username": "jokerjoker",
- "fullName": "jokerjoker",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8d31857171b3c5e96e8e46974b7672?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 23:17:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808910",
- "username": "hiroyuki-tanaka",
- "fullName": "hiroyuki-tanaka",
- "avatarUrl": "https://www.gravatar.com/avatar/1854870b7149174e0f7a873c5fea7d33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 23:25:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808924",
- "username": "DreamerM",
- "fullName": "Dreamer-M (DreamerM)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808924/medium/46e29fd1040a6e72e30c12277beb89fd.jpeg",
- "joined": "2021-06-21 00:08:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809636",
- "username": "ferminbote",
- "fullName": "Abelardo Martínez (ferminbote)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809636/medium/0f4e4659fa483a701cd8961128ffb63e.png",
- "joined": "2021-06-21 09:56:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809732",
- "username": "bao1994",
- "fullName": "bao1994",
- "avatarUrl": "https://www.gravatar.com/avatar/fda8b0b99a9b71f8804bcfc6d94b59ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 10:51:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809786",
- "username": "th851dan",
- "fullName": "Đặng Sơn (th851dan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809786/medium/9f51944f586e5ea82248a2fdc6b75265.png",
- "joined": "2021-06-21 11:29:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14809902",
- "username": "vezga",
- "fullName": "vezga san (vezga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809902/medium/675a032e3202a461706fb2a350572bc5.png",
- "joined": "2021-06-21 16:17:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809908",
- "username": "luvil2906",
- "fullName": "Lucky Lukman (luvil2906)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809908/medium/26c58911597e909385606e63bdd815d8.png",
- "joined": "2021-06-21 12:53:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809970",
- "username": "Corwintines",
- "fullName": "Corwintines",
- "avatarUrl": "https://www.gravatar.com/avatar/5d89ab750b46aca0640461f7486eab13?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 13:41:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810086",
- "username": "pinapalmieri",
- "fullName": "pina palmieri (pinapalmieri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810086/medium/42fdb28f8d445e4e2774845014a7fffa.jpeg",
- "joined": "2021-06-25 03:38:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810374",
- "username": "Typinrov",
- "fullName": "Typinrov",
- "avatarUrl": "https://www.gravatar.com/avatar/a6abee81a045c3b64a550f0ca4b3f344?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 21:06:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807818",
- "username": "Trettionde",
- "fullName": "Trettionde",
- "avatarUrl": "https://www.gravatar.com/avatar/85bd16a83cde2748b53ccf3036c6a81e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 03:48:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810702",
- "username": "Joisir",
- "fullName": "Joisir",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810702/medium/26fc6df7964704f4b4281510ca2a1d8f.png",
- "joined": "2021-06-22 03:33:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811054",
- "username": "podiumdesu",
- "fullName": "PetnaKanojo (podiumdesu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811054/medium/425ba0ebc0a6bf2478e9bda9c233e4d1.jpeg",
- "joined": "2021-06-22 08:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811142",
- "username": "flachavantes",
- "fullName": "Marcio B. Coelho (flachavantes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811142/medium/847ce51d6ee66f3927157f038db83603.png",
- "joined": "2021-06-22 09:14:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811536",
- "username": "vanessajtb",
- "fullName": "vanessa (vanessajtb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811536/medium/ded311b23fe9e792d83e09f68768a794.jpeg",
- "joined": "2021-06-23 10:54:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811672",
- "username": "Pois",
- "fullName": "Pois",
- "avatarUrl": "https://www.gravatar.com/avatar/cb689198fe8c6b621ba3c281df1c8041?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-22 16:58:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811680",
- "username": "pavelmac06",
- "fullName": "Pavel Macicek (pavelmac06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811680/medium/6fff82b72c07e37f66ee0974314f0acb.png",
- "joined": "2021-06-22 16:58:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811950",
- "username": "yanyanho",
- "fullName": "yanyanho",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811950/medium/19ae645e2dd0ce102ecb67c0330ae71e.png",
- "joined": "2021-06-23 00:41:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812426",
- "username": "Robert-Me",
- "fullName": "Robert-Me",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812426/medium/c6d86ade730b6777e9e90c4ab6ca2227.png",
- "joined": "2021-06-23 08:21:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812492",
- "username": "samuelPapranec",
- "fullName": "Samuel Papranec (samuelPapranec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812492/medium/b30337d97ba9d1f073a090434191e294.jpeg",
- "joined": "2021-06-23 11:03:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812604",
- "username": "tjesco75",
- "fullName": "tjesco75",
- "avatarUrl": "https://www.gravatar.com/avatar/f9269b3383b308eae1ca50ae7ac3b85c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-23 10:39:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812860",
- "username": "tuncaykaptan",
- "fullName": "Tuncay KAPTAN (tuncaykaptan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812860/medium/2cdf593e7ba6d701b968638ec78cce3f.gif",
- "joined": "2021-10-17 11:49:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808338",
- "username": "MalekHaddad",
- "fullName": "عبد الملك الحداد (MalekHaddad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808338/medium/ce2e0b8ab319c37c7971ab891c33816b.jpeg",
- "joined": "2021-06-20 12:00:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807310",
- "username": "fercgomes",
- "fullName": "fercgomes",
- "avatarUrl": "https://www.gravatar.com/avatar/8f84a7745e9af28cbc53a948b8a10f62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 16:56:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813084",
- "username": "vlarm",
- "fullName": "Giuseppe Faraone (vlarm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813084/medium/7609f9b9668506662db8a550982e0667.jpeg",
- "joined": "2021-06-23 19:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804410",
- "username": "cartneywong",
- "fullName": "Cartney Wong (cartneywong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804410/medium/cba5413607865ca4efcda74f37ba418c.png",
- "joined": "2021-06-18 10:09:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802836",
- "username": "Ryeore",
- "fullName": "Ryeore",
- "avatarUrl": "https://www.gravatar.com/avatar/fd23450634472a71b25a23da1ed4b329?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 02:10:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802856",
- "username": "hadeel.a",
- "fullName": "Hadeel A. (hadeel.a)",
- "avatarUrl": "https://www.gravatar.com/avatar/db294d466dc1976479f39453d7cd9ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 08:41:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802894",
- "username": "015-uk_0002",
- "fullName": "015-UK_0002 (015-uk_0002)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802894/medium/588f892df67fca18b552e5c40980776e.png",
- "joined": "2021-06-24 09:36:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803150",
- "username": "jp_aulet",
- "fullName": "J.P. Aulet (jp_aulet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803150/medium/b3e0e270c8b5b72787b8bc760872e567.png",
- "joined": "2021-09-23 06:33:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803342",
- "username": "harikhan036",
- "fullName": "hari Khan (harikhan036)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803342/medium/8f68d2b204c5760635466eea56c14112.png",
- "joined": "2021-06-17 08:14:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803498",
- "username": "DeograciousAggrey",
- "fullName": "DeograciousAggrey",
- "avatarUrl": "https://www.gravatar.com/avatar/5c60d0cf9580eabc0799b3dc5ea5dec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 09:52:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803566",
- "username": "w158rk",
- "fullName": "w158rk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803566/medium/25038b66bd6a7c6e5b55d2b4aa7681c0.png",
- "joined": "2021-06-17 22:44:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803836",
- "username": "chhsherpa",
- "fullName": "CHONGBA SHERPA (chhsherpa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803836/medium/11076ad6dcb6a82c7c4814053a5362a3.jpeg",
- "joined": "2021-06-17 12:38:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803952",
- "username": "Oscar_small",
- "fullName": "Oscar_small",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803952/medium/98aa4e60adbdf6174d78c96da90f0c11.jpeg",
- "joined": "2021-06-17 14:03:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804170",
- "username": "pnda0132",
- "fullName": "pnda0132",
- "avatarUrl": "https://www.gravatar.com/avatar/388f5c4bf43f79684dc47d0abb44a718?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 17:02:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804278",
- "username": "edier022",
- "fullName": "edier022",
- "avatarUrl": "https://www.gravatar.com/avatar/2d827e020ed536385d790dd0c1eaff03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 19:02:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804530",
- "username": "starcoinshine",
- "fullName": "frank wang (starcoinshine)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804530/medium/fd9833454bd05fff797a7ee790477d72.jpg",
- "joined": "2021-06-21 21:52:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807258",
- "username": "fccxw",
- "fullName": "fccxw",
- "avatarUrl": "https://www.gravatar.com/avatar/5f111ebb9921906dfb0d53101ed27b94?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 16:13:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804874",
- "username": "LHD",
- "fullName": "LHD",
- "avatarUrl": "https://www.gravatar.com/avatar/e24fcfddb6f5847a01d8bcd8d40b8693?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 04:49:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805280",
- "username": "EckoZhang",
- "fullName": "Mengjia Zhang (EckoZhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805280/medium/a294008196ce6b1800aa175fc7112ad0.jpeg",
- "joined": "2021-06-18 09:53:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805464",
- "username": "lijiachuan",
- "fullName": "lijiachuan",
- "avatarUrl": "https://www.gravatar.com/avatar/7742cb188d8172fd11144ebcbc1d1d1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 20:55:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805590",
- "username": "liushooter",
- "fullName": "liushooter",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805590/medium/a79b39967e3163a23f1aa233b780ac69.jpg",
- "joined": "2021-06-18 12:57:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805648",
- "username": "xyomega",
- "fullName": "xyomega",
- "avatarUrl": "https://www.gravatar.com/avatar/517aa8b351cbb0cc04149503ee7d9334?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 13:38:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805836",
- "username": "dmitriydamaru",
- "fullName": "Dmitriy Damaru (dmitriydamaru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805836/medium/1fb2a40c0c75451f65b0324c4e66762f.jpeg",
- "joined": "2021-06-18 16:04:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805844",
- "username": "07969951000796995100",
- "fullName": "Afeef Alomar (07969951000796995100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805844/medium/0d01e031f7ff07296dc63980ae219bda.jpeg",
- "joined": "2021-06-18 16:11:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14806100",
- "username": "lin-123",
- "fullName": "Kakaka Hou (lin-123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14806100/medium/1534fdcb8c32fc98a646e35e9302ac70.jpeg",
- "joined": "2021-06-18 22:24:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14806108",
- "username": "arquitecto.pt",
- "fullName": "arquitectopt (arquitecto.pt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14806108/medium/4d5116534778fe93ecdb04eab5b4427b.jpg",
- "joined": "2021-06-18 22:33:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807030",
- "username": "Anitavicen9",
- "fullName": "Anitavicen9",
- "avatarUrl": "https://www.gravatar.com/avatar/83ab280eeb42d39e02108ee53717709b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 12:54:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807238",
- "username": "rom1919",
- "fullName": "Romualdo Zayas-Lagunas (rom1919)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14807238/medium/4e9d7e22b8ba45851bf0d10bf4bb2f68.jpeg",
- "joined": "2021-06-19 15:57:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812942",
- "username": "humbertoantsc",
- "fullName": "Humberto SC (humbertoantsc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812942/medium/498f62a5f1b429232e9dfd7ab697523f.jpeg",
- "joined": "2021-06-23 16:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813110",
- "username": "nefcorp",
- "fullName": "nefcorp",
- "avatarUrl": "https://www.gravatar.com/avatar/cdb2e3e35746dffd44051a409a082939?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-23 20:40:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801934",
- "username": "allanalves",
- "fullName": "allanalves",
- "avatarUrl": "https://www.gravatar.com/avatar/99bd2d54249b669e37a6b09a740b8d65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 10:01:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819462",
- "username": "Finlynd",
- "fullName": "iamlynvely (Finlynd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819462/medium/89edd710c81f392464c405551b3fe3d9.jpg",
- "joined": "2021-06-28 23:12:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817482",
- "username": "daorrcls",
- "fullName": "Dark Side (daorrcls)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817482/medium/bf8cead9c35e4c45173b6c616e87b238.jpeg",
- "joined": "2021-06-27 07:24:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817750",
- "username": "maryam.jahani19",
- "fullName": "Maryam Jahani (maryam.jahani19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817750/medium/029bed033179030e7a0737a499586178.jpeg",
- "joined": "2021-06-27 11:52:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817780",
- "username": "amorteza936",
- "fullName": "GAME ZONE (amorteza936)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817780/medium/2517f173a7ab9d601df0d4869cabf3aa.jpeg",
- "joined": "2021-06-27 12:18:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817838",
- "username": "Tadashi1024",
- "fullName": "Tadashi1024",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817838/medium/e8bbda9fb55464b5d13482f3f1bef0d4.jpg",
- "joined": "2021-06-27 13:11:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14818556",
- "username": "lahdiez",
- "fullName": "lahdiez",
- "avatarUrl": "https://www.gravatar.com/avatar/496e2e851d9ffaaf28354c990782acdb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 04:30:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14818666",
- "username": "4ni4",
- "fullName": "4ni4",
- "avatarUrl": "https://www.gravatar.com/avatar/4de5b089790dc3f66b1aa005c09932b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 06:06:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14818744",
- "username": "armando.sv.rocha",
- "fullName": "Armando Rocha (armando.sv.rocha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14818744/medium/b6a6d9c2d5215bc614bedb317d9ff37b.jpg",
- "joined": "2021-07-05 07:31:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819110",
- "username": "MahaveerD",
- "fullName": "Mahaveer Devabalan (MahaveerD)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819110/medium/fd3d7232bac14f74005e788dbb2e0ae7.jpeg",
- "joined": "2021-06-28 13:28:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819114",
- "username": "Thops09",
- "fullName": "Thops09",
- "avatarUrl": "https://www.gravatar.com/avatar/5f5ac9d3b5c37a9b6d9068ea202b55d3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 13:24:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819294",
- "username": "sekret.tikhon",
- "fullName": "Тихон Секретарев (sekret.tikhon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819294/medium/eba1fc89da13c46a9ab31296200085f5.png",
- "joined": "2021-06-28 16:30:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819982",
- "username": "snerz13",
- "fullName": "Jash Desai (snerz13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819982/medium/40d1ac7dc56d4093785d5f1b21b72508.jpg",
- "joined": "2021-06-29 06:31:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817332",
- "username": "quietude.kid",
- "fullName": "quietude.kid",
- "avatarUrl": "https://www.gravatar.com/avatar/d150a330890d8a313a0841870c6ad4ff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 04:39:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820306",
- "username": "yetangxu",
- "fullName": "yetangxu",
- "avatarUrl": "https://www.gravatar.com/avatar/4e66256fbbafcf872ad8db6f07173208?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 10:29:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820318",
- "username": "alongdlut",
- "fullName": "alongdlut",
- "avatarUrl": "https://www.gravatar.com/avatar/f42274c44090929249197ed6f3d8a999?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 10:34:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820320",
- "username": "hechao2258",
- "fullName": "hechao2258",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820320/medium/fefdde3b7e09d989f89e8b56f247f6d0.png",
- "joined": "2021-06-29 10:47:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820324",
- "username": "alenque82",
- "fullName": "alan chen (alenque82)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820324/medium/384f8a2be04550200050bdcdd22931dd.png",
- "joined": "2021-06-29 10:44:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820344",
- "username": "tonylove0505",
- "fullName": "tonylove0505",
- "avatarUrl": "https://www.gravatar.com/avatar/bc3bbdc8c35b53244941d817e8779ac7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 10:47:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820452",
- "username": "tomasspvarela",
- "fullName": "Tomás Varela (tomasspvarela)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820452/medium/e5acc4a0d4323ff9d158e0834f6e1d3a.png",
- "joined": "2021-07-11 10:21:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820540",
- "username": "mrh",
- "fullName": "mrh",
- "avatarUrl": "https://www.gravatar.com/avatar/b17e704d6b4f70077184377b24f66d66?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 13:58:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820766",
- "username": "Jwan94",
- "fullName": "Jwan94",
- "avatarUrl": "https://www.gravatar.com/avatar/cdeea609e4658dc15ae1f03222977dfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 17:41:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820822",
- "username": "satisflo",
- "fullName": "satisflo",
- "avatarUrl": "https://www.gravatar.com/avatar/450941ad9d549db59defbb8ba593331f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-29 18:31:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820836",
- "username": "YeGorobetLij",
- "fullName": "Endrias Ababu (YeGorobetLij)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820836/medium/b5abb6788fdcae9ce4b659e581539d5f.PNG",
- "joined": "2021-06-29 18:55:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820852",
- "username": "btclient",
- "fullName": "btclient",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820852/medium/6d3e4e81b1dd0aa840959da8c8bcf63f.jpg",
- "joined": "2021-06-30 10:18:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817372",
- "username": "xiaoyi311",
- "fullName": "xiaoyi311",
- "avatarUrl": "https://www.gravatar.com/avatar/c83034331f2b8373e50cab080f31625b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 05:32:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14817002",
- "username": "nasir.ah1994",
- "fullName": "Nabil Sekandar (nasir.ah1994)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817002/medium/3d8f058d0321b3e72edfae6bcedc9cb8.jpeg",
- "joined": "2021-06-26 20:54:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813188",
- "username": "zhizheng",
- "fullName": "Zack Wang (zhizheng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813188/medium/2e7f6339b3b0cef257f1a26dd6fdc970.jpeg",
- "joined": "2021-06-23 23:01:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815414",
- "username": "KoelhoSec",
- "fullName": "Bruno Coelho (KoelhoSec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815414/medium/cc746b15dd6d2fa3bc01369caaef44ed.png",
- "joined": "2021-06-30 07:07:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813326",
- "username": "lingwen",
- "fullName": "lingwen",
- "avatarUrl": "https://www.gravatar.com/avatar/a2ed20a7c9813e3e85a6ebb6c3397a7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-24 01:59:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814106",
- "username": "agatavital13",
- "fullName": "agatavital13",
- "avatarUrl": "https://www.gravatar.com/avatar/aa2bcddbcf212717c3391de55a6ac4e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 16:39:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814206",
- "username": "novoadaniel2",
- "fullName": "Daniel Novoa (novoadaniel2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814206/medium/67568f30eb32fc4106e9e34eeba4f794.png",
- "joined": "2021-06-24 15:55:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814346",
- "username": "ThunderDeliverer",
- "fullName": "Jan Turk (ThunderDeliverer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814346/medium/0b89b5f1816ee9e6fd8cd60e01ac357c.png",
- "joined": "2021-06-24 18:48:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814600",
- "username": "vPEPO",
- "fullName": "Luciano Orlando (vPEPO)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814600/medium/677ea1f4add63149a74de564de70989a.png",
- "joined": "2021-06-25 00:52:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814690",
- "username": "khodaarahmi",
- "fullName": "Ehsan Khodaarahmi (khodaarahmi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814690/medium/22dbf1e43823e76cb094bff3fdcca212.jpeg",
- "joined": "2021-06-25 02:47:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814760",
- "username": "zhaoyonghe",
- "fullName": "zhaoyonghe",
- "avatarUrl": "https://www.gravatar.com/avatar/1849350f7cb43f8db85818f35ebc6edf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 03:53:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814830",
- "username": "keskn.sertac7655",
- "fullName": "Sertaç Keskin (keskn.sertac7655)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814830/medium/fcc4262e29d4555d87b18d8f9d840ddc.png",
- "joined": "2021-06-25 05:08:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815080",
- "username": "0904508678duy",
- "fullName": "Nguyen Duy (0904508678duy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815080/medium/d175930e28a0382f4ad6127ee47c961a.png",
- "joined": "2021-06-25 08:01:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815280",
- "username": "Plomanto0419",
- "fullName": "Plomanto0419",
- "avatarUrl": "https://www.gravatar.com/avatar/a410222b823ca7093977051400ce41cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 10:17:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815312",
- "username": "001-uk_00455358",
- "fullName": "001-UK_00455358 (001-uk_00455358)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815312/medium/866bc874cf7462eff3219fa2d337e5f2.png",
- "joined": "2021-06-25 10:49:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815610",
- "username": "mnw586",
- "fullName": "mnw586",
- "avatarUrl": "https://www.gravatar.com/avatar/690011ed4104436727a2a5c7c64962fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 15:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816800",
- "username": "Sumari",
- "fullName": "Rizqie Alfian mutha (Sumari)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816800/medium/73d286f72b7399e0c4acb1ed4a3812b8.jpeg",
- "joined": "2021-06-26 15:47:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815664",
- "username": "Marigold0106",
- "fullName": "Marigold0106",
- "avatarUrl": "https://www.gravatar.com/avatar/75b35629161d0cd3e8255e81efacf231?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 16:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815816",
- "username": "cristianedacruzcris311",
- "fullName": "Cristiane da Cruz Cris (cristianedacruzcris311)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815816/medium/7f416e5f55737c497a41004380cc21d0.png",
- "joined": "2021-06-28 21:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815846",
- "username": "biboufr",
- "fullName": "Midori Nika (biboufr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815846/medium/e3ef6e9bf613468bccc78bf46b9ed89b.png",
- "joined": "2021-06-25 20:44:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815876",
- "username": "LUMOGROUP",
- "fullName": "LUMOGROUP",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815876/medium/8debc09b5ece0d371f6a54dd295372b6.jpeg",
- "joined": "2021-08-17 10:08:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815950",
- "username": "hungkhongten7777",
- "fullName": "hungkhongten7777",
- "avatarUrl": "https://www.gravatar.com/avatar/d79a59a099285520a062ed09b26b849d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 00:11:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816088",
- "username": "allbuy",
- "fullName": "allbuy",
- "avatarUrl": "https://www.gravatar.com/avatar/2f66e10eb6ac8e4b6b83ccbf1864a9a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 03:32:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816094",
- "username": "karislam0322",
- "fullName": "karis lam (karislam0322)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816094/medium/6a5e736d81288d51f223a0f107d09d8a.png",
- "joined": "2021-06-26 03:40:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816306",
- "username": "Coppka",
- "fullName": "Copkka Doktor (Coppka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816306/medium/e6b16332c695ea9e29db0e5aa83b9331.png",
- "joined": "2021-06-26 08:05:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816548",
- "username": "ayoubkaraou",
- "fullName": "ayoubkaraou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816548/medium/6ea87133077c227da4a197131ce1b935.png",
- "joined": "2021-06-26 11:43:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816704",
- "username": "wanghuasong97",
- "fullName": "wanghuasong97",
- "avatarUrl": "https://www.gravatar.com/avatar/6e646fda6a18f3e0f478966dcbefa5be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 13:35:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816748",
- "username": "max.m0n",
- "fullName": "Максим Ельян (max.m0n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816748/medium/5ede72ee6c8877a8246d571e675a46fb.jpeg",
- "joined": "2021-06-26 14:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802794",
- "username": "Lanlanluu88",
- "fullName": "Lanlanluu88",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802794/medium/075e46cf87966cd0e74cab0fee2b6a39.png",
- "joined": "2021-06-17 01:20:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801848",
- "username": "jasonlou22",
- "fullName": "Iasonas Loukaidis (jasonlou22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801848/medium/ce8cf5bd5bd16320aadbd8438ce2c4b6.jpeg",
- "joined": "2021-06-16 08:44:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781478",
- "username": "pantherax",
- "fullName": "pantherax",
- "avatarUrl": "https://www.gravatar.com/avatar/1352f74fc2d80f346e7ec67cd650d1da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 09:04:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787090",
- "username": "Sim0n",
- "fullName": "Sim0n",
- "avatarUrl": "https://www.gravatar.com/avatar/5c818046bf8ff41c9022c66788021066?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 07:20:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786220",
- "username": "AkumaAsuramaru",
- "fullName": "Black Label (AkumaAsuramaru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786220/medium/eecd1bcb00da5c64d5718883aa99466e.jpeg",
- "joined": "2021-06-04 12:57:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786318",
- "username": "raptoright",
- "fullName": "Orhun Onar (raptoright)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786318/medium/7ea95d1beaa64d32c9af167ec73c44bc.jpeg",
- "joined": "2021-06-04 14:04:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786426",
- "username": "Drmasoudrezaei",
- "fullName": "Dr Masoud Rezaei (Drmasoudrezaei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786426/medium/655a2e23f8fe6400cf5260b7ebd6f504.jpeg",
- "joined": "2021-06-04 16:20:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786554",
- "username": "themorit",
- "fullName": "Sami H. (themorit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786554/medium/3e41ddf73b067709e17114acc3057c3d.jpg",
- "joined": "2021-06-04 19:21:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786568",
- "username": "barabara54b",
- "fullName": "Bara Barann (barabara54b)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786568/medium/28bb342744a64bff6c38e2e99c97a1ee.png",
- "joined": "2021-06-05 02:13:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786572",
- "username": "ohmygosh",
- "fullName": "ohmygosh",
- "avatarUrl": "https://www.gravatar.com/avatar/b304387a3d7f3421a5b6dbed250f7f67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 19:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786740",
- "username": "szwangyuanjie",
- "fullName": "王袁杰 (szwangyuanjie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786740/medium/e60a7723bf81e1ec3d888e173a0f6052.jpeg",
- "joined": "2021-06-05 00:07:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786760",
- "username": "Christiadarma",
- "fullName": "David Christiadarma Setiawan (Christiadarma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786760/medium/0a9de74a9a0f585ec24105d566a0170b.png",
- "joined": "2021-06-05 00:23:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786888",
- "username": "amiramin695",
- "fullName": "amiramin695",
- "avatarUrl": "https://www.gravatar.com/avatar/9be9b78cf2a8e9a83567fbb6ba5b1526?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 03:46:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786918",
- "username": "shuaishao",
- "fullName": "Shuai Shao (shuaishao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786918/medium/683fae422ad7adbf5241cbfbfd5d08f9.png",
- "joined": "2021-06-05 04:22:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787116",
- "username": "Mustang",
- "fullName": "Mustang",
- "avatarUrl": "https://www.gravatar.com/avatar/21c1c7ddcdf4d1d9f54d8673035aba1d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 07:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785890",
- "username": "lu_schy",
- "fullName": "Lu (lu_schy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785890/medium/9af95930308caa40e0747a37886265d2.jpeg",
- "joined": "2021-06-04 13:11:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787358",
- "username": "leideribeiro9150",
- "fullName": "leide mariana santos ribeiro (leideribeiro9150)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787358/medium/23937ae5016b2a370875018580c2905b.jpeg",
- "joined": "2021-06-14 13:58:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787744",
- "username": "ZLJ165",
- "fullName": "ZLJ165",
- "avatarUrl": "https://www.gravatar.com/avatar/2df29854a6f98dae5a044f3489f05323?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 20:45:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787830",
- "username": "Novalina26",
- "fullName": "Novalina26",
- "avatarUrl": "https://www.gravatar.com/avatar/12c84e9c2167c20221fdab982da8ae3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 22:46:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787946",
- "username": "importwyf",
- "fullName": "汪一帆 (importwyf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787946/medium/887ff1f844f3421fdad67e477aa2b0f7.png",
- "joined": "2021-06-06 01:57:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787988",
- "username": "thaiduckman",
- "fullName": "Suppatach Sabpisal (thaiduckman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787988/medium/9524a35b654ed1767e2ed2aeddf23edb.jpeg",
- "joined": "2021-06-06 02:49:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788004",
- "username": "pokupki.ks",
- "fullName": "pokupki.ks",
- "avatarUrl": "https://www.gravatar.com/avatar/f3ff2a967dbff6bbaaa2516ffa7757a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 03:05:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788050",
- "username": "ZyWwQq",
- "fullName": "ZyWwQq",
- "avatarUrl": "https://www.gravatar.com/avatar/13dc1aa3f6dd80f01b67a5328de4655e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 00:45:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788394",
- "username": "k-sad",
- "fullName": "k-sad",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788394/medium/d36035c2e171b8c0a75df7a938eceadb.jpg",
- "joined": "2021-06-06 11:41:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788556",
- "username": "Mika1801",
- "fullName": "Mika1801",
- "avatarUrl": "https://www.gravatar.com/avatar/bdff3eb483b40ba527a95fd39d16ac4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 13:46:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788632",
- "username": "Desuros",
- "fullName": "Desuros",
- "avatarUrl": "https://www.gravatar.com/avatar/bddd54e3c2b558678a021359c83dc4c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 15:14:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788680",
- "username": "lucasmelo.dev",
- "fullName": "lucasmelo.dev",
- "avatarUrl": "https://www.gravatar.com/avatar/78f6cae002c440a35994411a1bb3ec52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 15:57:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785924",
- "username": "KaerMorh",
- "fullName": "SkyEternal (KaerMorh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785924/medium/c4f322ead0ea660939705b498e4614ad.png",
- "joined": "2021-06-04 09:26:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785636",
- "username": "hakasekenken",
- "fullName": "hakasekenken",
- "avatarUrl": "https://www.gravatar.com/avatar/649dd538c5dcd0b067043e01edfffa61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:40:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788998",
- "username": "ccosds",
- "fullName": "ccosds",
- "avatarUrl": "https://www.gravatar.com/avatar/06ab597f272f96e88582faca01cb1cb5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 23:51:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784198",
- "username": "Rojojue",
- "fullName": "Rojojue",
- "avatarUrl": "https://www.gravatar.com/avatar/4c2a031d6833806ff9578eacd213b471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 05:08:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781616",
- "username": "hayato8088",
- "fullName": "Hayato Sato (hayato8088)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781616/medium/72713e9d193f0d5f97bab396820ca17a.png",
- "joined": "2021-06-01 10:30:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781776",
- "username": "duyvt_123",
- "fullName": "duyvt_123",
- "avatarUrl": "https://www.gravatar.com/avatar/4fb74d6dc9f3018836c713b5fef6ca42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 12:34:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781944",
- "username": "tg.hamoemxye",
- "fullName": "Rostislav Nikiforov (tg.hamoemxye)",
- "avatarUrl": "https://www.gravatar.com/avatar/f9c2a8650234834b6fdd930a5036d78e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 15:17:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782118",
- "username": "morozov8707",
- "fullName": "Василий Морозов (morozov8707)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782118/medium/71fa0343fb0dc8062bb541b635b9a493.png",
- "joined": "2021-06-01 18:32:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782424",
- "username": "Randolph",
- "fullName": "陈龙 (Randolph)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782424/medium/7851e17a78e604a0d9fdc5862efb394b.png",
- "joined": "2021-06-02 00:18:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782486",
- "username": "Parachute",
- "fullName": "Parachute",
- "avatarUrl": "https://www.gravatar.com/avatar/a362d2974306319eb6209c67123f775b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-02 01:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782574",
- "username": "Jaclyn_yjq",
- "fullName": "Jaclyn_yjq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782574/medium/4c7964fe21988781e8d2ce791c65dee0.jpg",
- "joined": "2021-06-02 03:08:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782800",
- "username": "dongfengg19980930",
- "fullName": "FENG GUITAR (dongfengg19980930)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782800/medium/f1e8ed09f992269795a28e1a776bfc63.jpeg",
- "joined": "2021-06-02 06:03:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14783432",
- "username": "Husain7",
- "fullName": "HusainKapasi (Husain7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783432/medium/44a62ae94f5961e10f4ed656175d8ec3.jpeg",
- "joined": "2021-06-02 14:14:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14783598",
- "username": "lemony.jerome",
- "fullName": "Jj (lemony.jerome)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783598/medium/3222a279390e4b25e1a6a456c008139b.jpeg",
- "joined": "2021-06-02 16:21:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784092",
- "username": "akarakuzu8",
- "fullName": "Ahmet Karakuzu (akarakuzu8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784092/medium/c6dc90c8ae877bc5304606836ad5379d.png",
- "joined": "2021-06-03 03:18:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784336",
- "username": "8rax",
- "fullName": "8rax",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784336/medium/9acf0e353a205518b69bcf8b130aacf7.gif",
- "joined": "2021-06-03 07:43:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785628",
- "username": "gucoo",
- "fullName": "gucoo",
- "avatarUrl": "https://www.gravatar.com/avatar/98ff76f33f4003bd8b487e02d1e6e7c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:35:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784406",
- "username": "garbirel",
- "fullName": "garbirel",
- "avatarUrl": "https://www.gravatar.com/avatar/e72968b533b18b4a8a00dfe052493636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 08:34:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784414",
- "username": "Gregory.Scalet",
- "fullName": "DeFiGregg (Gregory.Scalet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784414/medium/3c33d392c019608a477744d2c30ee357.jpg",
- "joined": "2021-06-03 08:44:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784442",
- "username": "HaloEric",
- "fullName": "HaloEric",
- "avatarUrl": "https://www.gravatar.com/avatar/919702c1532616a88d4990268af2386d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 08:54:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784750",
- "username": "PaulOurs",
- "fullName": "PaulOurs",
- "avatarUrl": "https://www.gravatar.com/avatar/cd699edb9198b1b5c53f8dec55e5528c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 12:45:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784788",
- "username": "Matburnx",
- "fullName": "Matburnx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784788/medium/c6e248018a668c2334d68bf2cee929d4.png",
- "joined": "2021-06-03 13:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784812",
- "username": "motxx",
- "fullName": "moti (motxx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784812/medium/7ddb99d66ba8a59e09d05bbcf9c49887.png",
- "joined": "2021-06-03 13:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784930",
- "username": "vaclav.kyval",
- "fullName": "Václav Kýval (vaclav.kyval)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784930/medium/124a3262e9172e0da7b788575a4c4f3d.jpeg",
- "joined": "2021-06-03 14:58:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785200",
- "username": "JoSaint22",
- "fullName": "JoSaint22",
- "avatarUrl": "https://www.gravatar.com/avatar/6dea88dd0e14ef8236e6557fb5d99cba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 22:02:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785220",
- "username": "rokinot",
- "fullName": "Rokinot Channel (rokinot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785220/medium/4a6f6852105b606735b08d45c74b0fd7.png",
- "joined": "2021-06-03 22:55:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785458",
- "username": "ReturnWTF",
- "fullName": "wangchuang (ReturnWTF)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785458/medium/e83fd1082d399556b9c9dc3a956046c5.jpeg",
- "joined": "2021-06-04 03:27:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785626",
- "username": "Brange_",
- "fullName": "Brange_",
- "avatarUrl": "https://www.gravatar.com/avatar/d5f99d63541e8c56e475f86660e48e2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:31:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788710",
- "username": "niliosmon",
- "fullName": "Равиль Вахиев (niliosmon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788710/medium/279fe400c614f4ff9e976f620d8e3293.jpeg",
- "joined": "2021-06-06 16:45:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14789894",
- "username": "Cruca",
- "fullName": "Cruca",
- "avatarUrl": "https://www.gravatar.com/avatar/4c661a063d5bb5916c713c57a4e2033e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 12:39:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801608",
- "username": "burgmancat",
- "fullName": "Andres Sanchez (burgmancat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801608/medium/37108cefa2cd3315ef2183f2d9fe70ae.jpeg",
- "joined": "2021-06-16 07:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799060",
- "username": "alpergindao",
- "fullName": "alp (alpergindao)",
- "avatarUrl": "https://www.gravatar.com/avatar/0de6f9af763cc0a46781ae451a2bf1a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-14 10:15:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796126",
- "username": "Lyubo69",
- "fullName": "Lyubo69",
- "avatarUrl": "https://www.gravatar.com/avatar/031a3ffbe3f054bc23ce7dc79d030b03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 22:09:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796460",
- "username": "PA.SA.",
- "fullName": "PA.SA.",
- "avatarUrl": "https://www.gravatar.com/avatar/19d3a27d39c9b423f90d07241055ba95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 05:32:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796574",
- "username": "EthBasti",
- "fullName": "EthBasti",
- "avatarUrl": "https://www.gravatar.com/avatar/7a6732a86f7c1ccb5433213069d82c29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 07:39:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797214",
- "username": "rootban",
- "fullName": "rootban",
- "avatarUrl": "https://www.gravatar.com/avatar/290726f39936f7d6d0cda7b6b8be0724?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 19:26:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797460",
- "username": "lytrung879",
- "fullName": "Trung Ly (lytrung879)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797460/medium/a0891f5734c048a30ef16d67f5760f75.jpeg",
- "joined": "2021-06-13 01:43:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797568",
- "username": "renansuporte",
- "fullName": "Renan Azedo de Oliveira (renansuporte)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797568/medium/054e1de8d64f59ad4fa3f990108fdbb6.jpeg",
- "joined": "2021-06-13 04:32:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797670",
- "username": "stassizyakin45",
- "fullName": "Ann Partovi (stassizyakin45)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797670/medium/9e08f4e6af0d5ea0617c0f3347c2701f.jpeg",
- "joined": "2021-06-13 06:49:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797736",
- "username": "hugues.occansey",
- "fullName": "NO MORE LIMITS VR (hugues.occansey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797736/medium/9ba14023162fa366a352033048f79442.png",
- "joined": "2021-06-13 08:21:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797974",
- "username": "salehtavakoli",
- "fullName": "salehtavakoli",
- "avatarUrl": "https://www.gravatar.com/avatar/beabe6ead932a8557c4b62793e499e4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-13 12:12:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14798406",
- "username": "bozorgzadehhabib",
- "fullName": "Habib Bozorgzadeh (bozorgzadehhabib)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798406/medium/f39d4189a95fd756bc3b50d906d3e624.jpeg",
- "joined": "2021-06-13 20:47:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14798702",
- "username": "FlorentLef",
- "fullName": "Florent Lefebvre (FlorentLef)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798702/medium/b7d6ed1d69505955e065e3518df312b0.jpeg",
- "joined": "2021-06-14 04:12:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799150",
- "username": "bilalbayram",
- "fullName": "bilalbayram",
- "avatarUrl": "https://www.gravatar.com/avatar/238bf199085eed31386992556fc4a3da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-14 11:19:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796030",
- "username": "Nextstar.eth",
- "fullName": "Aman Ullah (Nextstar.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14796030/medium/500ebe6ce71623e4e7e0c2adfa59ae0e.jpg",
- "joined": "2021-06-11 18:51:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757574",
- "username": "anilgr.agr",
- "fullName": "anil gr (anilgr.agr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757574/medium/85827672f55103be185e54169d693067.jpeg",
- "joined": "2021-05-15 02:23:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799412",
- "username": "vane.dcm",
- "fullName": "vane.dcm",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799412/medium/77cfcb8d6a2a8bb61519a7a136745224.jpg",
- "joined": "2021-06-14 15:19:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799822",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/42b84f2eb981d8587680d8ba76208c22?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 00:11:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800200",
- "username": "adrianpazosg",
- "fullName": "Adrián Pazos (adrianpazosg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800200/medium/6ed8760ef8fce69662fcee35915085d0.jpeg",
- "joined": "2021-06-15 06:51:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800260",
- "username": "onhorou",
- "fullName": "onhorou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800260/medium/5e6c1ca22c8427777ebb9cb232779238.png",
- "joined": "2021-06-15 07:53:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800544",
- "username": "vj-codes",
- "fullName": "vj-codes",
- "avatarUrl": "https://www.gravatar.com/avatar/1801099ce8fed3e7e395524675b7c332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 10:47:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800546",
- "username": "durchunddurch",
- "fullName": "durchunddurch",
- "avatarUrl": "https://www.gravatar.com/avatar/e31bdda13e37cbf4b4bd18c88541fdc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 10:48:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800588",
- "username": "CarolinaFilipe",
- "fullName": "CarolinaFilipe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800588/medium/d8be152e1a3b5e6fbe43fadfe904a737.jpeg",
- "joined": "2021-06-15 11:17:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800734",
- "username": "xiao101599",
- "fullName": "xiao101599",
- "avatarUrl": "https://www.gravatar.com/avatar/e3fc77c6e9c35ef4097e994502ead8ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 13:08:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801120",
- "username": "yousefjoo363.me",
- "fullName": "Mohamed Elsayed (yousefjoo363.me)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801120/medium/a0b8716af339d4cf3f31537f266a771c.jpeg",
- "joined": "2021-06-15 21:01:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801560",
- "username": "jeb-steve",
- "fullName": "jeb-steve",
- "avatarUrl": "https://www.gravatar.com/avatar/24a5366768a8c30fd91a8569549c08e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 04:29:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796076",
- "username": "plf",
- "fullName": "plf",
- "avatarUrl": "https://www.gravatar.com/avatar/8ecfbf7d5e932f06a3ec6aab644945c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 20:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795952",
- "username": "Khoa61020000",
- "fullName": "Nguyễn thái đăng khoa (Khoa61020000)",
- "avatarUrl": "https://www.gravatar.com/avatar/a1dfcd00c37f65bafe044729e2e48f58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 17:36:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790174",
- "username": "FatihOng",
- "fullName": "FatihOng",
- "avatarUrl": "https://www.gravatar.com/avatar/b19940a772c651ab824a365987d98cee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 17:23:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792200",
- "username": "liuxiaotong15",
- "fullName": "liuxiaotong (liuxiaotong15)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792200/medium/651095028597144eac73720a0c320b3d.jpeg",
- "joined": "2021-06-09 04:25:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790254",
- "username": "GreenbowAlabama",
- "fullName": "Matheus Borges (GreenbowAlabama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790254/medium/81f5c0174896beb123d3e740d1a28c5c.jpeg",
- "joined": "2021-06-07 19:04:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790426",
- "username": "skankhunt66",
- "fullName": "dlx (skankhunt66)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790426/medium/3a251c06cee98a01dc50c5ad612df818.jpeg",
- "joined": "2021-08-20 19:55:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790502",
- "username": "leo-cuellar",
- "fullName": "Leo Cuéllar (leo-cuellar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790502/medium/3e58c2b7fb2644f6fa95eb909909f256.jpeg",
- "joined": "2021-06-08 01:16:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790916",
- "username": "Smaily",
- "fullName": "Smaily",
- "avatarUrl": "https://www.gravatar.com/avatar/85245f1a50ea372727e77bfc29d7fa98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 08:17:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791328",
- "username": "milindsoorya",
- "fullName": "milind soorya (milindsoorya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791328/medium/0ebf10e4cf80866063dff115afe00116.jpeg",
- "joined": "2021-06-08 12:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791370",
- "username": "williamx",
- "fullName": "williamx",
- "avatarUrl": "https://www.gravatar.com/avatar/4eb4b1506023a58feece224f73949a43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 12:34:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14791670",
- "username": "nestisamet",
- "fullName": "Samet TEMIZER (nestisamet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791670/medium/9ebd2f349d30bf2a7ea46cf7b33ff0ac.jpeg",
- "joined": "2021-06-08 17:12:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791672",
- "username": "Luchito",
- "fullName": "Luchito",
- "avatarUrl": "https://www.gravatar.com/avatar/946202481cc6d9ecf0831139b7d01a80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 17:14:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791710",
- "username": "7TRESSLESS",
- "fullName": "7TRESSLESS",
- "avatarUrl": "https://www.gravatar.com/avatar/a8762a651e6f41bdf0abd6336e0f1a15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 18:01:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791842",
- "username": "fayewang4",
- "fullName": "wang faye (fayewang4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791842/medium/89d1c354959cba1cc202d48868419686.png",
- "joined": "2021-06-08 21:46:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791926",
- "username": "dwroy",
- "fullName": "dwroy",
- "avatarUrl": "https://www.gravatar.com/avatar/cc587a55e19c901560b508395d50465e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 23:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792324",
- "username": "aghamojtaba1349",
- "fullName": "mojtaba saadat (aghamojtaba1349)",
- "avatarUrl": "https://www.gravatar.com/avatar/dbed5862e02fded0c295b09800adc625?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-09 06:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795502",
- "username": "dasomoli",
- "fullName": "dasomoli",
- "avatarUrl": "https://www.gravatar.com/avatar/a0d1d5726af9b80e94348af794c321e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 10:23:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792352",
- "username": "Naoku",
- "fullName": "Yunus Emre Yıl (Naoku)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792352/medium/d30f4fedd7a4b5d565918a164bc7b044.png",
- "joined": "2021-06-09 06:42:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792498",
- "username": "tyevlag",
- "fullName": "tyevlag",
- "avatarUrl": "https://www.gravatar.com/avatar/16e0cdde1a9cb6ce5788ff1f24cb89f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 05:09:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792522",
- "username": "WotCa",
- "fullName": "WotCa",
- "avatarUrl": "https://www.gravatar.com/avatar/2805d3c0760cee8d6560761e9d71671d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-11 20:10:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14793958",
- "username": "CavalST",
- "fullName": "CavalST",
- "avatarUrl": "https://www.gravatar.com/avatar/8a74c3ad91c5c464dc7d5d7044561342?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 07:21:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794006",
- "username": "Keshuking02",
- "fullName": "Keshuking02",
- "avatarUrl": "https://www.gravatar.com/avatar/5bdd06248ff8e476a9a10f4a53d49240?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 07:57:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794586",
- "username": "Scipiomx",
- "fullName": "Scipiomx",
- "avatarUrl": "https://www.gravatar.com/avatar/0a39e7e1170e203766f4082e495e988d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 16:10:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794760",
- "username": "ignv",
- "fullName": "Ignacio Viggiani (ignv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794760/medium/2059ce788a83774e10a1ed6de1bf27ab.jpeg",
- "joined": "2021-06-10 19:39:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794910",
- "username": "PyrojoKes",
- "fullName": "PyrojoKes",
- "avatarUrl": "https://www.gravatar.com/avatar/3213c05c3849d8586442c2af51998c42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 23:24:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794938",
- "username": "ariaphoenix5",
- "fullName": "Aria Phoenix (ariaphoenix5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794938/medium/1205998ed6714e039c979e44a2f7c3fd.jpeg",
- "joined": "2021-06-11 00:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795304",
- "username": "beyzagokmen",
- "fullName": "beyzagokmen",
- "avatarUrl": "https://www.gravatar.com/avatar/90b128369daaa823c799b6985b9c46e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 10:41:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795314",
- "username": "lvyulv",
- "fullName": "lvyulv",
- "avatarUrl": "https://www.gravatar.com/avatar/6da7daf6080bbc77e7b32daf876970eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 07:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757734",
- "username": "thescootercooter",
- "fullName": "thescootercooter",
- "avatarUrl": "https://www.gravatar.com/avatar/5ed89503f17d635ea390409a911fc7f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 13:25:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739968",
- "username": "willporto1405",
- "fullName": "William Alves Porto Da Silva (willporto1405)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739968/medium/1db660fc70c1ab3174474892a9fa9297.png",
- "joined": "2021-05-05 22:45:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757010",
- "username": "jesusrobot9000",
- "fullName": "Jesus Velasco (jesusrobot9000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757010/medium/58e209756be429d085fe644e8fff8d26.jpeg",
- "joined": "2021-05-14 15:43:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723820",
- "username": "NOT_DECENT",
- "fullName": "NOT_DECENT",
- "avatarUrl": "https://www.gravatar.com/avatar/61aef0952edd798ba69afa6c386334b9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 12:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720896",
- "username": "KishPan",
- "fullName": "LEBEAU Pacôme (KishPan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720896/medium/d59de134453124a475302b52d5e7ab54.jpg",
- "joined": "2021-04-21 09:17:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14721452",
- "username": "abedirhan",
- "fullName": "abedirhan",
- "avatarUrl": "https://www.gravatar.com/avatar/45790482c9a92962180e914b267a0dcd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-21 18:26:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722162",
- "username": "Gengshanhe",
- "fullName": "Gengshanhe",
- "avatarUrl": "https://www.gravatar.com/avatar/f760f521a90eb200cae08c77323280f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-22 07:35:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722610",
- "username": "aldobr80",
- "fullName": "aldobr80",
- "avatarUrl": "https://www.gravatar.com/avatar/263ec92e408bff9a7f60e23302d85363?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-22 13:41:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722914",
- "username": "vitalikovalchuk",
- "fullName": "Vitalii Ko (vitalikovalchuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722914/medium/6bab43c8cbf3e596e7d209f1ce7eed33.jpeg",
- "joined": "2021-04-22 20:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722958",
- "username": "colstuwjx",
- "fullName": "Jacky Wu (colstuwjx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722958/medium/bbb68b3330ed7ad572b7e987330078c4.jpg",
- "joined": "2021-04-25 23:33:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723100",
- "username": "JohnHeatz",
- "fullName": "Erick Gomez (JohnHeatz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723100/medium/572e16e10fed6641f8f3fae258157f53.jpeg",
- "joined": "2021-04-23 00:48:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723446",
- "username": "DoGame5",
- "fullName": "DoGame5",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723446/medium/7dacda0b245cc793a6e0f617b699b92a.png",
- "joined": "2021-06-24 12:27:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723652",
- "username": "nigthguarder",
- "fullName": "nigthguarder",
- "avatarUrl": "https://www.gravatar.com/avatar/9ed9f22ebeb82c371b8a30a4d9c28fb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 09:47:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723736",
- "username": "CDrosos",
- "fullName": "Christopher Drosos (CDrosos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723736/medium/9ed57e05be46fff5a97dba4af259a3ea.jpg",
- "joined": "2021-04-23 11:09:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723852",
- "username": "Jesucripto",
- "fullName": "mcjotaemedj (Jesucripto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723852/medium/f84506bd3a8ceab96b024dd73d8d7c55.jpg",
- "joined": "2021-04-23 12:29:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720182",
- "username": "Mosaibah",
- "fullName": "Mosaibah",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720182/medium/abb7b48d789902353a50db327f236806.jpeg",
- "joined": "2021-04-20 20:35:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723930",
- "username": "Ebisuzawa_Kurumi",
- "fullName": "Yuki Takeya (Ebisuzawa_Kurumi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723930/medium/2d6585159bd9080dcc59df93a2056fe7.jpeg",
- "joined": "2021-04-23 13:32:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723976",
- "username": "hadifarzipour",
- "fullName": "hadi farzipour (hadifarzipour)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723976/medium/36b4fdd006e31b3568685828aad778c5.jpeg",
- "joined": "2021-04-23 14:26:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724040",
- "username": "novak.primoz88",
- "fullName": "Primoz Novak (novak.primoz88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724040/medium/e251041b3f0c7892719ebf6dd03925ea.jpeg",
- "joined": "2021-04-23 15:54:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724324",
- "username": "BadaevDenis",
- "fullName": "BadaevDenis",
- "avatarUrl": "https://www.gravatar.com/avatar/f2ad363045553d75ec1354568b36e51a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 22:36:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724348",
- "username": "diksinbaba",
- "fullName": "Bitcoin Gezgini (diksinbaba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724348/medium/29098b09a0fc57983cd5f9cad8e8728e.jpeg",
- "joined": "2021-04-23 23:04:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724390",
- "username": "robsonp2109",
- "fullName": "robsonp2109",
- "avatarUrl": "https://www.gravatar.com/avatar/159ffdb921fd1535caee08517f904554?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 00:34:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724498",
- "username": "arashmo1990",
- "fullName": "Arash Mo (arashmo1990)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724498/medium/23abcfc2a156b50d443e9e7eb65d3447.png",
- "joined": "2021-04-24 03:45:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724502",
- "username": "barcaglobalservices",
- "fullName": "barcaglobalservices",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724502/medium/5270f924a12ffb55ce9f1f060c95ac51.png",
- "joined": "2021-04-24 03:44:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724692",
- "username": "adamlaska",
- "fullName": "Адамласка (adamlaska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724692/medium/7e5d108d470e50bde1397858e2e63f31.jpeg",
- "joined": "2021-05-15 05:53:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724780",
- "username": "arnabethu",
- "fullName": "arnabethu",
- "avatarUrl": "https://www.gravatar.com/avatar/b89e7d5a2b18f4fc465d6ef6ebb4343d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 08:03:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724864",
- "username": "deepweed",
- "fullName": "deepweed",
- "avatarUrl": "https://www.gravatar.com/avatar/237a5f302ee077d06f14071dbf8e4775?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 09:27:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720212",
- "username": "Mehdiamirirad",
- "fullName": "MehdiAmirirad (Mehdiamirirad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720212/medium/cfed5497d031cd84d81707be8efd1bd8.jpg",
- "joined": "2021-04-22 11:11:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720048",
- "username": "dkngalam86",
- "fullName": "dkngalam86",
- "avatarUrl": "https://www.gravatar.com/avatar/ce4a0cbcc02580f25fa4b2f0d7301f5c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 17:34:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725086",
- "username": "Ackermann",
- "fullName": "Ackermann",
- "avatarUrl": "https://www.gravatar.com/avatar/55f6733f811a59351c943a13950dc228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 13:18:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717710",
- "username": "damianmartelletti",
- "fullName": "Damian Martelletti (damianmartelletti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717710/medium/519dad3fb3793a299c0c24f5e9ec46f6.jpg",
- "joined": "2021-04-19 04:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716724",
- "username": "3Juhwan",
- "fullName": "3Juhwan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14716724/medium/9fa3d45ad0f2a09825dbbdd17edf9a2a.jpeg",
- "joined": "2021-04-18 10:24:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716740",
- "username": "Felipao31",
- "fullName": "Felipao31",
- "avatarUrl": "https://www.gravatar.com/avatar/378116e3462f59f845ce864703d77a63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 10:09:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716836",
- "username": "HerrisonF",
- "fullName": "HerrisonF",
- "avatarUrl": "https://www.gravatar.com/avatar/b6004c320677400f09b742b4c184ae0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 11:22:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716942",
- "username": "EmalHamza",
- "fullName": "EmalHamza",
- "avatarUrl": "https://www.gravatar.com/avatar/935cf54759907b371e411100e93e1bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 12:58:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717068",
- "username": "realtho",
- "fullName": "daniellesniak (realtho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717068/medium/a598805684a9d5a1fcf970131ce59963.jpeg",
- "joined": "2021-04-18 15:33:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717086",
- "username": "hendddd",
- "fullName": "hendddd",
- "avatarUrl": "https://www.gravatar.com/avatar/15f0a9c5bc03284f34a4550aaa6f507d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 16:10:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717284",
- "username": "merthoca",
- "fullName": "Mert Hoca Efendi ile Sahura Doğru (merthoca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717284/medium/7f8c88453b5f3a9f5fe732b0beeaf699.jpeg",
- "joined": "2021-04-18 20:18:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717554",
- "username": "daviswong888",
- "fullName": "立即看以下連結 (daviswong888)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717554/medium/c8d726281f2436bec681f541c5654779.jpeg",
- "joined": "2021-04-19 01:37:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717562",
- "username": "PeterTakahashi",
- "fullName": "Peter Takahashi (PeterTakahashi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717562/medium/0a655e422c3b96351c89bb35120cdb02.jpeg",
- "joined": "2021-04-19 01:58:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717614",
- "username": "juniorphb",
- "fullName": "Fco Veras Jr (juniorphb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717614/medium/7a7c2429a4f8c7d13e760203abc0a708.jpeg",
- "joined": "2021-04-19 02:56:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717736",
- "username": "Milo4ka",
- "fullName": "Milo4ka",
- "avatarUrl": "https://www.gravatar.com/avatar/3ae11cea942d03283e004c796c936316?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 05:04:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14719400",
- "username": "SammyJkns",
- "fullName": "SammyJkns",
- "avatarUrl": "https://www.gravatar.com/avatar/0fb696919afd133eb20ef7beffe4c1f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 08:12:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718040",
- "username": "BXS1001",
- "fullName": "BXS1001",
- "avatarUrl": "https://www.gravatar.com/avatar/021246c2d0d014a20365c486197f1735?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 09:28:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718060",
- "username": "patrykremiszewski95",
- "fullName": "Patryk Remiszewski (patrykremiszewski95)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718060/medium/703056468685f001cd29edf00e36549b.png",
- "joined": "2021-04-19 09:47:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718082",
- "username": "subekti_87",
- "fullName": "Subekti (subekti_87)",
- "avatarUrl": "https://www.gravatar.com/avatar/86c71ab75f5d8fbf99bcecd64e034fd4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 09:54:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718088",
- "username": "lh430051",
- "fullName": "lh430051",
- "avatarUrl": "https://www.gravatar.com/avatar/ad89f50a49f4f4be32a2e9b6ee053e99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 10:01:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718106",
- "username": "xenwilliam",
- "fullName": "XENWILLIAM (xenwilliam)",
- "avatarUrl": "https://www.gravatar.com/avatar/0193309e1c9718da74e8031173710153?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 10:21:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718170",
- "username": "Mhakimfh",
- "fullName": "Mhakimfh",
- "avatarUrl": "https://www.gravatar.com/avatar/145c239816a75ad35e8c56040b904c8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 11:02:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718240",
- "username": "sallimibehbood20",
- "fullName": "Behbood Sallimi (sallimibehbood20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718240/medium/292875e637ccc216bc7b67d5b1a8afba.jpeg",
- "joined": "2021-04-19 12:04:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718510",
- "username": "truewarlock",
- "fullName": "Truewarlock (truewarlock)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718510/medium/ee2b5821e0cfda1fb4e191cb0e3d89be.png",
- "joined": "2021-04-19 16:35:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718672",
- "username": "Al7eroglu",
- "fullName": "Al7eroglu",
- "avatarUrl": "https://www.gravatar.com/avatar/98c51c1cc547518ee67f9e4539ebbad5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 20:05:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718748",
- "username": "piglet1989",
- "fullName": "piglet1989",
- "avatarUrl": "https://www.gravatar.com/avatar/a0931dda1a7e9e0fc46c8287fec78762?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 22:00:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718940",
- "username": "Vojtch",
- "fullName": "Vojtch",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718940/medium/18bee628523146dfcfbac68c4cb8367d.png",
- "joined": "2021-04-20 02:08:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725036",
- "username": "ergngndz",
- "fullName": "bawer ceqtar (ergngndz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725036/medium/1971b811cb0120336703db7a1a27ff8f.jpg",
- "joined": "2021-04-24 12:14:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725116",
- "username": "kanitha",
- "fullName": "kanitha",
- "avatarUrl": "https://www.gravatar.com/avatar/3ea660f399f8871e760c9d82862c0462?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 13:54:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716180",
- "username": "LuchoDio",
- "fullName": "LuchoDio",
- "avatarUrl": "https://www.gravatar.com/avatar/f80c88b7f7d2cfc226ab59b7c86a6e1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 22:45:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729442",
- "username": "dddpower",
- "fullName": "HS J (dddpower)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729442/medium/0914935a24ff8326fedeab8863ffe8a7.jpg",
- "joined": "2021-05-24 21:41:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728346",
- "username": "qiuchunse",
- "fullName": "qiuchunse",
- "avatarUrl": "https://www.gravatar.com/avatar/42cf23315b5cc4f43fc547bea4e466ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 06:34:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728354",
- "username": "shenglim",
- "fullName": "shenglim",
- "avatarUrl": "https://www.gravatar.com/avatar/49d5ce3fdc3a6faa8e8bf10cb6340dfe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 22:57:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728440",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/9588577b4a09b7b9a4df8000b32b1846?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 08:08:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728652",
- "username": "gaokunjie",
- "fullName": "gaokunjie",
- "avatarUrl": "https://www.gravatar.com/avatar/46c53eacc7017d1df19251a99975ef24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 10:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728816",
- "username": "scaliotifrancesco",
- "fullName": "Francesco Scalioti (scaliotifrancesco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728816/medium/44402c6a7b9e61f79ebcfc9f7afb14c4.jpg",
- "joined": "2021-04-27 13:06:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728892",
- "username": "kaan.ezerr",
- "fullName": "kaan.ezerr",
- "avatarUrl": "https://www.gravatar.com/avatar/2480cd9ca1aa823a659bdd33c42642e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 13:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729132",
- "username": "jackg",
- "fullName": "Jack Goldenberg (jackg)",
- "avatarUrl": "https://www.gravatar.com/avatar/a972a2fefea2d1bb1a250d03de5811a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 17:35:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729310",
- "username": "STEPHANIEHERMANO9",
- "fullName": "STEPHANIEHERMANO9",
- "avatarUrl": "https://www.gravatar.com/avatar/5e76a79d22610c337e2b829b14ee505e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 22:11:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729416",
- "username": "ronnyfahrudin",
- "fullName": "Ronny Fahrudin (ronnyfahrudin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729416/medium/b86dd8784f1012350c8387237a5f6014.jpeg",
- "joined": "2021-04-28 00:55:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729438",
- "username": "adnankattekaden",
- "fullName": "Adnan Kattekaden (adnankattekaden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729438/medium/bc7d6ec3824e1fde2c8e408044662f2e.jpg",
- "joined": "2021-04-28 01:30:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729514",
- "username": "kylin7647",
- "fullName": "顾轻言 (kylin7647)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729514/medium/86176f28da9e30f87eec5e8dd06df954.jpeg",
- "joined": "2021-04-28 02:52:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728134",
- "username": "lamphor",
- "fullName": "Nikhil Nigam (lamphor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728134/medium/ca927d6270c363e3dfb94161c0d9d671.png",
- "joined": "2021-04-27 02:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729586",
- "username": "hila1gt2",
- "fullName": "Benjamin Mattmann (hila1gt2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729586/medium/b2148ad52e0bc29f3b569d164434a221.jpeg",
- "joined": "2021-04-28 04:06:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729712",
- "username": "Dharmayudha",
- "fullName": "Dharmayudha",
- "avatarUrl": "https://www.gravatar.com/avatar/101efaf88524ecc7518f1af1bf14494e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 05:29:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730026",
- "username": "joandeportol",
- "fullName": "joandeportol",
- "avatarUrl": "https://www.gravatar.com/avatar/569e25fc4405d1f17ad069c9fbf1303e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 09:48:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730036",
- "username": "shoyu",
- "fullName": "shoyu",
- "avatarUrl": "https://www.gravatar.com/avatar/63482119a319a16ec7701c49c531212c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 09:53:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730220",
- "username": "chanmix51",
- "fullName": "chanmix51",
- "avatarUrl": "https://www.gravatar.com/avatar/b80a4b5f0be0575599f7b18b80ced91c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 12:11:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730314",
- "username": "miekemouse123",
- "fullName": "miekemouse123",
- "avatarUrl": "https://www.gravatar.com/avatar/f13e090b894e27d422d9e2b74e50837c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 21:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730402",
- "username": "ramboo45",
- "fullName": "ramboo45",
- "avatarUrl": "https://www.gravatar.com/avatar/5d666cdc930b84ca18d4397304df72fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 15:04:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730432",
- "username": "fkilic13",
- "fullName": "fkilic13",
- "avatarUrl": "https://www.gravatar.com/avatar/428994f60afeff7073ce6489d5f813b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 15:24:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730452",
- "username": "pperezcolombia",
- "fullName": "Pedro Fabián Pérez Arteaga (pperezcolombia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730452/medium/9755c40f928912583a0ca30b50bc7d01.jpeg",
- "joined": "2021-04-28 15:53:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730558",
- "username": "ram0304",
- "fullName": "ram0304",
- "avatarUrl": "https://www.gravatar.com/avatar/df5136e2d6fb7371c6104d5a582cd573?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 17:44:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730600",
- "username": "Datenshi",
- "fullName": "Datenshi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730600/medium/562d4270c70922086fe1ce42f079e984.jpg",
- "joined": "2021-04-28 20:22:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728190",
- "username": "Marcus27UK",
- "fullName": "Marcus27UK",
- "avatarUrl": "https://www.gravatar.com/avatar/ea761150b8eb3a29b899a1bad118010b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 03:40:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727978",
- "username": "moilui",
- "fullName": "moilui",
- "avatarUrl": "https://www.gravatar.com/avatar/f4ffa63acc404899932a5c05085aeea1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 16:36:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725188",
- "username": "bagira2512",
- "fullName": "ivanna panasuk (bagira2512)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725188/medium/8de0ac373b7fbd055402a38215b9e0a6.jpg",
- "joined": "2021-04-24 15:36:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726406",
- "username": "MartoEpo",
- "fullName": "MartoEpo",
- "avatarUrl": "https://www.gravatar.com/avatar/ea584d4c746d9d5b1da12c32138fed2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 15:37:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725224",
- "username": "julioabrahao",
- "fullName": "Julio Abrahão (julioabrahao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725224/medium/71c544a5f76fec25c5a1f156b4e74474.jpeg",
- "joined": "2021-04-24 16:18:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725288",
- "username": "HypeRush",
- "fullName": "yağız berk vural (HypeRush)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725288/medium/94cb2ca98cad3a255cfe800f33d77761.jpeg",
- "joined": "2021-04-24 17:16:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725384",
- "username": "kokxxxxik",
- "fullName": "ANDRZEJ J. (kokxxxxik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725384/medium/3d95e67f2d0cf018557b337329216fa4.jpeg",
- "joined": "2021-04-24 19:47:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725740",
- "username": "paolo.mantovani",
- "fullName": "Paolo Mantovani (paolo.mantovani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725740/medium/209c984838eb1bee4aede9f0e6c5dee6.jpeg",
- "joined": "2021-04-25 04:39:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725874",
- "username": "Mizeri",
- "fullName": "Mizeri",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725874/medium/438f8e88827805ef3cb42b27290f4954.png",
- "joined": "2021-04-25 07:37:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725992",
- "username": "gkhnatc80",
- "fullName": "Gökhan Atıcı (gkhnatc80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725992/medium/738fc97226613aced2536303eff2ff22.jpeg",
- "joined": "2021-04-25 09:40:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725996",
- "username": "alvilica.bouanani",
- "fullName": "Stormisausore (alvilica.bouanani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725996/medium/40e18610dc51e592ef05c698d2904e5d.png",
- "joined": "2021-04-25 09:41:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726036",
- "username": "wangyanghr",
- "fullName": "Yang Wang (wangyanghr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726036/medium/5448c6150411b094b13b79d8fe4a3f29.jpeg",
- "joined": "2021-04-25 10:52:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726110",
- "username": "dugarte.z981",
- "fullName": "Daniel Horacio Ugarte (dugarte.z981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726110/medium/6ce23defc916504b5bf20fade6532619.jpeg",
- "joined": "2021-04-25 12:05:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726116",
- "username": "salih.keyf",
- "fullName": "salih keyf (salih.keyf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726116/medium/276f7773be59d0dd0ea1252e816006ca.jpg",
- "joined": "2021-04-25 12:14:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726400",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/a3c8b6df152674573f363cd65e8acd8d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 15:45:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726474",
- "username": "zzhou",
- "fullName": "zzhou",
- "avatarUrl": "https://www.gravatar.com/avatar/5fb2ce40f06959b253dabc90bece479d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 16:56:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727958",
- "username": "PBK0227",
- "fullName": "PBK0227",
- "avatarUrl": "https://www.gravatar.com/avatar/dd46421af00469930767a0cf35d4a53c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 22:11:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726558",
- "username": "jpsossavi",
- "fullName": "jpsossavi",
- "avatarUrl": "https://www.gravatar.com/avatar/fb2b7d0bdefc2ba5bca029ef0382b209?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 19:20:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726566",
- "username": "Cronaldo",
- "fullName": "Cronaldo",
- "avatarUrl": "https://www.gravatar.com/avatar/ea2ae1349e64d8ad4d36a0f3bf231ea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 19:29:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726596",
- "username": "cp_leonardo",
- "fullName": "César Pineda (cp_leonardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726596/medium/cae3d03e9fe8e133b699b393d72c87f4.jpeg",
- "joined": "2021-04-25 20:28:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726702",
- "username": "m.mirgolbabaei666",
- "fullName": "Mohammad Mirgolbabaei (m.mirgolbabaei666)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726702/medium/2fb4c1a6333de898cb2ba671be78222a.jpg",
- "joined": "2021-04-30 02:54:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726760",
- "username": "setiawanst",
- "fullName": "setiawanst",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726760/medium/5b90f1769b62ac80a10233b8b9558eed.jpg",
- "joined": "2021-04-26 00:45:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726900",
- "username": "hassanatef312",
- "fullName": "Hassan Atef (hassanatef312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726900/medium/58cf487ada651b35a1d57a135b52650f.jpeg",
- "joined": "2021-04-26 03:37:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727038",
- "username": "agolautner",
- "fullName": "agolautner",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727038/medium/4150668cd11c03c029aeaaa44409248e.png",
- "joined": "2021-04-26 05:47:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727190",
- "username": "chakibnori",
- "fullName": "chakibnori",
- "avatarUrl": "https://www.gravatar.com/avatar/97c01b1b73f91f10614cac8567b7317d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 08:10:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727256",
- "username": "daniela108",
- "fullName": "daniela (daniela108)",
- "avatarUrl": "https://www.gravatar.com/avatar/5b73016b6311188aaa3eaeeb0d2a8c88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 09:03:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727746",
- "username": "boygirlln1",
- "fullName": "Tamxom da1992 (boygirlln1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727746/medium/bb9d9d833f8280f65c9f53620fc789b3.jpeg",
- "joined": "2021-04-26 17:07:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727924",
- "username": "YuriNascimento",
- "fullName": "Yuri Nascimento (YuriNascimento)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727924/medium/64551c4f06627c3dc665d55f0c240b6f.jpeg",
- "joined": "2021-04-26 21:17:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716408",
- "username": "hokbe",
- "fullName": "hokbe",
- "avatarUrl": "https://www.gravatar.com/avatar/1b5cf03b2a63dbc9c895a1fcc92e854f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 05:10:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715874",
- "username": "thanhtiktok",
- "fullName": "thanhtiktok",
- "avatarUrl": "https://www.gravatar.com/avatar/c8b96071ea6b74d33f3a7715cc8b9228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 14:57:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730690",
- "username": "Khasanboy91",
- "fullName": "Khasanboy Abdullaev H7 (Khasanboy91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730690/medium/272dc1528c197c387c450230a21bc893.jpg",
- "joined": "2021-04-28 20:45:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707756",
- "username": "Khapouey",
- "fullName": "Nicolas Bueche (Khapouey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707756/medium/e47aebc801e052936c4f617c8a70d1af.jpeg",
- "joined": "2021-04-11 18:36:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707204",
- "username": "962241455",
- "fullName": "weichao (962241455)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707204/medium/db57ab04312e7e22708d09efc96b367a.png",
- "joined": "2021-04-11 08:45:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707230",
- "username": "M1ting",
- "fullName": "AKA.miting (M1ting)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707230/medium/ee5de7436e01ca1fae88b235cfa6adec.png",
- "joined": "2021-04-11 09:06:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707282",
- "username": "galuhoracel",
- "fullName": "Galuh Panduriksa Buana (galuhoracel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707282/medium/3850731d92534b6096de77e15292eb27.jpg",
- "joined": "2021-04-11 09:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707288",
- "username": "canerdundar",
- "fullName": "canerdundar",
- "avatarUrl": "https://www.gravatar.com/avatar/0a322693a378cac44da61d515f4e001d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 10:03:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707394",
- "username": "AntonioPelli",
- "fullName": "AntonioPelli",
- "avatarUrl": "https://www.gravatar.com/avatar/ef8a216fb930be15aece0e72e6128cb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 11:29:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707408",
- "username": "Stev110",
- "fullName": "Stev110",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707408/medium/06bb638d445604925d0bcaa58768558b.png",
- "joined": "2021-04-11 11:43:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707446",
- "username": "rafael007",
- "fullName": "rafael007",
- "avatarUrl": "https://www.gravatar.com/avatar/12ac8242f0b549cafb2e414cc29ebef5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 12:29:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707448",
- "username": "byoriolserra",
- "fullName": "byoriolserra",
- "avatarUrl": "https://www.gravatar.com/avatar/b69cf204eb793bc36d6755f9ee7938b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 12:29:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707492",
- "username": "Yousuf_104",
- "fullName": "Yousuf_104",
- "avatarUrl": "https://www.gravatar.com/avatar/52d618e862dd6e76c70ef87fe4cc3628?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 13:15:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707524",
- "username": "kali77",
- "fullName": "kali77",
- "avatarUrl": "https://www.gravatar.com/avatar/4f6ac0259323a40da42e4d0da87100f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 13:59:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708002",
- "username": "Yongy-vers",
- "fullName": "Yongy-vers",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708002/medium/158184073958629bcb405fed4f8cd0e6.png",
- "joined": "2021-04-12 01:09:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706680",
- "username": "Eliasdf",
- "fullName": "Eliasdf",
- "avatarUrl": "https://www.gravatar.com/avatar/07d060decf321695437230d032a0ebcf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 21:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708254",
- "username": "nilsdethlefsen",
- "fullName": "nilsdethlefsen",
- "avatarUrl": "https://www.gravatar.com/avatar/5c1b5ce5f7a6b8c097158de47f6e8bc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 05:05:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708306",
- "username": "eln_ferdi_17120",
- "fullName": "Ferdi Elmas (eln_ferdi_17120)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708306/medium/7db13590f56454f87cc7593a2e0d6d6a.jpeg",
- "joined": "2021-04-12 05:50:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708418",
- "username": "binanceczrahim",
- "fullName": "Rahim Pourrahimi (binanceczrahim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708418/medium/8ec39aea97de9826679a60cf359138f8.jpg",
- "joined": "2021-04-12 07:23:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708432",
- "username": "karozkan",
- "fullName": "Özkan Göktaş (karozkan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708432/medium/fb9fc661d43315af3a7ed65bf1bedc04.jpeg",
- "joined": "2021-04-12 07:30:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708658",
- "username": "adrian.olguin-ext",
- "fullName": "Adrian OLGUIN (adrian.olguin-ext)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708658/medium/b4843de838470aeb9a3c36510431bbb1.jpeg",
- "joined": "2021-10-30 13:49:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708670",
- "username": "antoniodepaos",
- "fullName": "Toño Pallarés (antoniodepaos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708670/medium/088fdcb540084a684d4a8f04acfd7144.jpg",
- "joined": "2021-04-12 10:19:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708696",
- "username": "wmswms938",
- "fullName": "Moshi Wei (wmswms938)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708696/medium/2303f2ec8760f6fa46ad1117e61d23b5.jpg",
- "joined": "2021-04-12 10:30:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708720",
- "username": "DanielLopezSainz",
- "fullName": "DanielLopezSainz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708720/medium/61502a29fddc4e6ceca1e731a593dfc3.png",
- "joined": "2021-04-12 10:56:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708760",
- "username": "hypebeans",
- "fullName": "Muumi (ミュウミ) (hypebeans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708760/medium/f039dc85a8469b65d9e3e2413f9c4710.png",
- "joined": "2021-04-12 11:22:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 86,
- "negativeVotes": 19,
- "winning": 0
- },
- {
- "user": {
- "id": "14708840",
- "username": "dsantin95",
- "fullName": "dsantin95",
- "avatarUrl": "https://www.gravatar.com/avatar/f54449d40f99af23a219cfdf97eb7113?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 12:38:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709176",
- "username": "AboHamed",
- "fullName": "Abo Hamed (AboHamed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709176/medium/c6b325862fa60edc08bb896cccd6eef5.jpg",
- "joined": "2021-04-12 18:36:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706884",
- "username": "Touka228",
- "fullName": "Touka228",
- "avatarUrl": "https://www.gravatar.com/avatar/30a47d6969a44689faeebb0a7c2f9a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 02:37:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706598",
- "username": "uricata",
- "fullName": "uricata",
- "avatarUrl": "https://www.gravatar.com/avatar/c89771e0a5a03ba90fe8c3cbf7c5a798?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 19:25:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709216",
- "username": "iliyaashrafi",
- "fullName": "iliyaashrafi",
- "avatarUrl": "https://www.gravatar.com/avatar/71c700fd076a14976925411a9716706f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 19:36:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704716",
- "username": "Sansey89",
- "fullName": "Sansey89",
- "avatarUrl": "https://www.gravatar.com/avatar/2ceaa48f718cf0499b5eccd82570f13c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 08:35:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702332",
- "username": "joaquindeleonamerio",
- "fullName": "Joaquín Deleon Amerio (joaquindeleonamerio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702332/medium/f5e389288946c3f0bd1b305fdb383daf.jpg",
- "joined": "2021-04-07 16:37:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702518",
- "username": "Byrde",
- "fullName": "Byrde",
- "avatarUrl": "https://www.gravatar.com/avatar/4763941b7c80ff299f8bc4bd97a288fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-07 20:55:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703180",
- "username": "kmasuda",
- "fullName": "kmasuda",
- "avatarUrl": "https://www.gravatar.com/avatar/a43d50338c716437078657061c8d7280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-08 08:24:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703186",
- "username": "giovanni.campagnoli",
- "fullName": "Giovanni Campagnoli (giovanni.campagnoli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703186/medium/44ae9c0792ba94297253ea6cebe4445d.jpg",
- "joined": "2021-04-08 08:29:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703322",
- "username": "zy_sky",
- "fullName": "zy_sky",
- "avatarUrl": "https://www.gravatar.com/avatar/32aac151c1ff032dd6b9ea0c64d612cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-08 10:00:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703406",
- "username": "mertaliop93",
- "fullName": "Ali Mert (mertaliop93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703406/medium/089126b78aad61af9e9a31b729884057.png",
- "joined": "2021-04-08 10:58:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14703638",
- "username": "okabrionz",
- "fullName": "Oka bRionZ (okabrionz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14703638/medium/d155aad65f6574ce5dc850691e4f7342.jpeg",
- "joined": "2021-04-08 13:49:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704100",
- "username": "arturo.1997",
- "fullName": "Arturo S. Medrano (arturo.1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704100/medium/4f0e3cede4545cf57be541ac12e0ab32.jpeg",
- "joined": "2021-04-08 22:08:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704396",
- "username": "KyrieLee0823",
- "fullName": "KyrieLee0823",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704396/medium/93e86f6f825e26f41ce75353166d2e5f.jpeg",
- "joined": "2021-04-09 04:32:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704668",
- "username": "phrobinet",
- "fullName": "phrobinet",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704668/medium/f456203d0a45823ded3c364a95f57f3e.jpeg",
- "joined": "2021-04-19 06:03:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704910",
- "username": "Tibounne",
- "fullName": "Tibounne",
- "avatarUrl": "https://www.gravatar.com/avatar/30f36ea7b3997d6bf4e816a2f95722fd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 10:38:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706566",
- "username": "amagiddmxh",
- "fullName": "Amagi DDmxh (amagiddmxh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706566/medium/8e4b6fd81dc8bcf21955428c0277ec3c.jpg",
- "joined": "2021-04-10 18:31:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14704914",
- "username": "Gian-Lorenzo",
- "fullName": "Gian-Lorenzo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14704914/medium/4a90eb0bb07d82f11b122198ee8c47ab.png",
- "joined": "2021-04-09 10:43:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705048",
- "username": "daniel.zhang",
- "fullName": "daniel.zhang",
- "avatarUrl": "https://www.gravatar.com/avatar/d3472257e40f015e5ca52b709b271503?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 12:28:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705050",
- "username": "Loy123",
- "fullName": "Loy123",
- "avatarUrl": "https://www.gravatar.com/avatar/252e8412b5989108cae87794fd3b5e9b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 12:29:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705502",
- "username": "Majid959",
- "fullName": "Majid959",
- "avatarUrl": "https://www.gravatar.com/avatar/9333ec4d3f01f3a82c8cfd538bc5c55d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 21:12:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705630",
- "username": "markfherwig",
- "fullName": "markfherwig",
- "avatarUrl": "https://www.gravatar.com/avatar/9676acf7dc15de5553c0b07e8be9dfd5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 23:52:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705756",
- "username": "near_",
- "fullName": "near_",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705756/medium/291add958fcab6d68ed7be8fdf4fbc73.jpg",
- "joined": "2021-04-10 03:24:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705794",
- "username": "arusatava",
- "fullName": "Arusatava Diсokusay (arusatava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705794/medium/7f35490773280819aaf885372c69589a.jpeg",
- "joined": "2021-04-10 04:28:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705796",
- "username": "seladigitaltrading",
- "fullName": "jakob medina (seladigitaltrading)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705796/medium/45f9b46fda15609f204ff40ccb176998.jpg",
- "joined": "2021-04-10 04:05:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705886",
- "username": "jsssyc",
- "fullName": "jsssyc",
- "avatarUrl": "https://www.gravatar.com/avatar/80a4686cdfc3ce699c4ce9031432b3e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 06:21:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706332",
- "username": "AlexD10S",
- "fullName": "alexd10s (AlexD10S)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706332/medium/bcc3c3226163167446b575fe615e96d2.jpeg",
- "joined": "2021-04-10 14:08:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706522",
- "username": "SebastianJorg",
- "fullName": "SebastianJorg",
- "avatarUrl": "https://www.gravatar.com/avatar/31cfe7d7873b42f0a790c9bc9a3f1d8f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 17:33:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709210",
- "username": "mm.shirinnezhad",
- "fullName": "Mohammad Mehdi (mm.shirinnezhad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709210/medium/4f91166a36102f000bfd7c53769952aa.jpeg",
- "joined": "2021-04-12 19:19:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709226",
- "username": "Hishler",
- "fullName": "Hishler",
- "avatarUrl": "https://www.gravatar.com/avatar/1d641208816a310273798a47294a4393?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 20:00:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715830",
- "username": "robbisg",
- "fullName": "robbisg",
- "avatarUrl": "https://www.gravatar.com/avatar/0c2e75f7e279b1132a4cf1e49075b0a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 14:20:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714186",
- "username": "WizerPlay",
- "fullName": "WizerPlay",
- "avatarUrl": "https://www.gravatar.com/avatar/7aec6156a0a5905d2d262a5338eb49ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 09:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712944",
- "username": "jrovez",
- "fullName": "jrovez",
- "avatarUrl": "https://www.gravatar.com/avatar/454973b99bdf0550b3af3babdfbcb86f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 09:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712994",
- "username": "bordakito",
- "fullName": "bordakito",
- "avatarUrl": "https://www.gravatar.com/avatar/d45cd8bd66936fba5670921c72bc970c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 10:14:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713310",
- "username": "aravion",
- "fullName": "aravion",
- "avatarUrl": "https://www.gravatar.com/avatar/34c265ee06f81b5c7b922dfc9c0e3280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 14:27:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713364",
- "username": "Miqpico",
- "fullName": "Miqpico",
- "avatarUrl": "https://www.gravatar.com/avatar/5215d09f67517d96d858b9d5b69b6c6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 15:13:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713486",
- "username": "Mr.sajad_shirazi",
- "fullName": "Sajad Shirazi (Mr.sajad_shirazi)",
- "avatarUrl": "https://www.gravatar.com/avatar/998b7b85f1a4c127a0d1d0e7257320a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 17:01:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713532",
- "username": "Espn",
- "fullName": "Espn",
- "avatarUrl": "https://www.gravatar.com/avatar/00fa4a281618b853eaef2c6481ee9ff7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 22:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713644",
- "username": "rizv033",
- "fullName": "rizv033",
- "avatarUrl": "https://www.gravatar.com/avatar/89d5cc937d98db6813966b32073e282b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:02:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713656",
- "username": "jeffersonqs",
- "fullName": "jeffersonqs",
- "avatarUrl": "https://www.gravatar.com/avatar/2d3c9b727f4415e178a76ac7e2ec517a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:11:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713664",
- "username": "joaopaulomoraes",
- "fullName": "João Paulo Moraes (joaopaulomoraes)",
- "avatarUrl": "https://www.gravatar.com/avatar/4405735f6f3129e0286d9d43e7b460d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:25:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713748",
- "username": "flyng12",
- "fullName": "flyng12",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14713748/medium/c9ee0ecb2c8ecdb140bc6fdf8e7002b4.jpg",
- "joined": "2021-04-15 23:08:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714290",
- "username": "Wisnuadity",
- "fullName": "Wisnu Aditya (Wisnuadity)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714290/medium/fbae35aeca0836b0acfa8d9ebebfdcd1.jpg",
- "joined": "2021-07-26 01:46:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712730",
- "username": "Jameslee1989",
- "fullName": "Jameslee1989",
- "avatarUrl": "https://www.gravatar.com/avatar/e0c596f756f98eab7e666671d099f6e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 06:41:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714470",
- "username": "samedmertoglu",
- "fullName": "Samed Mertoğlu (samedmertoglu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714470/medium/1da0c147be6e060995a0bfb20ed7a92f.jpeg",
- "joined": "2021-04-16 10:23:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714636",
- "username": "dvincent157",
- "fullName": "David Vincent (dvincent157)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714636/medium/9f04d33ad23f86ccf3a50ed2ef84e3ef.png",
- "joined": "2021-04-16 13:17:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714742",
- "username": "medved2940",
- "fullName": "Миша Колбасов (medved2940)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714742/medium/84509228b3f68874da3bb8089ee82ec8.jpg",
- "joined": "2021-04-16 14:48:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714940",
- "username": "2-hill",
- "fullName": "2-hill",
- "avatarUrl": "https://www.gravatar.com/avatar/4faf6f5f29f8583d0337617a6fcdb000?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 18:37:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714982",
- "username": "Kfar",
- "fullName": "Kfar",
- "avatarUrl": "https://www.gravatar.com/avatar/f826f7f5f38f24349fdd473c333e2faf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 19:48:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715154",
- "username": "AURICHEST",
- "fullName": "AURICHEST",
- "avatarUrl": "https://www.gravatar.com/avatar/be1895e0f0de06d5fd9a2dc15821bca4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 00:34:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715238",
- "username": "woryakarimi7995",
- "fullName": "وریا کریمی (woryakarimi7995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715238/medium/9574e9228d0a3c841402b47b24ade382.jpg",
- "joined": "2021-04-17 02:58:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715364",
- "username": "ethanglezbarreto",
- "fullName": "ETHANGB González (ethanglezbarreto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715364/medium/ba72b5832f36c2daf1c95a751c15b32d.jpg",
- "joined": "2021-04-17 05:44:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715384",
- "username": "kemallbangus123",
- "fullName": "Muhamad Kemal Pebriansyah (kemallbangus123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715384/medium/1882a3be104737a70d57a761e223b721.jpeg",
- "joined": "2021-04-17 06:21:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715690",
- "username": "chrischengdzonglee",
- "fullName": "Nru Dzong (chrischengdzonglee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715690/medium/b16e71c8140694d52d36a746d33d78d7.jpeg",
- "joined": "2021-04-17 11:55:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715694",
- "username": "faresallan",
- "fullName": "國王FARES (faresallan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715694/medium/8145f1cd9b6908d9e96233abac00e53f.jpeg",
- "joined": "2021-04-17 12:02:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712840",
- "username": "FelipeMaitan",
- "fullName": "FelipeMaitan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712840/medium/cfd99eb4dba39d60d3f78be48724cebe.png",
- "joined": "2021-04-15 08:18:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712650",
- "username": "vahidkm86",
- "fullName": "vahid kazemian moghaddam (vahidkm86)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712650/medium/fc40402b0c476b09b1a38fd944f53dff.jpeg",
- "joined": "2021-04-15 05:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709234",
- "username": "Maha_balieash",
- "fullName": "Maha_balieash",
- "avatarUrl": "https://www.gravatar.com/avatar/aa338505ce5ec408182ea0801620ce2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 20:17:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710684",
- "username": "sort0905291712",
- "fullName": "蔡加盟 (sort0905291712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710684/medium/9fa52441908f577f867b51a43ac00aac.jpg",
- "joined": "2021-04-13 18:40:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709246",
- "username": "Mymaridae",
- "fullName": "Alexandre Mota (Mymaridae)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709246/medium/b89620beb67e38c9d555c753c3b01784.jpeg",
- "joined": "2021-05-10 14:43:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709304",
- "username": "car63",
- "fullName": "car63",
- "avatarUrl": "https://www.gravatar.com/avatar/55f3c079c98cd77a06d13de9dcec8167?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 21:51:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709308",
- "username": "andortree",
- "fullName": "Ziang Chen (andortree)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709308/medium/0069b2309f3e553d592492b2980c4fc2.jpg",
- "joined": "2021-04-12 22:05:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709432",
- "username": "s.c.macchiato",
- "fullName": "Haruka Kawamura (s.c.macchiato)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709432/medium/cdfb5efd65d125af9b5d5a1d17d039f8.jpeg",
- "joined": "2021-09-29 00:06:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709490",
- "username": "jtrhb",
- "fullName": "jtrhb",
- "avatarUrl": "https://www.gravatar.com/avatar/f456a9a88ae6bcdc91f4a8f1beb2e39e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 01:22:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709730",
- "username": "ArkadiaDev",
- "fullName": "Massimiliano Pighi (ArkadiaDev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709730/medium/2d56160896fed391c482f06f729b0f58.jpeg",
- "joined": "2021-04-13 04:42:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709736",
- "username": "A-R-V",
- "fullName": "A-R-V",
- "avatarUrl": "https://www.gravatar.com/avatar/0715bda33b948822cc269d7c526c3e28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 04:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709844",
- "username": "Bohdan_Hoisa",
- "fullName": "Arbeneen (Bohdan_Hoisa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709844/medium/aea7b7ba52207c45f8dadf36a8d43f71.jpeg",
- "joined": "2021-04-13 06:20:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710314",
- "username": "Almadepato",
- "fullName": "Almadepato",
- "avatarUrl": "https://www.gravatar.com/avatar/f725d06abbea057d95a1db4daf9775e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 12:22:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710420",
- "username": "Afshin4030",
- "fullName": "Afshin4030",
- "avatarUrl": "https://www.gravatar.com/avatar/095e0bdee3d3f914fe82205d5e3a267a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 13:48:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710538",
- "username": "StayCoolDK",
- "fullName": "Frankieboy93 (StayCoolDK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710538/medium/43522513b3c357f3de6b6e0e0be597aa.jpg",
- "joined": "2021-04-13 15:41:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710992",
- "username": "nihadermina2010",
- "fullName": "Nihad Mahovic (nihadermina2010)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710992/medium/47ec1a0e2ee639420cf6fbf258eefd7f.jpg",
- "joined": "2021-04-14 01:43:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14712604",
- "username": "zazadjo",
- "fullName": "zazadjo",
- "avatarUrl": "https://www.gravatar.com/avatar/dd69e93d6809444464f55340db534f08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 05:07:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711482",
- "username": "rfcheung",
- "fullName": "Ring Fai Cheung (rfcheung)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711482/medium/541ada9b93f309d11b396afb79efbce5.jpeg",
- "joined": "2021-04-14 08:25:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711642",
- "username": "kenowlee",
- "fullName": "Ronaldo Santos (kenowlee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711642/medium/cc1ab7ad933f06b0fc99de7457c6b3c9.jpeg",
- "joined": "2021-04-14 10:26:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711740",
- "username": "cakirbyrm77",
- "fullName": "B. Alp Çakır (cakirbyrm77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711740/medium/69a977f19dd2b244307801c85fd448be.jpeg",
- "joined": "2021-04-14 11:41:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711782",
- "username": "zxc.zxc122222",
- "fullName": "بندر المطيري (zxc.zxc122222)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711782/medium/df77868137f4e7885e9cb614df5d4481.jpeg",
- "joined": "2021-04-14 12:33:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711810",
- "username": "malzebu",
- "fullName": "Gustavo BJ (malzebu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711810/medium/cd03191615e232f82ead1a505c725868.jpeg",
- "joined": "2021-04-14 13:23:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711854",
- "username": "Gamma-Software",
- "fullName": "Valentin Rudloff (Gamma-Software)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711854/medium/0ae62f880c9fdec755310b2d551953ae.jpeg",
- "joined": "2021-04-14 14:22:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712008",
- "username": "clembappe",
- "fullName": "Clemzer (clembappe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712008/medium/14474686f1dfa0b727f91acf51f46d8e.jpg",
- "joined": "2021-04-14 17:05:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712126",
- "username": "maudmcok",
- "fullName": "Maud (maudmcok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712126/medium/9c0f3fa093a2a2354b275243d3061276.png",
- "joined": "2021-04-14 19:28:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712154",
- "username": "fivenicerice",
- "fullName": "fivenicerice",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712154/medium/3730e404a7ef0a2e5f76426f84376d53.jpg",
- "joined": "2021-04-14 20:03:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712250",
- "username": "XiG",
- "fullName": "Steve Hu (XiG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712250/medium/cf8f4951e71da77514310bcd86b2a825.jpeg",
- "joined": "2021-04-14 22:15:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712452",
- "username": "liujingran",
- "fullName": "liujingran",
- "avatarUrl": "https://www.gravatar.com/avatar/10911cd16e304479e47b38dce533cbf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 03:03:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730618",
- "username": "emilnachev69",
- "fullName": "Emil Nachev (emilnachev69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730618/medium/4cb6f96ea43b40aeabd58221e4ced361.jpeg",
- "joined": "2021-04-28 19:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730796",
- "username": "mukhamadkurniarrokhman",
- "fullName": "Mukhamad kurniarrokhman (mukhamadkurniarrokhman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730796/medium/3e2f1ca6fbbc5a2785754c7e209a8358.jpeg",
- "joined": "2021-04-28 23:35:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14756984",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/37c99bb5a5f2017e53fd65993bd76cee?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 15:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748222",
- "username": "ffmpp",
- "fullName": "Flávio FM (ffmpp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748222/medium/38294fc1a0e915f0f021ffb221e8573b.png",
- "joined": "2021-05-09 19:09:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747314",
- "username": "zx50365",
- "fullName": "zx50365",
- "avatarUrl": "https://www.gravatar.com/avatar/a23e1034e3596ddc2d220318c061bbe3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 10:32:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747588",
- "username": "monmode",
- "fullName": "mon mo (monmode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747588/medium/e91af5ff0b1fb64dbf6de00f43a9a17d.png",
- "joined": "2021-05-09 12:48:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747610",
- "username": "GrimCrow",
- "fullName": "GrimCrow",
- "avatarUrl": "https://www.gravatar.com/avatar/74d5c5f4f2500ea6ae955846b009fcaa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 12:56:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747640",
- "username": "rostislavov6",
- "fullName": "rostislavov6",
- "avatarUrl": "https://www.gravatar.com/avatar/ad42117749964a92f3802770193807f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 13:11:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747658",
- "username": "Domokun",
- "fullName": "皇耀司 (Domokun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747658/medium/7fa1b0756d7a431ba502f4f6fd305f3f.png",
- "joined": "2021-05-12 19:24:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747934",
- "username": "Maneken",
- "fullName": "Maneken",
- "avatarUrl": "https://www.gravatar.com/avatar/549cff34b13c40001110d4ce45bd31bb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 15:50:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747946",
- "username": "torr3s_luis",
- "fullName": "Luis Torres (torr3s_luis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14747946/medium/a3628eaedf02e729616ebbadf41cd757.jpeg",
- "joined": "2021-05-09 16:00:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748012",
- "username": "bagetlincoln",
- "fullName": "Baget 2024 (bagetlincoln)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748012/medium/ecacbbf86d5eaac6e3faa22da423d949.png",
- "joined": "2021-05-09 16:50:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748044",
- "username": "toa_",
- "fullName": "Mattia Rigo (toa_)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748044/medium/81571a43e54195bf3dc482cc4d83f9fd.jpeg",
- "joined": "2021-05-09 17:04:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748176",
- "username": "manojmsritgokak",
- "fullName": "manojmsritgokak",
- "avatarUrl": "https://www.gravatar.com/avatar/7334ff6f013be8e734f2102c31f09e52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 18:21:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748362",
- "username": "klger",
- "fullName": "klüger (klger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748362/medium/2d098bcd62dd7fcec689be982e10afa0.png",
- "joined": "2021-05-09 21:38:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747136",
- "username": "zgq",
- "fullName": "钟贵清 (zgq)",
- "avatarUrl": "https://www.gravatar.com/avatar/3782cfff6682dc36777a3ec9dd69b6ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 08:00:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748480",
- "username": "rustle",
- "fullName": "Liu Min (rustle)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748480/medium/fb9b53571ebea873ce17257508a8c128.jpg",
- "joined": "2021-05-09 23:53:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14748598",
- "username": "jordyureta1",
- "fullName": "jordyureta1",
- "avatarUrl": "https://www.gravatar.com/avatar/c7e41716669e407cbeb0d99dedbe74f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 02:19:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748730",
- "username": "33501164chen",
- "fullName": "33501164chen",
- "avatarUrl": "https://www.gravatar.com/avatar/6354d1ecab28e3679c9b479e9d7cb6b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 03:38:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748742",
- "username": "loveleber",
- "fullName": "Stepan Leber (loveleber)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14748742/medium/c81304317050a97d89692769a62275ef.png",
- "joined": "2021-05-10 03:48:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14748896",
- "username": "geutopia",
- "fullName": "geutopia",
- "avatarUrl": "https://www.gravatar.com/avatar/fc2352d0363872f52e581c5a719614e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 05:39:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749536",
- "username": "nstnst",
- "fullName": "nstnst",
- "avatarUrl": "https://www.gravatar.com/avatar/ff3326744878afed6dc6ca78c892f33f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 12:40:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749896",
- "username": "muratkoc1881",
- "fullName": "MURAT KOÇ (muratkoc1881)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14749896/medium/38476a7709fc6ae3810fb8ed9c6c6c72.jpeg",
- "joined": "2021-05-10 17:14:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749926",
- "username": "gabekings",
- "fullName": "gabekings",
- "avatarUrl": "https://www.gravatar.com/avatar/9923db47c8c5e9ebc0c0d11edc071abf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 17:38:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14749944",
- "username": "omer.t",
- "fullName": "omer.t",
- "avatarUrl": "https://www.gravatar.com/avatar/826fc802fb2f74200a3bed705e6bfa0d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 18:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750044",
- "username": "eloise.emery",
- "fullName": "Éloïse Emery (eloise.emery)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750044/medium/9e793da12e9905e4598d0e0a2e191289.jpeg",
- "joined": "2021-05-10 19:54:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750070",
- "username": "qnetvova",
- "fullName": "Вова Кащавцев (qnetvova)",
- "avatarUrl": "https://www.gravatar.com/avatar/df21222322ccf8cb8452c4204e88086d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 11:05:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747312",
- "username": "JEANNETTE-SANCHEZ",
- "fullName": "JEANNETTE-SANCHEZ",
- "avatarUrl": "https://www.gravatar.com/avatar/5fa03a32dba8170724a22f6e7c619ea0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 10:29:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14747066",
- "username": "Emilie696",
- "fullName": "Emilie696",
- "avatarUrl": "https://www.gravatar.com/avatar/9096c1f5b3737e2f12398886f51568e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 07:07:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750136",
- "username": "Vit_Hue",
- "fullName": "빛나는돌멩이휴 (Vit_Hue)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750136/medium/8ce738246f2d3ed6e1f50369c20783fe.jpeg",
- "joined": "2021-05-10 21:43:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745024",
- "username": "CharlieBrown27",
- "fullName": "CharlieBrown27",
- "avatarUrl": "https://www.gravatar.com/avatar/bec2d95016d820102d74f44b71cb2d10?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 23:15:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741674",
- "username": "bomorales",
- "fullName": "Boris Morales (bomorales)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741674/medium/d72ea8fd1c3a094f037a5eaabbbe1992.jpeg",
- "joined": "2021-06-06 19:50:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741848",
- "username": "Gerard7",
- "fullName": "Gerard7",
- "avatarUrl": "https://www.gravatar.com/avatar/435c94ee01066c8a0bdcd26d9b56da00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 18:44:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14742660",
- "username": "minduskyx",
- "fullName": "minduskyx",
- "avatarUrl": "https://www.gravatar.com/avatar/6b5766dca0cc5abb066b7953b7c9acb3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 23:30:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14742726",
- "username": "kkguo",
- "fullName": "kkguo",
- "avatarUrl": "https://www.gravatar.com/avatar/c97990fd44c81b4ddc431c77707978b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 00:26:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14742992",
- "username": "pptuan",
- "fullName": "pptuan",
- "avatarUrl": "https://www.gravatar.com/avatar/0f83eb0fb3d777c69bcf272ca9805fd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 03:35:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743326",
- "username": "Kryptotopf",
- "fullName": "Kryptotopf",
- "avatarUrl": "https://www.gravatar.com/avatar/8f71782a0db5b66a7731e0a1f7c8d874?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 06:38:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743370",
- "username": "CLEMENT2000",
- "fullName": "CLEMENT2000",
- "avatarUrl": "https://www.gravatar.com/avatar/d046f1b1be28c3149460610025eb7a9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 07:09:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743694",
- "username": "damis6286749",
- "fullName": "Damian Drozdowski (damis6286749)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14743694/medium/2420faac514071bff5bd9aec15ce8376.png",
- "joined": "2021-05-07 10:09:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14743704",
- "username": "MarceloPires",
- "fullName": "MarceloPires",
- "avatarUrl": "https://www.gravatar.com/avatar/9cd294b0c554a93f5324d9f09fd9fb59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-07 10:12:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14744448",
- "username": "yani4ek",
- "fullName": "Янис Волошин (yani4ek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14744448/medium/487500a62601bab3eaaef4a7d2cc0b57.jpeg",
- "joined": "2021-05-07 15:55:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745094",
- "username": "anhskrttt",
- "fullName": "anhskrttt",
- "avatarUrl": "https://www.gravatar.com/avatar/6f614a04fb7e73fc98ceca6e3bb97f72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 00:15:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746906",
- "username": "Mob1le",
- "fullName": "Alexander Bessalov (Mob1le)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746906/medium/23a87f0267d11038db9dabc232660da6.jpeg",
- "joined": "2021-05-09 04:53:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14745458",
- "username": "sebastien.ferrien",
- "fullName": "SebastienFERRIEN (sebastien.ferrien)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745458/medium/0148b8f185941fce1bdea8c802263b5f.jpeg",
- "joined": "2021-05-08 07:26:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745548",
- "username": "Roman4x97",
- "fullName": "Igor Romanenko (Roman4x97)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745548/medium/6af7ad276603bbede6bed93c98ed7d9b.jpeg",
- "joined": "2021-05-08 08:40:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745718",
- "username": "LatestVGC",
- "fullName": "LatestVGC",
- "avatarUrl": "https://www.gravatar.com/avatar/d2122eb470a4a72f1d34fceb303344fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 10:31:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14745882",
- "username": "q1445686457",
- "fullName": "刘正茂 (q1445686457)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14745882/medium/d5c63e581f4fc3ce544be3f139970cae.png",
- "joined": "2021-05-08 12:58:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746172",
- "username": "VAHL1108",
- "fullName": "VAHL1108",
- "avatarUrl": "https://www.gravatar.com/avatar/c1c12827706c6a3d4837731c507fed43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 16:02:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746202",
- "username": "Yosef_533",
- "fullName": "Yosef_533",
- "avatarUrl": "https://www.gravatar.com/avatar/b184ae3908a109484a9177e598f6da4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 16:22:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746532",
- "username": "Reirka",
- "fullName": "Reirka",
- "avatarUrl": "https://www.gravatar.com/avatar/be7196face7c34d17d9d04352b4c554f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 22:02:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746684",
- "username": "kilavuzolcay29",
- "fullName": "Olcay Kilavuz (kilavuzolcay29)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746684/medium/ef9d4a80d3fe7525665fab4a5ab3b7a5.jpeg",
- "joined": "2021-05-09 01:23:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746732",
- "username": "asdealmeida1",
- "fullName": "Adam D. (asdealmeida1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746732/medium/41ad9e6c8c212d49a5e493167a43de8e.jpeg",
- "joined": "2021-05-09 02:13:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746808",
- "username": "a.kaya001",
- "fullName": "a.kaya001",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14746808/medium/911f7b2c423006d154e3e739638c62b2.JPG",
- "joined": "2021-05-09 03:24:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14746842",
- "username": "jeronimo534",
- "fullName": "jeronimo534",
- "avatarUrl": "https://www.gravatar.com/avatar/834692f32141005659815bade3df9ce3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 03:59:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750098",
- "username": "eastudy1017",
- "fullName": "신동학 (eastudy1017)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750098/medium/265a5f8f4bc4cc63b8bf05a2d32e36f4.png",
- "joined": "2021-05-10 21:18:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750140",
- "username": "Jinosh",
- "fullName": "Jinosh",
- "avatarUrl": "https://www.gravatar.com/avatar/1f0ec10dc21445b1279340e5b8a2c517?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 21:51:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741346",
- "username": "Yury777",
- "fullName": "Yury777",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741346/medium/f0687e3c3e3f859eb020e579f5362e66.jpg",
- "joined": "2021-05-06 15:55:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754350",
- "username": "hektopaxvil",
- "fullName": "hektopaxvil",
- "avatarUrl": "https://www.gravatar.com/avatar/489e647a808df935e0fe2f80a631240a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 09:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752468",
- "username": "kedergon",
- "fullName": "Amin Hadian (kedergon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752468/medium/7937f2f9494df39c53372a741c571ae4.jpeg",
- "joined": "2021-05-12 05:55:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752662",
- "username": "skywong728",
- "fullName": "skywong728",
- "avatarUrl": "https://www.gravatar.com/avatar/b54d3b1e7d0e9b79e2bf0a0c7cfe5bd8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 08:17:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752676",
- "username": "ftalijic",
- "fullName": "ftalijic",
- "avatarUrl": "https://www.gravatar.com/avatar/722c27843f7139864e3137863ad66413?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 08:31:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752990",
- "username": "Gennadich0109",
- "fullName": "Gennadich0109",
- "avatarUrl": "https://www.gravatar.com/avatar/7f09490c93e0318445ad5726ead8bd8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 11:35:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753060",
- "username": "sibelkya1985",
- "fullName": "Brawl çoçuk (sibelkya1985)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753060/medium/14153a201ce927e2093b4d04f4934ada.png",
- "joined": "2021-05-12 12:19:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753626",
- "username": "brany",
- "fullName": "brany",
- "avatarUrl": "https://www.gravatar.com/avatar/b8fc70088ef40a5cd6796258d392468f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 21:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753676",
- "username": "sj69",
- "fullName": "Alsajad Majid (sj69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753676/medium/7d0765449802f44ed616c6db8d996a49.jpeg",
- "joined": "2021-05-12 23:19:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753704",
- "username": "leonardo.seji",
- "fullName": "Seiji K (leonardo.seji)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14753704/medium/24de8f63b8599b59e7f9da5045ca34d6.jpeg",
- "joined": "2021-05-12 22:57:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14753756",
- "username": "BryonLee",
- "fullName": "BryonLee",
- "avatarUrl": "https://www.gravatar.com/avatar/8df26871e50bd11f2b1c66e374e0595e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 00:05:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754146",
- "username": "alfus5",
- "fullName": "alfu5 (alfus5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754146/medium/69dd3ead82350e6abe958295d8cf6259.jpeg",
- "joined": "2021-08-09 13:25:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754612",
- "username": "rodrigovelizcampos",
- "fullName": "rodrigovelizcampos",
- "avatarUrl": "https://www.gravatar.com/avatar/5c8adaa4089bdbb79cf86f0e810d81cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 12:48:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752278",
- "username": "realcoooool",
- "fullName": "null null (realcoooool)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752278/medium/1e24ce45bd31485264dc3c5d2def9d90.jpeg",
- "joined": "2021-05-12 03:43:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754716",
- "username": "BancaPublica",
- "fullName": "Jaime (BancaPublica)",
- "avatarUrl": "https://www.gravatar.com/avatar/bf0eef64a305251365973d87ee7657ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-13 14:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754836",
- "username": "romicalcag",
- "fullName": "Romina Calcagno (romicalcag)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754836/medium/c063ae87900f2f006854bac4f42b7363.jpeg",
- "joined": "2021-05-13 15:31:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754906",
- "username": "Mohamed.Ghadi",
- "fullName": "Simo Ghadi (Mohamed.Ghadi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754906/medium/3f7ddede5807ef7bd87e1721b9d214c4.jpeg",
- "joined": "2021-05-13 16:42:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755264",
- "username": "ld041413017828",
- "fullName": "Lissette Diaz (ld041413017828)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755264/medium/54b891ad2ec290233ab692f4a85ececb.png",
- "joined": "2021-05-13 22:44:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755436",
- "username": "asaddassar",
- "fullName": "Grata (asaddassar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755436/medium/4690deb0429bf1df28828ce2991751a4.jpeg",
- "joined": "2021-05-14 02:16:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755480",
- "username": "mohammad.famo",
- "fullName": "Mohammad Famo (mohammad.famo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755480/medium/c00eecfb1c432d916c106b04ca4c3755.jpeg",
- "joined": "2021-05-14 02:57:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755532",
- "username": "ksenija",
- "fullName": "ksenija",
- "avatarUrl": "https://www.gravatar.com/avatar/3e1c987582c590bd1a73beb827ca4a4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 03:48:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755848",
- "username": "patryksko",
- "fullName": "Patryk Skowroński (patryksko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755848/medium/ede17321578c50cfee8060e1932673c6.jpeg",
- "joined": "2021-05-14 06:50:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755920",
- "username": "Neleroth",
- "fullName": "Neleroth",
- "avatarUrl": "https://www.gravatar.com/avatar/83bc5363a3fc673cafb79b8f3af1f0c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 07:29:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14755966",
- "username": "RealGoye",
- "fullName": "RealGoye",
- "avatarUrl": "https://www.gravatar.com/avatar/9fa4dcc2b7a1d5d2cfa557bab4d94cbf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 08:02:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14756100",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/3f6a99a487a2c1609b0634f04135bf78?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-14 10:19:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752336",
- "username": "Necis",
- "fullName": "Necis",
- "avatarUrl": "https://www.gravatar.com/avatar/1d409bc52730dd8c3aa5fc9312b8e467?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 04:36:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752232",
- "username": "finboy2210",
- "fullName": "Коля Ки (finboy2210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752232/medium/bf75451f44d9d0d064aafd7103e08145.jpeg",
- "joined": "2021-05-12 03:03:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750194",
- "username": "Jenniesong",
- "fullName": "Jenniesong",
- "avatarUrl": "https://www.gravatar.com/avatar/b0bbf4c548a65d1d5d44f9da650e8757?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 22:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750988",
- "username": "Godofdeath",
- "fullName": "Godofdeath",
- "avatarUrl": "https://www.gravatar.com/avatar/2d7386b24ae210f45290b9053f78595a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 08:59:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750292",
- "username": "xmr192217",
- "fullName": "Aiden Jameson (xmr192217)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750292/medium/777c2bbb1ce44e1ed131bcec981e6c9f.png",
- "joined": "2021-05-11 01:12:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750364",
- "username": "loox",
- "fullName": "loox",
- "avatarUrl": "https://www.gravatar.com/avatar/d2bc83e28c75e075ca6c404503d31a51?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 01:36:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750382",
- "username": "SabuesoDigital",
- "fullName": "SabuesoDigital",
- "avatarUrl": "https://www.gravatar.com/avatar/465ce7a4b3a7761383bb70cbf5e24382?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 01:54:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750398",
- "username": "pambered",
- "fullName": "박준서 (pambered)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750398/medium/16afd692cd7bbacd51f6cec08bc21cc3.png",
- "joined": "2021-05-11 02:14:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750468",
- "username": "daniel26712671",
- "fullName": "daniel26712671",
- "avatarUrl": "https://www.gravatar.com/avatar/34da6c200642c609d9c95b3160539864?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 03:22:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750484",
- "username": "xiao_lichou",
- "fullName": "xiao_lichou",
- "avatarUrl": "https://www.gravatar.com/avatar/4620b9899ac3623b2c166b023e091e12?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 03:31:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750504",
- "username": "rishitsaraf",
- "fullName": "rishitsaraf",
- "avatarUrl": "https://www.gravatar.com/avatar/06113f768b3e9b14f98d0d5bacf49201?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 03:47:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750534",
- "username": "giorgi.chibalashvili",
- "fullName": "Giorgi Chibalashvili (giorgi.chibalashvili)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750534/medium/875385af80fde6091496fd0e35087ca2.jpeg",
- "joined": "2021-05-11 04:10:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750688",
- "username": "mjtbkh",
- "fullName": "mjtbkh",
- "avatarUrl": "https://www.gravatar.com/avatar/3b7400ed00e57c04004da965a90efd20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 05:41:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750760",
- "username": "11477398000106",
- "fullName": "11477398000106",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750760/medium/5b97c8e2cf14616660248a28e527d28c.png",
- "joined": "2021-05-11 06:41:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14750970",
- "username": "joab83",
- "fullName": "joab83",
- "avatarUrl": "https://www.gravatar.com/avatar/778e1919b3d77682207717166c6c946e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 08:46:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751138",
- "username": "cryptohakka",
- "fullName": "hakka (cryptohakka)",
- "avatarUrl": "https://www.gravatar.com/avatar/67c7ea6eb6029a188b2757333abdf96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 10:25:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14752230",
- "username": "GreyWagtail",
- "fullName": "GreyWagtail",
- "avatarUrl": "https://www.gravatar.com/avatar/2134bb0381e2f0dd775e81236c470e08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 03:00:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751220",
- "username": "xinchencai",
- "fullName": "xinchencai",
- "avatarUrl": "https://www.gravatar.com/avatar/d7fe518b9aa784d43e88051c629cada2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 11:24:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751254",
- "username": "marmolcaballerom",
- "fullName": "miguell 248 (marmolcaballerom)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751254/medium/35f1a9d98d9b37a9d9bbc83f378e0ae7.jpeg",
- "joined": "2021-05-11 11:49:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751422",
- "username": "Alexusz",
- "fullName": "Aléxis Moraes (Alexusz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751422/medium/1b45356738263d0753c5d9f87eacce86.jpg",
- "joined": "2021-05-14 12:50:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751424",
- "username": "klortank",
- "fullName": "kLoR TaNk (klortank)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751424/medium/ac0a5029aa35dd84798011ff5e161ce4.jpeg",
- "joined": "2021-05-11 13:17:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751494",
- "username": "ahdsadsdadsfa",
- "fullName": "ahdsadsdadsfa",
- "avatarUrl": "https://www.gravatar.com/avatar/d49dbd1d42281f1a375ceeda4dd4ea35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 14:02:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751612",
- "username": "Shoubair",
- "fullName": "Shoubair",
- "avatarUrl": "https://www.gravatar.com/avatar/f1cb6f523c135da8608cb81a69d2e74f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 15:44:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751614",
- "username": "Zekel97",
- "fullName": "Andreas Szekely (Zekel97)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751614/medium/617245d20333ac5379ab1c9532ffa90a.png",
- "joined": "2021-05-11 15:45:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751854",
- "username": "IBMBigBlue",
- "fullName": "IBMBigBlue",
- "avatarUrl": "https://www.gravatar.com/avatar/5d337bd57e1bfb0bc6b6ac5445482ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 19:47:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751972",
- "username": "khalil-sami",
- "fullName": "Khalil Mouih (khalil-sami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14751972/medium/0c35d736b7d32898fe47b6ebd66e9f1e.jpeg",
- "joined": "2021-05-11 21:50:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752122",
- "username": "karna.prayoga13",
- "fullName": "Karna Prayoga (karna.prayoga13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752122/medium/53cc72d28bf7b8287340892b9aa2c315.png",
- "joined": "2021-05-12 01:14:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14752158",
- "username": "AuFish",
- "fullName": "AuFish",
- "avatarUrl": "https://www.gravatar.com/avatar/75191ff4b83c212b9c5a39d7108c8ddd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-12 02:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741418",
- "username": "pashckova7",
- "fullName": "Яна Пашкова (pashckova7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741418/medium/6ffbdca230bc5c5aafc8854f859723f5.jpeg",
- "joined": "2021-05-06 16:22:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14741046",
- "username": "korelaydogdu.ist",
- "fullName": "Korel Aydoğdu (korelaydogdu.ist)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14741046/medium/72deb5cb8583d0d6ef9d91c10ba1af34.jpeg",
- "joined": "2021-05-06 14:18:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730856",
- "username": "incio_chca",
- "fullName": "Cesar Incio (incio_chca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730856/medium/814f97b84cb2c46e7a0262db09698a11.jpg",
- "joined": "2021-04-29 11:02:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735538",
- "username": "feidar",
- "fullName": "feidar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735538/medium/35ad0eec06bbf6d8889c8e0b7cc50c05.jpeg",
- "joined": "2021-05-02 14:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733942",
- "username": "amrux",
- "fullName": "Amr Ali (amrux)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733942/medium/44d5aa6a83c77e1c0881a272e70f4e22.jpeg",
- "joined": "2021-05-01 06:03:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734234",
- "username": "bangbh",
- "fullName": "Bohyun Bang (bangbh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734234/medium/bf059263d9072bed946895eda4d418ec.jpeg",
- "joined": "2021-05-01 11:27:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734372",
- "username": "oliver-soeser",
- "fullName": "Oliver Söser (oliver-soeser)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734372/medium/4ef6d9d2327019661cc5b9191ce2ad32.png",
- "joined": "2021-05-01 14:05:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734478",
- "username": "munozorellanan90",
- "fullName": "nathaly de los angeles muñoz orellana (munozorellanan90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734478/medium/089f2aa3d243d0980304bebc4b8c9e42.png",
- "joined": "2021-05-01 15:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734482",
- "username": "kleberlima",
- "fullName": "kleberlima",
- "avatarUrl": "https://www.gravatar.com/avatar/7c9e1252522d501ab6adc892ec18352f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 15:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734748",
- "username": "kenliu322",
- "fullName": "kenliu322",
- "avatarUrl": "https://www.gravatar.com/avatar/180ac0a58f9783eda6cf1217f7f7f81f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 21:29:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734892",
- "username": "Kutsalwador",
- "fullName": "Kutsalwador",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8d910780be135b30f8a24c6f2f7947?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 01:51:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734944",
- "username": "cringkamp020",
- "fullName": "C FR (cringkamp020)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734944/medium/e7472a21cad9c623f91536e9daeb41a2.png",
- "joined": "2021-05-02 03:20:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734966",
- "username": "emih.antonijo",
- "fullName": "Antonijo Emih (emih.antonijo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734966/medium/d8828625eab1f5da6826a88b8bb62b94.jpeg",
- "joined": "2021-05-02 03:48:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735294",
- "username": "Bernard_T",
- "fullName": "Bernard Tan (Bernard_T)",
- "avatarUrl": "https://www.gravatar.com/avatar/13b077930bac3e190d67692a8076414d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 09:50:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735650",
- "username": "olcay6535",
- "fullName": "olcay6535",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735650/medium/4341c54d8d7e44932f04fc7a3988005b.png",
- "joined": "2021-05-02 17:39:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733758",
- "username": "Hamed441",
- "fullName": "Hamed441",
- "avatarUrl": "https://www.gravatar.com/avatar/e4ea59c9865f3797beacc451b3b32b5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 01:51:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735762",
- "username": "ivanmaznak",
- "fullName": "Иван Мазняк (ivanmaznak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735762/medium/97a4221450b51adfd5d9ba72171bc900.png",
- "joined": "2021-05-02 21:00:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735822",
- "username": "tsukasanomori",
- "fullName": "TM (tsukasanomori)",
- "avatarUrl": "https://www.gravatar.com/avatar/159bc9f99bc6f8b607acf7cd9c0c716d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 22:44:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735846",
- "username": "weronicamc",
- "fullName": "Veronika Dudová (weronicamc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735846/medium/ade7898c29d686ea8682dbbe2cec816e.jpeg",
- "joined": "2021-05-02 23:59:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735878",
- "username": "KnowsCount",
- "fullName": "KnowsCount",
- "avatarUrl": "https://www.gravatar.com/avatar/e9bad5d32ab7ceabb15d5c92689925b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 00:01:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735944",
- "username": "JoseLuisHerzS",
- "fullName": "JoseLuisHerzS",
- "avatarUrl": "https://www.gravatar.com/avatar/e63283022f8c5fbbf3b688d9d450501e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 01:50:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735952",
- "username": "DeMmAge",
- "fullName": "DeMmAge",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735952/medium/e04b2e75d4d0e43ccd1b6ee12e0c14a4.jpeg",
- "joined": "2021-05-03 02:00:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735992",
- "username": "tcmpasq",
- "fullName": "tcmpasq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735992/medium/4d084cf7bbb19395652e6bae9d61873c.jpg",
- "joined": "2021-05-03 02:41:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736246",
- "username": "Sami.staar",
- "fullName": "Sami Najem (Sami.staar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736246/medium/f963438693a03d07d9b914e6839f09f1.jpeg",
- "joined": "2021-05-03 06:52:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736248",
- "username": "dogarol",
- "fullName": "Dogan Erol (dogarol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736248/medium/abd45e199e835369cdcf596016e685c9.jpeg",
- "joined": "2021-05-03 06:57:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736264",
- "username": "purtual",
- "fullName": "Morten Lautrup (purtual)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736264/medium/bfa73783034f3c6b355dfc74f9a1a1cd.png",
- "joined": "2021-05-03 07:02:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736324",
- "username": "0DarkAngel0",
- "fullName": "0DarkAngel0",
- "avatarUrl": "https://www.gravatar.com/avatar/29ea01522c35f95fabd23287a67d2dfc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 08:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733806",
- "username": "PlutoXI",
- "fullName": "Pluto (PlutoXI)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733806/medium/e09f8d8ae5c644cb039288e6af0a18cf.jpeg",
- "joined": "2021-05-01 03:22:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733694",
- "username": "liugy",
- "fullName": "liugy",
- "avatarUrl": "https://www.gravatar.com/avatar/ee84f1f97a6a977fb3e4b526cccfc70b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 00:30:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736478",
- "username": "ogander",
- "fullName": "ogander",
- "avatarUrl": "https://www.gravatar.com/avatar/894f54abd346f9c2956b14afb644847e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 10:32:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732280",
- "username": "Brandonly1000",
- "fullName": "Brandon Ly (Brandonly1000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732280/medium/ba8443c236c809ee8b2bf88d5da9706d.jpeg",
- "joined": "2021-04-30 00:49:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730858",
- "username": "VanessaF",
- "fullName": "VanessaF",
- "avatarUrl": "https://www.gravatar.com/avatar/3e380250dbb8d90b2f76c1ec445d06ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 01:20:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730882",
- "username": "visp80",
- "fullName": "Руслан Пузыч (visp80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730882/medium/dc86e89520a84b606933c26d250c2fd4.jpg",
- "joined": "2021-04-29 01:48:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731048",
- "username": "Xackurai",
- "fullName": "Xackurai",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731048/medium/f26e2018bffc93ae932ec0a7c8ad8775.jpeg",
- "joined": "2021-04-29 05:14:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731202",
- "username": "Sungbin",
- "fullName": "Sungbin Lee (Sungbin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731202/medium/8766d6dd42fc7373d7b9580769ff4baa.jpg",
- "joined": "2021-04-29 07:18:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731248",
- "username": "Ivan-Stepanenko",
- "fullName": "Ivan-Stepanenko",
- "avatarUrl": "https://www.gravatar.com/avatar/6f195c3ef662fb75acba8423de1de144?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 07:50:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731338",
- "username": "Kanna121",
- "fullName": "Kanna121",
- "avatarUrl": "https://www.gravatar.com/avatar/c3a5760c8e49d21d649b252d1fd14d95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 09:05:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731532",
- "username": "Stanislavy",
- "fullName": "Stanislavy",
- "avatarUrl": "https://www.gravatar.com/avatar/eaff8c967173bbebd45589751487931c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 12:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731932",
- "username": "MQL83",
- "fullName": "MQL83",
- "avatarUrl": "https://www.gravatar.com/avatar/348c513aed120afc29cc2d347b1a4bff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 16:11:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732012",
- "username": "FlavioEPimentel",
- "fullName": "Flávio E Pimentel (FlavioEPimentel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732012/medium/202a93142c6959ff5855813a8735d10a.png",
- "joined": "2021-04-29 22:26:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732022",
- "username": "k33r33r",
- "fullName": "k33r33r",
- "avatarUrl": "https://www.gravatar.com/avatar/2642170c278268e6070c7e21bec2f3d2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 17:38:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732192",
- "username": "sajadsm1979",
- "fullName": "Sajad Saraf-Moghadam (sajadsm1979)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732192/medium/bb9cb9241c6d42b09206ec449534d22f.jpeg",
- "joined": "2021-04-29 22:28:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732326",
- "username": "yoav.shacham",
- "fullName": "יואב שחם (yoav.shacham)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732326/medium/66ae20d2b4f80439a484c8583c04579a.jpeg",
- "joined": "2021-04-30 01:42:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733556",
- "username": "chernymamba",
- "fullName": "chernymamba",
- "avatarUrl": "https://www.gravatar.com/avatar/ac1de2ebcc370eaac642897a460d901e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 20:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732424",
- "username": "WUBAOYU",
- "fullName": "WUBAOYU",
- "avatarUrl": "https://www.gravatar.com/avatar/46770842d09b2550627b9248c530fdf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 03:38:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732454",
- "username": "Eliseowzy",
- "fullName": "WangZY (Eliseowzy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732454/medium/02ecbccec638f087235f25edb54b61e4.png",
- "joined": "2021-04-30 04:17:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732520",
- "username": "matteo.boffo",
- "fullName": "Matteo Boffo (matteo.boffo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732520/medium/5c3707bf4dd91f58d154eae8cab347dd.png",
- "joined": "2021-04-30 05:32:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733026",
- "username": "iborba",
- "fullName": "Israel Machado de Borba (iborba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733026/medium/ffb6aa67fea863e4898aa8a6e5c69e87.jpeg",
- "joined": "2021-04-30 10:52:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733070",
- "username": "loopersosa",
- "fullName": "loopersosa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg",
- "joined": "2021-04-30 11:10:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733134",
- "username": "5rovic",
- "fullName": "5rovic",
- "avatarUrl": "https://www.gravatar.com/avatar/f861c4c39057970932d63c3e9759ddd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 11:54:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733302",
- "username": "mandagala",
- "fullName": "mandagala",
- "avatarUrl": "https://www.gravatar.com/avatar/efc73254f033c8fbd2a69839cbd28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 14:09:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733356",
- "username": "isadorasst",
- "fullName": "Isadora Tavares (isadorasst)",
- "avatarUrl": "https://www.gravatar.com/avatar/6a01ad71354d5af2ca10746a52f835ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 16:06:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733382",
- "username": "volkan2",
- "fullName": "volkan2",
- "avatarUrl": "https://www.gravatar.com/avatar/577aace7bd128ec8342b6c47c401e604?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 16:22:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733500",
- "username": "Ehsan1985",
- "fullName": "Ehsan1985",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733500/medium/7ee27652961f1750b613dae1397202b1.jpg",
- "joined": "2021-04-30 19:11:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733510",
- "username": "Tessoroma",
- "fullName": "Tessoroma",
- "avatarUrl": "https://www.gravatar.com/avatar/3bb8ef05e13c17a8318ef6ab154fa1b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 19:26:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736338",
- "username": "Jennyantonon",
- "fullName": "Jennyantonon",
- "avatarUrl": "https://www.gravatar.com/avatar/9354ab13ddd3a3fef260c70941fe5529?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 08:23:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736586",
- "username": "nixonogoi",
- "fullName": "Nixon W. Ogoi (nixonogoi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736586/medium/ec41b3ccb42bed3514461d6998cf6e18.png",
- "joined": "2021-05-03 12:17:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740952",
- "username": "Copime",
- "fullName": "Cony Ravn (Copime)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740952/medium/99db2583b6433ea4eddf19060c4559f8.jpeg",
- "joined": "2021-05-06 13:42:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739682",
- "username": "mary.kuzmenko",
- "fullName": "Maryna K. (mary.kuzmenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739682/medium/599afacddc29bf1019c47919568f8b27.jpg",
- "joined": "2021-05-05 16:38:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738726",
- "username": "Chias0",
- "fullName": "Chias0",
- "avatarUrl": "https://www.gravatar.com/avatar/f3512c352a022105f9094848fcbf8e70?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 02:57:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738796",
- "username": "fuweineng",
- "fullName": "V Fu (fuweineng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738796/medium/20a0e28d6dd706e253393cf8940af9e5.png",
- "joined": "2021-05-05 03:58:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738918",
- "username": "tlumaczenia.kijowski",
- "fullName": "Michał Kijowski (tlumaczenia.kijowski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738918/medium/f23bbb027ce85512c533103a19cf0608.png",
- "joined": "2021-05-05 05:38:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739030",
- "username": "13770002197",
- "fullName": "13770002197",
- "avatarUrl": "https://www.gravatar.com/avatar/668d1387da6eefabf38c7f28498516f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 06:45:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739134",
- "username": "rao_bayern",
- "fullName": "rao_bayern",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739134/medium/99aaf39da3c911445771db13a153f6ff.jpg",
- "joined": "2021-05-05 08:15:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739278",
- "username": "ram.vivek.d",
- "fullName": "Ram Vivek (ram.vivek.d)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739278/medium/4cf1e434cba4c773d0727df670681890.jpeg",
- "joined": "2021-05-05 10:14:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739298",
- "username": "nirasdib",
- "fullName": "nirasdib",
- "avatarUrl": "https://www.gravatar.com/avatar/02234bf5e832a5ad7a0dbc0013abec46?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 10:39:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739390",
- "username": "extyy",
- "fullName": "ext (extyy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14739390/medium/96eed724023903f33a485e5a76b77ca1.png",
- "joined": "2021-05-05 12:10:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739560",
- "username": "Keyjey",
- "fullName": "Keyjey",
- "avatarUrl": "https://www.gravatar.com/avatar/cfa407da67d423c769525a76f01c2ef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 14:43:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739664",
- "username": "Sebasti",
- "fullName": "Sebasti",
- "avatarUrl": "https://www.gravatar.com/avatar/5a20bc3dd6c3feedfe8615a3ad69d065?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 16:22:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739754",
- "username": "Marialba",
- "fullName": "Marialba",
- "avatarUrl": "https://www.gravatar.com/avatar/4204cf102f81ee527db45dfbad016897?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 17:47:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738498",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/87a42c07ab562c259ab1750e1de1f063?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 21:23:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14739786",
- "username": "mk.marcus.aurelius",
- "fullName": "mk.marcus.aurelius",
- "avatarUrl": "https://www.gravatar.com/avatar/1b914fae12fe32fd81ac108fa62b5d3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 18:36:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14821110",
- "username": "behzad6533999",
- "fullName": "behzad mehdizadeh (behzad6533999)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821110/medium/88b7c53f76930544c2c57861e65dab83.png",
- "joined": "2021-06-30 01:56:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740018",
- "username": "Punsk",
- "fullName": "Punsk",
- "avatarUrl": "https://www.gravatar.com/avatar/843642a4fa794da2be9a0e93bc6200ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-05 23:33:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740026",
- "username": "nikunjsixteen",
- "fullName": "Nikunj Prajapati (nikunjsixteen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740026/medium/0272b374779158ad11c0b85811365104.png",
- "joined": "2021-05-05 23:37:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740064",
- "username": "jesusmurga80",
- "fullName": "Jesús Murguia (jesusmurga80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740064/medium/d8cdf73705d2954f808441733cab0d21.jpeg",
- "joined": "2021-05-06 00:32:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740274",
- "username": "yorkzhong",
- "fullName": "York Zhong (yorkzhong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740274/medium/5c15a5af5447fd487b5408236ec883f2.jpeg",
- "joined": "2021-05-06 04:09:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740510",
- "username": "firatcelikj",
- "fullName": "firatcelikj",
- "avatarUrl": "https://www.gravatar.com/avatar/606799cd05fa39f95a3aa5d559390f8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 07:52:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740652",
- "username": "Luckyboys",
- "fullName": "Luckyboys",
- "avatarUrl": "https://www.gravatar.com/avatar/1f5da764203f7771d56caca50c2f5b5c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 09:42:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740728",
- "username": "ALixx12",
- "fullName": "ALixx12",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740728/medium/e68abe778c3d7be95531e372a30169b1.jpeg",
- "joined": "2021-05-06 10:48:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740768",
- "username": "jordanxp",
- "fullName": "Bitcoinjs (jordanxp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14740768/medium/0f73e7f6699ec62626abaca438ebcb18.png",
- "joined": "2021-05-06 10:57:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14740910",
- "username": "rahmadmaulidan",
- "fullName": "rahmad maulidan (rahmadmaulidan)",
- "avatarUrl": "https://www.gravatar.com/avatar/2d343e863d0ada74fa776c135338a660?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-06 13:00:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738520",
- "username": "joselopino",
- "fullName": "José Pino (joselopino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738520/medium/7de7ed844d491081436c60370bfce573.png",
- "joined": "2021-05-04 21:55:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738426",
- "username": "lihaobhsfer",
- "fullName": "Hao Li (lihaobhsfer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738426/medium/8994ae5e1631a3f0717e38e266d353a1.png",
- "joined": "2021-05-04 19:46:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736706",
- "username": "plutarkh",
- "fullName": "plutarkh",
- "avatarUrl": "https://www.gravatar.com/avatar/74d14126cda3b37c49581e426c5cb356?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 14:02:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737524",
- "username": "Rasshepkin",
- "fullName": "Rasshepkin",
- "avatarUrl": "https://www.gravatar.com/avatar/ce43ec774ac109964b50f2124b80aab0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 06:19:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736878",
- "username": "Arash21",
- "fullName": "ChetMokh (Arash21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736878/medium/fd05611e841717b68d7c494b58eeb00a.png",
- "joined": "2021-05-03 16:50:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736936",
- "username": "Nagihan",
- "fullName": "Nagihan Erbaş (Nagihan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736936/medium/da62b14c0eb800dba5863fc2834f35f7.jpeg",
- "joined": "2021-05-03 17:39:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737034",
- "username": "Hyeo_n",
- "fullName": "Hyeo_n",
- "avatarUrl": "https://www.gravatar.com/avatar/6f7556096b5c4db5979cd960daa73107?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 19:54:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737126",
- "username": "KiBeRuS",
- "fullName": "KiBeRuS",
- "avatarUrl": "https://www.gravatar.com/avatar/af54e3eaa4b0748ffe96e109407fc501?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 21:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737170",
- "username": "pedr0.1",
- "fullName": "pedr0.1",
- "avatarUrl": "https://www.gravatar.com/avatar/75276e63cfd3d2c57437560609a8bd28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 23:08:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737234",
- "username": "yuichiroaokidoctorqube",
- "fullName": "Masako H (yuichiroaokidoctorqube)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737234/medium/b061a4e877a4876137ed20ef7d18d172.png",
- "joined": "2021-05-04 01:02:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737304",
- "username": "tommrovi",
- "fullName": "tommr (tommrovi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737304/medium/7c139dcf13435f5400716746d18acc51.jpeg",
- "joined": "2021-05-04 02:46:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737354",
- "username": "mopheus",
- "fullName": "mopheus",
- "avatarUrl": "https://www.gravatar.com/avatar/795bcc36dfa80bc3f1412f62fdce30a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 03:43:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737370",
- "username": "vitalik.mv.13cross",
- "fullName": "Vitto Gang (vitalik.mv.13cross)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737370/medium/48590bdefeea5905954dcf0793f12676.jpeg",
- "joined": "2021-05-04 03:54:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737456",
- "username": "mobin1398",
- "fullName": "Mobin (mobin1398)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737456/medium/076fa1a5de7808f091883768edc14981.jpeg",
- "joined": "2021-05-04 05:18:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737506",
- "username": "Fatorin",
- "fullName": "Fatorin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737506/medium/2d0f76b581d1fef9ebf6e3a26f0faee2.png",
- "joined": "2021-05-04 06:03:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737644",
- "username": "DylanCONIN",
- "fullName": "conin dylan (DylanCONIN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737644/medium/d981e7d9ae1b98b7e8a21245675fc0e0.jpg",
- "joined": "2021-05-04 07:58:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738314",
- "username": "srecko.ivetic",
- "fullName": "Srećko Ivetić (srecko.ivetic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738314/medium/d980606aa34d961b2ee524edf09502b8.jpeg",
- "joined": "2021-05-04 17:29:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737668",
- "username": "shexhx0906",
- "fullName": "知最 (shexhx0906)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737668/medium/b4101bd6f1d00337cb0d1ebf676e4323.jpeg",
- "joined": "2021-05-04 08:11:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737690",
- "username": "alireza8445",
- "fullName": "ali reza (alireza8445)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737690/medium/0b41ad06dec9747ab1b978e7432af22d.jpeg",
- "joined": "2021-05-04 08:38:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737778",
- "username": "darksrlacc",
- "fullName": "darksrlacc",
- "avatarUrl": "https://www.gravatar.com/avatar/8529b28c92caf5e2d19b644a091e8fce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 09:25:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737838",
- "username": "farukre",
- "fullName": "Faruk Urer (farukre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737838/medium/7121319a2b515e6170c50820f96538c9.png",
- "joined": "2021-05-04 10:28:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737902",
- "username": "ruthiel",
- "fullName": "Ruthiel Trevisan (ruthiel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737902/medium/e80d38870c2a31088c929bdee3c74491.jpeg",
- "joined": "2021-05-04 10:53:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737918",
- "username": "saeednajafi959",
- "fullName": "دنیای موازی (saeednajafi959)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737918/medium/c35be6100a6ddd43d7be39a9abb3ad8d.jpeg",
- "joined": "2021-05-04 11:18:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737978",
- "username": "ZeroSlayer",
- "fullName": "ZeroSlayer",
- "avatarUrl": "https://www.gravatar.com/avatar/380c49ddbb967b5cc345f3f544059f5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 11:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738064",
- "username": "msprinceana",
- "fullName": "Mihai Mihai (msprinceana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738064/medium/36ee3d9e8af2e019299e5513f0039c1e.jpeg",
- "joined": "2021-05-04 13:24:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738074",
- "username": "AleksRG",
- "fullName": "Aleksandar Georgiev (AleksRG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738074/medium/20137575cc3af9d5601ae8706e4d90f0.jpeg",
- "joined": "2021-05-05 04:00:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738168",
- "username": "KS.Park",
- "fullName": "Kyusuh Park (KS.Park)",
- "avatarUrl": "https://www.gravatar.com/avatar/36596a0ecfe66ec6e15351ecf01b3d78?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 15:19:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738174",
- "username": "viniciusfortuna",
- "fullName": "Vinicius Fortunato (viniciusfortuna)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738174/medium/a23ee260095a908ffd92c2aa8dd6d7e6.jpeg",
- "joined": "2021-05-04 15:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14820982",
- "username": "Mike.Liu",
- "fullName": "Mike Liu (Mike.Liu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14820982/medium/4c7f9919fa51976243a925ac91115022.jpeg",
- "joined": "2021-07-24 23:03:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853708",
- "username": "JoshuaDouglas",
- "fullName": "Joshua Douglas (JoshuaDouglas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853708/medium/e03f5506eb972011709a8245c9ca8a2c.png",
- "joined": "2021-08-13 10:50:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14821378",
- "username": "charan2929292003",
- "fullName": "Charan (charan2929292003)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821378/medium/9b52b0efa05bb35de0a6d2c15372fdb6.jpeg",
- "joined": "2021-06-30 06:09:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953253",
- "username": "biwenming7",
- "fullName": "毕文明 (biwenming7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953253/medium/8c44470b0c9c27bcbf8395dee10b20ff.png",
- "joined": "2021-10-07 04:00:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952091",
- "username": "Revenant69",
- "fullName": "Revenant69",
- "avatarUrl": "https://www.gravatar.com/avatar/de707d601950e39bdbb890b93877660d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 06:40:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952103",
- "username": "IrynaD7316",
- "fullName": "IrynaD7316",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952103/medium/7304221fbe61a6d26903db9846897b9b.jpg",
- "joined": "2021-10-17 10:49:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952215",
- "username": "faky0n",
- "fullName": "faky0n",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952215/medium/ad676f1d985c405e7a8648d9e1fff49f.jpg",
- "joined": "2021-10-06 08:37:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952299",
- "username": "casperbgd",
- "fullName": "Darko (casperbgd)",
- "avatarUrl": "https://www.gravatar.com/avatar/adffb958eb89911a20d0898bd87550eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 09:36:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952323",
- "username": "Yakimchukt",
- "fullName": "Kate Yakymchuk (Yakimchukt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952323/medium/c59a0a6e58dd69b71e545016ee487d22.jpeg",
- "joined": "2021-10-07 13:52:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952341",
- "username": "ChrisWells",
- "fullName": "ChrisWells",
- "avatarUrl": "https://www.gravatar.com/avatar/deb9483d1e8c6a319faf4ce6e874889a?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 10:03:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952461",
- "username": "lucaGazzola",
- "fullName": "Luca Gazzola (lucaGazzola)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952461/medium/d9411adee28972f04109cfa53618d2f9.jpeg",
- "joined": "2021-10-06 11:48:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952471",
- "username": "justatranslator",
- "fullName": "justatranslator",
- "avatarUrl": "https://www.gravatar.com/avatar/d6d45265f267f2a15b44a9034a2a1578?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 11:54:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952791",
- "username": "HADIDBESSH",
- "fullName": "HADIDBESSH",
- "avatarUrl": "https://www.gravatar.com/avatar/0801cb3d594f3963f46092bb8bbdaba2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 17:30:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14952901",
- "username": "hungchann",
- "fullName": "Hùng Phạm (hungchann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952901/medium/3b3728b72bc86770df44c9458d96f2cf.png",
- "joined": "2021-10-06 20:16:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953369",
- "username": "komaryulia12",
- "fullName": "Юлія Комар (komaryulia12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953369/medium/87458c08c17ee87bf7daa7f73e6d9945.jpeg",
- "joined": "2021-10-07 10:06:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951861",
- "username": "bardierangelina6",
- "fullName": "Angie Bardier (bardierangelina6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951861/medium/d5a9304f836af504ad35d48759c700ed.jpeg",
- "joined": "2021-10-06 03:23:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953407",
- "username": "shuric31",
- "fullName": "shuric31",
- "avatarUrl": "https://www.gravatar.com/avatar/dcb97972b62b20ca269f5ed21b9bb7d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 06:11:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 277
- },
- {
- "user": {
- "id": "14953599",
- "username": "shurik2186",
- "fullName": "Александр Денисенко (shurik2186)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953599/medium/a18f417d21a3e69e80bc7326877a9a27.png",
- "joined": "2021-10-07 08:59:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953707",
- "username": "dvd_okt84",
- "fullName": "dvd_okt84",
- "avatarUrl": "https://www.gravatar.com/avatar/578fe5735e253da43fbdae93ee91b146?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-07 10:18:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14953719",
- "username": "pimenteldesouza91",
- "fullName": "Império da Internet (pimenteldesouza91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953719/medium/ee64ac380b4078b3815791eb03cbf7ae.jpeg",
- "joined": "2021-10-07 10:33:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14954429",
- "username": "Manflack",
- "fullName": "Manflack",
- "avatarUrl": "https://www.gravatar.com/avatar/48baa6bfae573b123ad7090df79ea114?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 02:11:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 21,
- "negativeVotes": 0,
- "winning": 143
- },
- {
- "user": {
- "id": "14954589",
- "username": "Maexstallion",
- "fullName": "Maexstallion",
- "avatarUrl": "https://www.gravatar.com/avatar/65c0ee1626a3633d40b2f1fbc5698d96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 04:47:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14954749",
- "username": "drakebethea727",
- "fullName": "Drake Bethea (drakebethea727)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14954749/medium/4684b5ea0fc497dc8d916e9c4a072c9e.png",
- "joined": "2021-10-08 07:50:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955021",
- "username": "nurulayunikasra",
- "fullName": "Nurul Ayuni Kasra (nurulayunikasra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955021/medium/27403315b43bdeb02c23ac60235a8f74.png",
- "joined": "2021-10-11 22:51:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955083",
- "username": "0x",
- "fullName": "0x",
- "avatarUrl": "https://www.gravatar.com/avatar/103e771b57ead1687a85576f1d604d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 11:59:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955237",
- "username": "hvvctor",
- "fullName": "Victor Hugo Lopes (hvvctor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955237/medium/17461070a3490237f8008d5eec7672da.jpeg",
- "joined": "2021-10-08 14:37:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14952033",
- "username": "GalPe",
- "fullName": "G Koleva (GalPe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14952033/medium/b5cd61c1c84411584d7f95a0293006e4.jpeg",
- "joined": "2021-10-06 05:45:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14951487",
- "username": "mariuszpelka",
- "fullName": "Mariusz Pełka (mariuszpelka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951487/medium/4cb6c175fe74a75b8af3d7f92a8ccf4e.jpg",
- "joined": "2021-10-05 16:39:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955385",
- "username": "b3ancie",
- "fullName": "Kasprov Anton (b3ancie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955385/medium/29994aae921a03e714e23e8d9f42a322.png",
- "joined": "2021-10-08 18:04:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950903",
- "username": "Udete",
- "fullName": "Udete",
- "avatarUrl": "https://www.gravatar.com/avatar/a435f03885ccd6070df11ae043c3e6c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 08:17:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14950197",
- "username": "SlashHash",
- "fullName": "SlashHash",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950197/medium/20d99cde077abaee189a2dc7908d26f2.png",
- "joined": "2021-10-04 18:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950209",
- "username": "cesarsscorpion",
- "fullName": "cesar llano (cesarsscorpion)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950209/medium/d999b054672bbfb715f0c09166aa4887.png",
- "joined": "2021-10-04 18:45:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 17,
- "negativeVotes": 1,
- "winning": 192
- },
- {
- "user": {
- "id": "14950443",
- "username": "UX404",
- "fullName": "UX404",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950443/medium/06561e4c02ad1005099caaf66d873fd2.jpeg",
- "joined": "2021-10-05 00:48:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950571",
- "username": "hurricaneneo",
- "fullName": "hurricaneneo",
- "avatarUrl": "https://www.gravatar.com/avatar/f3de160707c989504abd9a67c89f5a83?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 03:47:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950579",
- "username": "r1ngetsu",
- "fullName": "r1ngetsu",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950579/medium/e82f10a8d70c5bac37522b8ff1100ab8.png",
- "joined": "2021-10-05 04:21:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950595",
- "username": "nicerca",
- "fullName": "nicerca",
- "avatarUrl": "https://www.gravatar.com/avatar/e9fa89ad02c6b6c2f73016f057e74a7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 04:00:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950645",
- "username": "Hermes_70",
- "fullName": "Hermes_70",
- "avatarUrl": "https://www.gravatar.com/avatar/ec259de5b99311f7d0a4f38f13b3b6b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 04:22:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950715",
- "username": "Zeldron",
- "fullName": "Zeldron",
- "avatarUrl": "https://www.gravatar.com/avatar/a04f05f2c43fecdb3f81fcf4b9bf629a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 05:22:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950765",
- "username": "m.kseniaaa",
- "fullName": "m.kseniaaa",
- "avatarUrl": "https://www.gravatar.com/avatar/1d2fbb8f812f2b8b0cace056370c5dc9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 04:56:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950847",
- "username": "sofiaobal",
- "fullName": "Cоня Обаль (sofiaobal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950847/medium/6be3834830841526542ebc644307b15a.jpeg",
- "joined": "2021-10-09 08:44:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950947",
- "username": "suslenskaya19",
- "fullName": "suslenskaya19",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950947/medium/fa36c8a3dfb13be9af009f92644e8cd9.jpeg",
- "joined": "2021-10-05 17:40:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951383",
- "username": "pieter-astra",
- "fullName": "pieter-astra",
- "avatarUrl": "https://www.gravatar.com/avatar/73945ec73cbd868260048cbaad582e71?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:49:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 55,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951039",
- "username": "nataliia.diakiv",
- "fullName": "nataliia.diakiv",
- "avatarUrl": "https://www.gravatar.com/avatar/815642073295ce00115a32e42bd49a3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 09:37:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951071",
- "username": "hezargan",
- "fullName": "hezargan",
- "avatarUrl": "https://www.gravatar.com/avatar/dd7075eb2ea850a3ea9916c79a05427a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 10:10:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951137",
- "username": "Lizka",
- "fullName": "Архипова Єлизавета Геннадіївна (Lizka)",
- "avatarUrl": "https://www.gravatar.com/avatar/a3687813b7e1cfa63982d38214ba0a74?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 13:25:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951147",
- "username": "ChristinaTomaschuk",
- "fullName": "Christina Tomaschuk (ChristinaTomaschuk)",
- "avatarUrl": "https://www.gravatar.com/avatar/266d65118bfebbf56dec2e3321f2c99b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 11:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951235",
- "username": "Ana_translator",
- "fullName": "Ana_translator",
- "avatarUrl": "https://www.gravatar.com/avatar/cd57a583744dfe7cb4b1cd19671c5b93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 13:36:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951241",
- "username": "WhoamIXOXO00",
- "fullName": "Renie Chung (WhoamIXOXO00)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951241/medium/764650e8547dad13f3e3a2c862c1d28a.png",
- "joined": "2021-10-05 12:27:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 16,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14951245",
- "username": "crxmchity",
- "fullName": "Mancy Shaw (crxmchity)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951245/medium/357d024bf016bfede765f646f7044c52.jpeg",
- "joined": "2021-10-05 12:29:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951249",
- "username": "Paul_Lelet",
- "fullName": "Pavlo Lelet (Paul_Lelet)",
- "avatarUrl": "https://www.gravatar.com/avatar/07aabb98c3af5848cad5d3b955c8bc04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 12:54:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951291",
- "username": "lutsakolha",
- "fullName": "lutsakolha",
- "avatarUrl": "https://www.gravatar.com/avatar/6d7701c5b56e9fe6a9dd3f0723e48a69?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 13:45:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14951357",
- "username": "AH1309",
- "fullName": "AH1309",
- "avatarUrl": "https://www.gravatar.com/avatar/156ac9572ac855bbe6d377cb2175d948?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:13:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14951371",
- "username": "Hosein396",
- "fullName": "Hosein Tayebi (Hosein396)",
- "avatarUrl": "https://www.gravatar.com/avatar/f41005e4e9ddd8dd69caab4670f5abd2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:34:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 156
- },
- {
- "user": {
- "id": "14955317",
- "username": "gillesduif",
- "fullName": "gillesduif",
- "avatarUrl": "https://www.gravatar.com/avatar/7355f5da07b450011f896bfb00989001?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-08 16:18:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14955921",
- "username": "valenti.g.kovalenko",
- "fullName": "Валентина Коваленко (valenti.g.kovalenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14955921/medium/b06f326d143a075371c080aafc8ac399.png",
- "joined": "2021-10-09 07:53:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950169",
- "username": "byblos94",
- "fullName": "Veljko Vranić (byblos94)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14950169/medium/addf5330271e69946f7833fe3144d01d.png",
- "joined": "2021-10-04 18:01:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959549",
- "username": "Tungls1234",
- "fullName": "Tungls1234",
- "avatarUrl": "https://www.gravatar.com/avatar/278ca3266151c5d0368895000deda4c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 06:18:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958973",
- "username": "cryptobull",
- "fullName": "Crypto Bull (cryptobull)",
- "avatarUrl": "https://www.gravatar.com/avatar/2b07e9d536f4e7644986d9dc17d31753?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 19:18:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958987",
- "username": "fernanmartine",
- "fullName": "fernanmartine",
- "avatarUrl": "https://www.gravatar.com/avatar/beaac6d6232afa53f07aafb28777367f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 20:00:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14959007",
- "username": "ahmedsayd",
- "fullName": "ahmedsayd",
- "avatarUrl": "https://www.gravatar.com/avatar/32bb75b10b057fef3b8d714c5257c4c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 19:56:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959105",
- "username": "emmtnnx",
- "fullName": "EMMTNNX (emmtnnx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959105/medium/e2785b9e5fd171ccf129563a19844fd9.jpeg",
- "joined": "2021-10-11 22:09:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14959159",
- "username": "chauhuyen",
- "fullName": "chauhuyen",
- "avatarUrl": "https://www.gravatar.com/avatar/03bed9fc17c3769ef5c134f387918edf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 23:21:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959167",
- "username": "jamiesheng",
- "fullName": "jamiesheng",
- "avatarUrl": "https://www.gravatar.com/avatar/1fdca71f9bba62eca9a6ab38ed87ac19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 23:28:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959201",
- "username": "palixir",
- "fullName": "palixir",
- "avatarUrl": "https://www.gravatar.com/avatar/29207b9535b54afc358e6ee984592428?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 00:15:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959209",
- "username": "keshavkumarsharma28",
- "fullName": "Keshav Sharma (keshavkumarsharma28)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959209/medium/18135cb3474f839d3f344ff0da84cc54.jpeg",
- "joined": "2021-10-12 00:23:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959307",
- "username": "wang-hang",
- "fullName": "wang-hang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959307/medium/ac6b8c7ea8627cb810fb32234586369f.jpeg",
- "joined": "2021-10-12 02:28:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959387",
- "username": "KilloWhite",
- "fullName": "KilloWhite",
- "avatarUrl": "https://www.gravatar.com/avatar/e8f2418e216e5a1f81edfdbe073d83de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 03:45:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959769",
- "username": "pgsrcorreia",
- "fullName": "Pedro Correia (pgsrcorreia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959769/medium/4f0f9e379aa753defec44c63ca34e553.png",
- "joined": "2021-10-12 09:37:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958823",
- "username": "Ugneo",
- "fullName": "Ugneo",
- "avatarUrl": "https://www.gravatar.com/avatar/9c2073afe05dfa6e50845302373be26b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 08:47:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14959859",
- "username": "innobbv",
- "fullName": "InYeob Kim (innobbv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14959859/medium/43a5020712c1b5722adb72244461d813.png",
- "joined": "2021-10-12 10:32:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960053",
- "username": "Mahesar",
- "fullName": "Mahesar",
- "avatarUrl": "https://www.gravatar.com/avatar/1fbe4b214f0e543eaa0df60332c31636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 13:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960079",
- "username": "iriosromani",
- "fullName": "Israel Rios (iriosromani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960079/medium/88069bbcacd3997ad1559f51fb38e564.jpeg",
- "joined": "2021-10-12 13:43:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960185",
- "username": "Dastronom",
- "fullName": "Dastronom",
- "avatarUrl": "https://www.gravatar.com/avatar/5a40afc9325031176e9144bf2a958fc1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 15:37:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960393",
- "username": "2paac9",
- "fullName": "2paac9",
- "avatarUrl": "https://www.gravatar.com/avatar/4d9b055e97b123b7ef8d49f8e660bb9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-12 19:56:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960405",
- "username": "youssef_garib",
- "fullName": "Rexson Rexson (youssef_garib)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960405/medium/3eddc7573634d80c4f9e5414242d21df.jpeg",
- "joined": "2021-10-12 20:25:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14960713",
- "username": "msfusionest",
- "fullName": "BENLICE Emel (msfusionest)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14960713/medium/a2568d9e7b70d7972a6e68de4e79ba71.jpeg",
- "joined": "2021-10-13 03:24:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961175",
- "username": "m3tapha",
- "fullName": "m3tapha",
- "avatarUrl": "https://www.gravatar.com/avatar/d3d11c09d9f310b39a338c6da7163c53?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 10:27:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14961387",
- "username": "ssebastian210",
- "fullName": "Sebastian Simarro (ssebastian210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14961387/medium/30239862b4b97ec866dd3abd95c78c84.jpeg",
- "joined": "2021-10-13 13:55:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961487",
- "username": "juancruz.ar",
- "fullName": "juancruz.ar",
- "avatarUrl": "https://www.gravatar.com/avatar/61863283feb1092d4658810e0354abb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 15:38:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 37
- },
- {
- "user": {
- "id": "14961515",
- "username": "Meeo35",
- "fullName": "Meeo35",
- "avatarUrl": "https://www.gravatar.com/avatar/4a0b210e6e4b454e442ca8598d904cbe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-13 18:47:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958943",
- "username": "asadim40",
- "fullName": "mohamad asadi (asadim40)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958943/medium/c61ff881e869c5fd253fb9de972bac09.jpeg",
- "joined": "2021-10-11 18:42:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958819",
- "username": "C91F37",
- "fullName": "Edmund Sze (C91F37)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958819/medium/969ab87657bee77450e67bd3a62c709e.png",
- "joined": "2021-10-11 15:42:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956109",
- "username": "Alexanderymanuel",
- "fullName": "Alexander Arberto Tovar (Alexanderymanuel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956109/medium/ed90357fcf33cbe0b17b411c5b644464.jpeg",
- "joined": "2021-10-09 10:59:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957025",
- "username": "denisplaku05",
- "fullName": "Denis Plaku (denisplaku05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957025/medium/155eeb9074ad5cc6f16d1c281f019944.png",
- "joined": "2021-10-10 08:07:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956243",
- "username": "Troyracer",
- "fullName": "Troyracer",
- "avatarUrl": "https://www.gravatar.com/avatar/f4543ec9465b3f1d1077e8cceb65a933?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-09 13:06:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 350
- },
- {
- "user": {
- "id": "14956337",
- "username": "lidianycs",
- "fullName": "lidianycs",
- "avatarUrl": "https://www.gravatar.com/avatar/365d64ac7604ada9ad69e96374a5d6a2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-09 14:45:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 33,
- "negativeVotes": 0,
- "winning": 178
- },
- {
- "user": {
- "id": "14956411",
- "username": "GGCode",
- "fullName": "GGCode",
- "avatarUrl": "https://www.gravatar.com/avatar/d26da69369fdeb6b8e7abd1c3ae54672?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-09 16:17:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956479",
- "username": "akais315",
- "fullName": "Anthony Kaiser (akais315)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956479/medium/342153a6e0540337ea2efae82b1b98d4.png",
- "joined": "2021-10-09 18:02:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956705",
- "username": "Nabil111",
- "fullName": "Nabil111",
- "avatarUrl": "https://www.gravatar.com/avatar/22fe6e63789fdf8848f0d0c4a2957612?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-10 00:18:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956717",
- "username": "cryptoreumd",
- "fullName": "cryptoreumd",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956717/medium/d3a0d79f0b5d21e8ff63aca6b0d8a048.jpg",
- "joined": "2021-10-10 00:28:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956823",
- "username": "Usuao_Silver",
- "fullName": "Usuao_Silver",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956823/medium/f56b919f0846170cf8731272b8726bd7.jpeg",
- "joined": "2021-10-10 03:15:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956849",
- "username": "steinbockj.ulian",
- "fullName": "Julian Steinbock (steinbockj.ulian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956849/medium/57fef07c08276b5cfdadb8590e85a91a.jpeg",
- "joined": "2021-10-10 03:47:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956879",
- "username": "ztibi",
- "fullName": "ztibi",
- "avatarUrl": "https://www.gravatar.com/avatar/6c447b75f354c7bdf296e135abf1928d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-10 04:12:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14956887",
- "username": "Ladenfine1",
- "fullName": "Ladenfine1",
- "avatarUrl": "https://www.gravatar.com/avatar/7c4c0e8bdf0a0c5af2880101b6dcfd15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-10 04:16:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957505",
- "username": "joaopedroesteves",
- "fullName": "João Esteves de Carvalho (joaopedroesteves)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957505/medium/759c1369327c89f68c02c2e9e0c1f2a8.jpeg",
- "joined": "2021-10-10 16:36:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 60
- },
- {
- "user": {
- "id": "14958779",
- "username": "kevin.moreau655",
- "fullName": "Kévin Moreau (kevin.moreau655)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958779/medium/3f5b3d32118d59bf14db8053362e627a.png",
- "joined": "2021-10-14 07:26:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957585",
- "username": "Sebga",
- "fullName": "Sebga_ (Sebga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957585/medium/8de635b9239d5347bca90a134d8d178f.jpg",
- "joined": "2021-10-10 18:41:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957815",
- "username": "NFTurk",
- "fullName": "NFTurk",
- "avatarUrl": "https://www.gravatar.com/avatar/d68b33ed733a91743562892b3d3bf7a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 00:57:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14957855",
- "username": "abdurrehmanrehan",
- "fullName": "abdurrehmanrehan",
- "avatarUrl": "https://www.gravatar.com/avatar/bbd9322d78e5bda40b122e5c75bcfba9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 01:50:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958165",
- "username": "lewisaung",
- "fullName": "lewisaung",
- "avatarUrl": "https://www.gravatar.com/avatar/c72fa80d3f1201710602dbb03c24872f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 06:36:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958547",
- "username": "busnaida",
- "fullName": "busnaida",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958547/medium/7dcf670595d97f856502789faf5cf351.jpg",
- "joined": "2021-10-11 11:44:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958557",
- "username": "eme42",
- "fullName": "eme42",
- "avatarUrl": "https://www.gravatar.com/avatar/e099c3cca79a8e0fa3375fa18bd7e0bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 11:55:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958563",
- "username": "climu",
- "fullName": "climu",
- "avatarUrl": "https://www.gravatar.com/avatar/ffde06457147f043f212b5575759ad5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 11:57:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958649",
- "username": "Minnielim",
- "fullName": "Minnielim",
- "avatarUrl": "https://www.gravatar.com/avatar/9c0126dcb0f37fedfb7ca78686802ac4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-11 13:19:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958659",
- "username": "rhswe",
- "fullName": "rhswe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958659/medium/8c1b0ec38bcb7f3fa9041e918949c5c8.jpg",
- "joined": "2021-10-11 13:35:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958739",
- "username": "divinxu",
- "fullName": "Siri Ɛ: (divinxu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958739/medium/213d691dc3b4936181aa01b16f08abee.png",
- "joined": "2021-10-11 14:29:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14958773",
- "username": "drlachyman",
- "fullName": "Lukáš Lachkovič (drlachyman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958773/medium/1dbdc2e1f1d374a0308a505f42603e66.png",
- "joined": "2021-10-11 15:07:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14950177",
- "username": "tapioka84",
- "fullName": "tapioka84",
- "avatarUrl": "https://www.gravatar.com/avatar/cbf38ef6587462d281c1e90c068b9cde?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 18:14:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949927",
- "username": "ann_plkh09",
- "fullName": "Anna Paliokha (ann_plkh09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949927/medium/6763baa1c9a6e9b197303ab3672469ab.jpg",
- "joined": "2021-10-05 09:04:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962531",
- "username": "danteivanelizondo",
- "fullName": "Dante Elizondo (danteivanelizondo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962531/medium/7a7bc42a3b25637aa087669e3e151de3.jpeg",
- "joined": "2021-10-14 12:02:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 46
- },
- {
- "user": {
- "id": "14935073",
- "username": "NerioDaniel",
- "fullName": "NerioDaniel",
- "avatarUrl": "https://www.gravatar.com/avatar/10f959538c7cfee538b84efd2406ea9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 14:19:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932469",
- "username": "LadyLurvecia",
- "fullName": "LadyLurvecia",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932469/medium/15d23e44ef625fd6ceab89b52fdda53b.JPG",
- "joined": "2021-09-21 17:48:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932861",
- "username": "kristinebui299",
- "fullName": "Kristine B (kristinebui299)",
- "avatarUrl": "https://www.gravatar.com/avatar/7ac4eab3f69b49953eaa21b3e968a496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 02:33:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933019",
- "username": "Nodral",
- "fullName": "Nodral",
- "avatarUrl": "https://www.gravatar.com/avatar/c49a614198d66adaecf930dea95b8419?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 05:11:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933025",
- "username": "EdgyLsx",
- "fullName": "EdgyLsx",
- "avatarUrl": "https://www.gravatar.com/avatar/58e0d3838f341eb1089af10f1da47f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 05:12:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933273",
- "username": "MelisaSonmez",
- "fullName": "MelisaSonmez",
- "avatarUrl": "https://www.gravatar.com/avatar/57753792ad4c1879603e1c48ee889e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 09:04:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933753",
- "username": "15manson84",
- "fullName": "Александр Никитин (15manson84)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14933753/medium/7ec26e18c0da6e1027f4201c28938a7f.png",
- "joined": "2021-09-22 16:21:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934237",
- "username": "sajjadishaqi",
- "fullName": "Sajjad Is-Haqi Nasrabadi (sajjadishaqi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934237/medium/e459d70115f623d3e60249597fcb6a74.jpeg",
- "joined": "2021-09-23 03:04:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934499",
- "username": "c4r3fyl",
- "fullName": "Valentino Gechev (c4r3fyl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934499/medium/2da67358d1967d920a109354e6dade53.png",
- "joined": "2021-09-23 07:08:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934855",
- "username": "andrea.barp",
- "fullName": "Andrea Barp (andrea.barp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934855/medium/05fb687333d6e0795b70fd3b696451a3.jpeg",
- "joined": "2021-09-23 11:42:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935043",
- "username": "Cryptotranslator34",
- "fullName": "Mauricio Streicher (Cryptotranslator34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935043/medium/7a0c6527dd41d0221a3ef016afac09df.jpg",
- "joined": "2021-09-23 13:53:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935087",
- "username": "Martinpons",
- "fullName": "Martinpons",
- "avatarUrl": "https://www.gravatar.com/avatar/469c9345494c800a82354e926ab96d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 14:30:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931899",
- "username": "SestoChakra",
- "fullName": "SestoChakra",
- "avatarUrl": "https://www.gravatar.com/avatar/c5aaebd05ff86356f859cf6a9524e8a9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-21 09:04:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935191",
- "username": "omrfrktarhn",
- "fullName": "omrfrktarhn",
- "avatarUrl": "https://www.gravatar.com/avatar/73385c684d92f5d0c558879b1281cb5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 16:35:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935269",
- "username": "medsemo334",
- "fullName": "Semo Med (medsemo334)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935269/medium/a19bc3c2b95ffb85db430baeba1e249d.png",
- "joined": "2021-09-23 18:02:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935615",
- "username": "bratzconstantino",
- "fullName": "Spoiled Bratz (bratzconstantino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935615/medium/f41b61d9982f8da04237aae32a48a9ab.jpeg",
- "joined": "2021-09-24 01:43:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935715",
- "username": "Dimi33",
- "fullName": "Dimi33",
- "avatarUrl": "https://www.gravatar.com/avatar/c2bc2446989c7dde0242251c66d023f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-24 03:21:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935879",
- "username": "Romzango",
- "fullName": "Romzango",
- "avatarUrl": "https://www.gravatar.com/avatar/f72025d25aacf2d1787ce88915560562?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-24 06:11:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936157",
- "username": "daGscheid",
- "fullName": "daGscheid",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936157/medium/b50f1fb711bb518fda6892de4a667a4c.jpeg",
- "joined": "2021-09-24 08:53:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936915",
- "username": "seilkhankulzhanov",
- "fullName": "Seilkhan Kulzhanov (seilkhankulzhanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936915/medium/be75dda81c208776fb04ab0e365f3e49.png",
- "joined": "2021-09-24 22:44:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936979",
- "username": "ultranod",
- "fullName": "ultranod",
- "avatarUrl": "https://www.gravatar.com/avatar/9a6eff6771b117d40d9ead9c2329295f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-25 00:52:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937089",
- "username": "1085970422",
- "fullName": "吴佩孚 (1085970422)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937089/medium/b1bf3f12b933a8fc12ca3084657e51a8.png",
- "joined": "2021-09-25 03:42:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937349",
- "username": "doritbenvakil",
- "fullName": "Dorit Ben Vakil (doritbenvakil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937349/medium/d94e0fb70b144ad3e88293dd5538a58e.jpeg",
- "joined": "2021-09-25 08:40:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932377",
- "username": "nasr96153",
- "fullName": "نصرالدين سيد (nasr96153)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932377/medium/e397d60e78c6c2e335654c3a9ae05851.jpeg",
- "joined": "2021-09-21 16:13:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931651",
- "username": "sinsinpurin",
- "fullName": "masaki obayashi (sinsinpurin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931651/medium/3e26483770249bd37034cfefe44469f0.jpeg",
- "joined": "2021-09-21 05:34:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937513",
- "username": "devudilip",
- "fullName": "devu dilip (devudilip)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937513/medium/11d939bf3bb9ba2df698db8ac77e020e.jpeg",
- "joined": "2021-09-25 11:14:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928453",
- "username": "devinderkumar321123",
- "fullName": "Well Done (devinderkumar321123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928453/medium/3ff4bb393f438e00e776eb20608acbc8.jpeg",
- "joined": "2021-09-18 16:20:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922727",
- "username": "mookmook",
- "fullName": "Pattaraporn Tripiyaratana (mookmook)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922727/medium/bb4344fb73b75a86661d7acaf9f8d1f3.jpeg",
- "joined": "2021-09-14 16:38:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14923593",
- "username": "simone.pana.2",
- "fullName": "Simone Panattoni (simone.pana.2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14923593/medium/d109453b70ed12f8e71960dd652efd17.jpeg",
- "joined": "2021-09-15 09:27:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14924253",
- "username": "Ernestiko",
- "fullName": "Ernesto Henriquez (Ernestiko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14924253/medium/55a18124dd6da8e74a464035a724349a.jpeg",
- "joined": "2021-09-15 18:44:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14925495",
- "username": "yuttapolp",
- "fullName": "Man Yuttapol Pimpison (yuttapolp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14925495/medium/d503eb59e0c32db1225720e570a68719.jpeg",
- "joined": "2021-09-16 13:48:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926377",
- "username": "ShubhamKukreti",
- "fullName": "Shubham Kukreti (ShubhamKukreti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926377/medium/c23d2146ea906d371c9ea8af48d3832f.jpeg",
- "joined": "2021-09-17 06:15:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926537",
- "username": "Ogion",
- "fullName": "Ogion",
- "avatarUrl": "https://www.gravatar.com/avatar/6a66cc7158847741cd67da67079b6619?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-17 08:42:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926951",
- "username": "werew985",
- "fullName": "Were Were (werew985)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926951/medium/60813b9a95c00bf8943ff51d75bf26ec.png",
- "joined": "2021-09-17 14:04:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14927081",
- "username": "rdelgadohernandez98",
- "fullName": "romer angel delgado hernandez (rdelgadohernandez98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927081/medium/177bbdf6f048920520fe9168499a0340.jpeg",
- "joined": "2021-09-17 16:06:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14927445",
- "username": "kazutaka3226",
- "fullName": "Kaz Tak (kazutaka3226)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927445/medium/0a9fc623888037236c754e61afcb1ea7.png",
- "joined": "2021-09-18 00:00:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928023",
- "username": "buja",
- "fullName": "buja",
- "avatarUrl": "https://www.gravatar.com/avatar/e4617896a67a983f82bd964f44fad545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-18 10:03:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928457",
- "username": "korobchuk",
- "fullName": "Павло Коробчук (korobchuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928457/medium/df246d6918e815aef62684c5aab7fcc3.jpeg",
- "joined": "2021-09-18 16:24:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931377",
- "username": "gansfoer",
- "fullName": "Илья Панфилов (gansfoer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931377/medium/6e09fc77f43e6939d342b7aaa7daf622.png",
- "joined": "2021-09-21 23:36:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928669",
- "username": "knowwell",
- "fullName": "knowwell",
- "avatarUrl": "https://www.gravatar.com/avatar/f84d23e5e00cfce6b33405177e3a76f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-18 22:10:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929095",
- "username": "dangchi",
- "fullName": "dangchi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929095/medium/a42410898b37c709ef4d76967a9b97a9.jpg",
- "joined": "2021-09-19 07:35:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929161",
- "username": "nonglekkaewkang60",
- "fullName": "Nonglek Keawkang (nonglekkaewkang60)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929161/medium/94141a2c17bad7643d8b54e7d7137224.jpeg",
- "joined": "2021-09-19 09:22:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929235",
- "username": "Rikr16",
- "fullName": "Hozan Al Hazin (Rikr16)",
- "avatarUrl": "https://www.gravatar.com/avatar/6c4f698f7d586c079a9e31fb6f883d4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 09:55:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929425",
- "username": "Azuregold242",
- "fullName": "Azuregold242",
- "avatarUrl": "https://www.gravatar.com/avatar/0cd25f4f98cb1f276feca5301d6e76f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 12:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929487",
- "username": "gutianyichn",
- "fullName": "gutianyichn",
- "avatarUrl": "https://www.gravatar.com/avatar/6aa15b2b5248c923eac9ccf554c8547a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 13:07:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929863",
- "username": "LizGarcia",
- "fullName": "LizGarcia",
- "avatarUrl": "https://www.gravatar.com/avatar/115c037791bf7a44dc52221a59bf3aff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 20:43:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14930117",
- "username": "SemioDan",
- "fullName": "SemioDan",
- "avatarUrl": "https://www.gravatar.com/avatar/791fe9d92cc842432eb36e7312ab1245?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-20 03:14:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14930681",
- "username": "margikbaxi",
- "fullName": "Margik Baxi (margikbaxi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14930681/medium/578857ac3d0937c31b79d62a6188ceaf.jpeg",
- "joined": "2021-09-20 11:29:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14930727",
- "username": "ms_lechka",
- "fullName": "Olia Tkachuk (ms_lechka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14930727/medium/41a455be95082d8b26b9eb5065dd6aac.jpg",
- "joined": "2021-10-18 04:49:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931363",
- "username": "laiyenju",
- "fullName": "Lai Yen Ju (laiyenju)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931363/medium/2cc7c7128f51729fd201b84aa4f376f2.jpeg",
- "joined": "2021-09-20 23:41:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937371",
- "username": "mainulkhaled",
- "fullName": "mainulkhaled",
- "avatarUrl": "https://www.gravatar.com/avatar/71c448af11b12c4951d886ee6de6b596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-26 12:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937603",
- "username": "yangbin942566",
- "fullName": "yangbin942566",
- "avatarUrl": "https://www.gravatar.com/avatar/d061374d482b9a04deb424a8bfe3b1c0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-25 13:12:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949877",
- "username": "danangtomo",
- "fullName": "Danang Estutomoaji (danangtomo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949877/medium/7cd6fbee384ca4fceaaf30e5cd5bb210.png",
- "joined": "2021-10-04 13:00:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949241",
- "username": "victorialiashuk",
- "fullName": "Вікторія Ляшук (victorialiashuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949241/medium/bc0802deb7a44714c47c0fedfc4d9086.png",
- "joined": "2021-10-04 11:46:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947743",
- "username": "notcoolnickname",
- "fullName": "notcoolnickname",
- "avatarUrl": "https://www.gravatar.com/avatar/2d4d20425b5dfb7deb4b4956c7e5e382?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 19:27:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948181",
- "username": "sandyfffeng",
- "fullName": "Jiahui Feng (sandyfffeng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948181/medium/8137c840c395b47f5fcb46cfd3cce1db.JPG",
- "joined": "2021-10-03 05:54:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948353",
- "username": "cevher06",
- "fullName": "cevher06",
- "avatarUrl": "https://www.gravatar.com/avatar/588cc5e0e3471fe53b640f9d975c51cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-03 09:31:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948515",
- "username": "Datura",
- "fullName": "Datura",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948515/medium/679caf1735ce950a6c77906653a03d97.jpg",
- "joined": "2021-11-03 00:26:45"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948719",
- "username": "zhao16813888",
- "fullName": "jun zhao (zhao16813888)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948719/medium/65b36e24dbfcf19c1bc04ba16d6f4151.png",
- "joined": "2021-10-03 16:02:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948811",
- "username": "cema",
- "fullName": "Iracema Brochado (cema)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948811/medium/2cb46b98e778477d6926f91e1e2f21d9.jpeg",
- "joined": "2021-10-03 18:15:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14948857",
- "username": "ultralord97",
- "fullName": "ultralord97",
- "avatarUrl": "https://www.gravatar.com/avatar/0ba5ca3f7651df45d91f39bad69bd47a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-03 19:03:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949085",
- "username": "BhavinF",
- "fullName": "BhavinF",
- "avatarUrl": "https://www.gravatar.com/avatar/8104f96a5da684deed00abd499610e8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 01:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949095",
- "username": "goodhat",
- "fullName": "goodhat",
- "avatarUrl": "https://www.gravatar.com/avatar/cec995a4caf856ac5949ed264fc57029?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 01:30:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949231",
- "username": "khrystynaboitsun",
- "fullName": "khrystynaboitsun",
- "avatarUrl": "https://www.gravatar.com/avatar/3b995766e290dc6b35a2a18caa166394?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 13:20:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949283",
- "username": "Vikaa.kr",
- "fullName": "Vikaa.kr",
- "avatarUrl": "https://www.gravatar.com/avatar/743211e5328e2ba4d5c9fa7b7a2361eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 12:54:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947603",
- "username": "ralfy00",
- "fullName": "ralfy00",
- "avatarUrl": "https://www.gravatar.com/avatar/ba9ceea585557b3cbd8bda53d4733235?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 16:38:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949295",
- "username": "k0er",
- "fullName": "k0er",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949295/medium/70ff4652eae292556019faebcbd2988e.png",
- "joined": "2021-10-04 04:59:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949313",
- "username": "sofiacherkaska",
- "fullName": "Софія Черкаська (sofiacherkaska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949313/medium/ac181599260fbf268df6ce52dd8af8ab.jpg",
- "joined": "2021-10-05 14:57:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949359",
- "username": "anastasia.venhryn",
- "fullName": "Анастасія Венгрин (anastasia.venhryn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949359/medium/37d92ecbcb7a4b31c6fb6ced3b4c346b.jpeg",
- "joined": "2021-10-04 15:58:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949373",
- "username": "s_yuzva",
- "fullName": "Solomia Yuzva (s_yuzva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949373/medium/d4c3f633842279994b178a207831025d.jpg",
- "joined": "2021-10-05 09:40:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949549",
- "username": "SoniaKobryn_",
- "fullName": "SoniaKobryn_",
- "avatarUrl": "https://www.gravatar.com/avatar/d9e7edeec8255fe522c51d7b4778ce47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 13:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949555",
- "username": "yuliia_aminieva",
- "fullName": "Yuliia Aminieva (yuliia_aminieva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949555/medium/208c20c213ef41f03769a5be5fdc453c.jpg",
- "joined": "2021-10-05 02:41:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949577",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/3b6c9a3dcb49e884cafab9f550d2d0ef?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 06:40:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949581",
- "username": "lilianka.hutsulyak",
- "fullName": "Liliana Hutsulyak (lilianka.hutsulyak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949581/medium/0289a77513413548774e65d9fcb02b41.png",
- "joined": "2021-10-04 12:28:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949595",
- "username": "Olesya711",
- "fullName": "Olesya711",
- "avatarUrl": "https://www.gravatar.com/avatar/9d1ee480b2b9b88ef95902096e52ab02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-04 11:37:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949753",
- "username": "YuliiaPletenetska",
- "fullName": "YuliiaPletenetska",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949753/medium/8d95e7ca632d0227eefa906308e8b734.jpg",
- "joined": "2021-10-12 09:48:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14949839",
- "username": "giant_rubber_duck",
- "fullName": "GiantRubberDuck (giant_rubber_duck)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14949839/medium/c7b3e28de76d6913516f65b5fee33361.png",
- "joined": "2021-10-04 12:36:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947627",
- "username": "mrchopin",
- "fullName": "mrchopin",
- "avatarUrl": "https://www.gravatar.com/avatar/200e25db33a4d48ead32de8fe15ce9a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 16:55:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14947215",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/d14eb0d8654651a8823553657b6fb4e8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 09:59:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937971",
- "username": "Khaledfrd",
- "fullName": "Khaledfrd",
- "avatarUrl": "https://www.gravatar.com/avatar/ffdf0718e536dfdd4d01e3870045658b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-26 15:27:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942875",
- "username": "tikafblanc3",
- "fullName": "tikafblanc3",
- "avatarUrl": "https://www.gravatar.com/avatar/cad9494dda51d417d83cd7de1c7e427a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-29 05:19:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14939049",
- "username": "poolelifts5715",
- "fullName": "Randall Poole (poolelifts5715)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939049/medium/13143e20e988e4850fe7dcbe3caddf62.png",
- "joined": "2021-09-26 13:56:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14939093",
- "username": "v33nx",
- "fullName": "v33nx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939093/medium/7cc3d88ffc58a811f1e2e7768d759b17.png",
- "joined": "2021-09-26 14:45:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940215",
- "username": "Blaslaw",
- "fullName": "Blaslaw",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940215/medium/8287f3ca1e766a45b1e013f430de367f.png",
- "joined": "2021-09-27 10:06:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940227",
- "username": "nikniknikccc",
- "fullName": "nikniknikccc",
- "avatarUrl": "https://www.gravatar.com/avatar/762da2ece85130c561907eed7ca9b215?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-27 10:11:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940333",
- "username": "Angela_Borda",
- "fullName": "Angela_Borda",
- "avatarUrl": "https://www.gravatar.com/avatar/1bf93e45fbc3caf8e5f4be83fff266eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-27 11:11:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940739",
- "username": "badroseghir99",
- "fullName": "badro / zs (badroseghir99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940739/medium/5a02af588f2979c5231d2cec59f0a0bc.jpeg",
- "joined": "2021-09-27 16:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14941689",
- "username": "JossVog",
- "fullName": "José Bernal (JossVog)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14941689/medium/bda6c6857a8faad62b2e05e88afec386.png",
- "joined": "2021-09-28 08:53:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942147",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c93e712cbe2ebc1f11cb9b83aa50675a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-28 15:33:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942697",
- "username": "cclefjp",
- "fullName": "cclef (cclefjp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942697/medium/f0b6f7427184742914c4e061e485ecf0.jpeg",
- "joined": "2021-09-29 03:25:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14942827",
- "username": "zhujunchen2007",
- "fullName": "JC Z (zhujunchen2007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942827/medium/320ed27a0fe0d27777522d4009a74de8.png",
- "joined": "2021-09-29 04:40:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14943373",
- "username": "catnapper_mar",
- "fullName": "catnapper_mar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943373/medium/23dab6a83d3edaa5ed517251c0b68f16.png",
- "joined": "2021-09-29 13:11:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946723",
- "username": "skirankumar882",
- "fullName": "Kiran Kumar (skirankumar882)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946723/medium/f5acc0bfebb2dc6fd4c3e487dbeeb25a.png",
- "joined": "2021-10-01 23:50:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14943545",
- "username": "k.otika",
- "fullName": "k.otika",
- "avatarUrl": "https://www.gravatar.com/avatar/166d75bbff1b6b61474e4e64644a5e81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-29 14:13:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14944337",
- "username": "knopentiya",
- "fullName": "knopentiya",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14944337/medium/e15d754f673dc2d2263a16048f6d51b7.png",
- "joined": "2021-10-05 03:58:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14944463",
- "username": "aniketp166",
- "fullName": "aniketp166",
- "avatarUrl": "https://www.gravatar.com/avatar/7fc2b851e37801236c8ea9dcd7a2a264?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-30 08:30:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945021",
- "username": "giancarlol",
- "fullName": "giancarlol",
- "avatarUrl": "https://www.gravatar.com/avatar/e5eb0031e63140c4d8c6ef03ad89f86b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-30 17:43:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945275",
- "username": "orellana.edgardo8901",
- "fullName": "Edgardo Yanez (orellana.edgardo8901)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945275/medium/b1d4c6e48bf2de4b9bbfd1cae7585cd5.jpeg",
- "joined": "2021-09-30 23:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945455",
- "username": "KenyHe",
- "fullName": "贺大庆 (KenyHe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945455/medium/83dfdc9b8c46bcfd6e16d9ec4afcdc16.jpeg",
- "joined": "2021-10-01 02:44:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945717",
- "username": "diziukova",
- "fullName": "diziukova",
- "avatarUrl": "https://www.gravatar.com/avatar/691eb0e934ee483534eda7cbdeceb355?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-01 06:32:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14945817",
- "username": "FoolProtestant",
- "fullName": "FoolProtestant",
- "avatarUrl": "https://www.gravatar.com/avatar/8fa17e5e68830c7ad88f44e39f36237a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 02:19:57"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946279",
- "username": "Jackstar02",
- "fullName": "Alessandro Caterina (Jackstar02)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946279/medium/13934793ff931b54990a4a7572e64000.jpeg",
- "joined": "2021-10-01 15:51:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946413",
- "username": "slimShadyxx",
- "fullName": "slimShadyxx",
- "avatarUrl": "https://www.gravatar.com/avatar/aeeec2c6e5f349c95b7229de7c8dcee4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-01 17:06:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14946543",
- "username": "babasik.ab",
- "fullName": "Aleksandr Babenko (babasik.ab)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14946543/medium/c1a91da93a9c5fb25d83a22e0171111d.png",
- "joined": "2021-10-01 19:18:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14961909",
- "username": "karibsantos",
- "fullName": "Karina Santos (karibsantos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14961909/medium/876e6e163b4dfb807994c70b0ef396c2.jpg",
- "joined": "2021-10-14 03:16:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14962567",
- "username": "San2165",
- "fullName": "Santiago Borja D (San2165)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962567/medium/d0b9fc67a12e64ec189bbe5f3982457e.png",
- "joined": "2021-10-14 12:57:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14922505",
- "username": "Poena",
- "fullName": "Poena",
- "avatarUrl": "https://www.gravatar.com/avatar/93d62a7919878f5aec4bcb7b96d4b7ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 12:28:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998285",
- "username": "Kingkalimal",
- "fullName": "Kingkalimal",
- "avatarUrl": "https://www.gravatar.com/avatar/120845950b658d2d356b4573c233c2ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 19:03:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995333",
- "username": "memetali_esra_ece",
- "fullName": "Memetali Uzuner (memetali_esra_ece)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995333/medium/932d78df1e6074336941e02d59ed32f0.jpeg",
- "joined": "2021-11-08 14:39:31"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995371",
- "username": "ttvddvt080100",
- "fullName": "devit 08 (ttvddvt080100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995371/medium/9915369128340168852dc8660109f18f.jpeg",
- "joined": "2021-11-08 15:13:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995605",
- "username": "era-1",
- "fullName": "era-1",
- "avatarUrl": "https://www.gravatar.com/avatar/12726a6db7b142b2bc07b962a9517ebc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 21:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995701",
- "username": "GridsMicro",
- "fullName": "GridsMicro",
- "avatarUrl": "https://www.gravatar.com/avatar/45e2a758a03628a929f80757f3224484?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 23:20:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995715",
- "username": "hung1186",
- "fullName": "hung1186",
- "avatarUrl": "https://www.gravatar.com/avatar/b8d2313434c406c7a49a8278d8c93ece?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-08 23:46:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14996021",
- "username": "AnsellMaximilian",
- "fullName": "Ansell Maximilian (AnsellMaximilian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996021/medium/aae8697c284d63bdafeca3e65d1a0198.png",
- "joined": "2021-11-09 05:02:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997177",
- "username": "Aleksey_Peregudov",
- "fullName": "Aleksey_Peregudov",
- "avatarUrl": "https://www.gravatar.com/avatar/cc66100e1595c290d831122dd04b3a02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 09:45:24"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14997603",
- "username": "xmasyx",
- "fullName": "xmasyx",
- "avatarUrl": "https://www.gravatar.com/avatar/0506305791b75f669c796d107218825f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 08:27:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998001",
- "username": "davidliath",
- "fullName": "David Rosas (davidliath)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998001/medium/4287172e67f944930e8f091bed072d08.png",
- "joined": "2021-11-10 13:58:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998241",
- "username": "Mohamadrezashahneshin",
- "fullName": "Mohamadrezashahneshin",
- "avatarUrl": "https://www.gravatar.com/avatar/640879f880a2b11c51a992f9b7410cea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-10 18:15:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998323",
- "username": "rtf",
- "fullName": "Rolando Toledo Fernandez (rtf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14998323/medium/830c858a42074b57d06b6face55557ee.png",
- "joined": "2021-11-10 19:54:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14994717",
- "username": "vahid.panahi",
- "fullName": "vahid panahi (vahid.panahi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14994717/medium/8212d2ac749826da67f0578e4ca6d86b.jpeg",
- "joined": "2021-11-08 06:02:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998647",
- "username": "itotutona",
- "fullName": "itotutona",
- "avatarUrl": "https://www.gravatar.com/avatar/b5d8ac3cfc0b83b873b4964f233e0ff3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 03:26:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14998995",
- "username": "zhanglingzhi",
- "fullName": "zhanglingzhi",
- "avatarUrl": "https://www.gravatar.com/avatar/65ef2197695057a196152c3ee45b68ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-11 08:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14999641",
- "username": "djukic_50cent",
- "fullName": "Djukic Araujo (djukic_50cent)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14999641/medium/69a452b92cea228f483cfdb71b18c322.jpeg",
- "joined": "2021-11-11 18:34:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15000527",
- "username": "CristianCB",
- "fullName": "CristianCB",
- "avatarUrl": "https://www.gravatar.com/avatar/85a5f1003aa2b096a6b857a2dba41f63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-12 10:16:05"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001213",
- "username": "kentipuol",
- "fullName": "kentipuol",
- "avatarUrl": "https://www.gravatar.com/avatar/de283f9853d538dcba9f7d3de599da25?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 00:10:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15001901",
- "username": "sunilps",
- "fullName": "sunilps",
- "avatarUrl": "https://www.gravatar.com/avatar/5a715ab33c40fa726c05fc5de92eff90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-13 09:58:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002111",
- "username": "ujangrahfi",
- "fullName": "Rahfi Maulana adam (ujangrahfi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002111/medium/8e9ee3e5e67d830f9d39a73ece81e958.png",
- "joined": "2021-11-13 13:14:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002775",
- "username": "Rupender",
- "fullName": "Rupander Parihar (Rupender)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002775/medium/864afd2b4afe01dab2454c7bcf9ab2e3.jpeg",
- "joined": "2021-11-14 05:17:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15002839",
- "username": "TamerCrypto",
- "fullName": "TamerCrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/1f61b5365662bc43b222f31398f10204?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 06:49:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003265",
- "username": "seekingtau",
- "fullName": "seekingtau",
- "avatarUrl": "https://www.gravatar.com/avatar/314659ef3a6c2ed13f3ef09523325570?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 14:16:08"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14995007",
- "username": "Abberan",
- "fullName": "Abberan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995007/medium/c5d744f0220e197ec09cb077c000761d.png",
- "joined": "2021-11-08 09:56:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993363",
- "username": "WilliamOfSweden",
- "fullName": "William Daghouz (WilliamOfSweden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14993363/medium/5f3212cada01bf4f44dc0fe6d39ab879.jpeg",
- "joined": "2021-11-07 03:11:56"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003547",
- "username": "jonhanam2",
- "fullName": "Baby Disney (jonhanam2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003547/medium/2fa3e52eb462041c5657dd98097e1b56.jpeg",
- "joined": "2021-11-14 21:08:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990025",
- "username": "gratestas",
- "fullName": "gratestas",
- "avatarUrl": "https://www.gravatar.com/avatar/df1aec556cd56fbeb58f73124447a7f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-04 10:28:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14985161",
- "username": "batuhanbali34",
- "fullName": "Batuhan Bali (batuhanbali34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14985161/medium/0181aa5ca8c0b5a21cc408f00528f2e6.png",
- "joined": "2021-11-01 06:43:30"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14986349",
- "username": "misiura42",
- "fullName": "Anna Otto (misiura42)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14986349/medium/87150872d02bfae162ed269e7183002e.jpeg",
- "joined": "2021-11-01 23:41:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14986741",
- "username": "twtpchen",
- "fullName": "twtpchen",
- "avatarUrl": "https://www.gravatar.com/avatar/9ed46cda219083533b67b29f5e1a8260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 04:11:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987149",
- "username": "banuri.iqbal",
- "fullName": "banuri iqbal (banuri.iqbal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987149/medium/fa69bc8352ffca5145216f5ea0f963ca.png",
- "joined": "2021-11-02 09:25:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987287",
- "username": "iolloyd",
- "fullName": "Lloyd Moore (iolloyd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987287/medium/7be0d84675d40d1bc3497051569f717a.png",
- "joined": "2021-11-02 10:49:41"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987717",
- "username": "honeycv1993",
- "fullName": "Honey1993 CV (honeycv1993)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987717/medium/44926f698e072cbf75df2a5ae5909b63.png",
- "joined": "2021-11-02 16:05:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14987867",
- "username": "thinklogically",
- "fullName": "thinklogically",
- "avatarUrl": "https://www.gravatar.com/avatar/5a12a8a2536a53c93d785306cae5e4c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-02 19:12:01"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14988443",
- "username": "sitimast10",
- "fullName": "Siti Mastini (sitimast10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988443/medium/302215485a06592275a58548358c61e2.png",
- "joined": "2021-11-03 05:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14989327",
- "username": "ln.raulsuarez",
- "fullName": "Raul Suarez Pamplona (ln.raulsuarez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14989327/medium/ecb0931c6718ff10abbb026b2b4045f4.jpeg",
- "joined": "2021-11-03 20:02:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990003",
- "username": "bellaciaonft",
- "fullName": "Bella Ciao (bellaciaonft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990003/medium/b4156b2b90506836cdd20726f4710189.png",
- "joined": "2021-11-24 09:44:06"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990039",
- "username": "UnknownLoki",
- "fullName": "Lucas Sebastian Antúnez (UnknownLoki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990039/medium/2f1584aea6dc873afc734e7e5e9c5ff7.jpg",
- "joined": "2021-11-04 10:32:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993333",
- "username": "ckky",
- "fullName": "ckky",
- "avatarUrl": "https://www.gravatar.com/avatar/e72d328491115dcaaf2d1dcbaaef39ff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-07 02:16:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990105",
- "username": "son_hejuk",
- "fullName": "son_hejuk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990105/medium/917e556d9062f29fa8d2e207b3934e87.jpg",
- "joined": "2021-11-07 13:54:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14990631",
- "username": "Joaohfer",
- "fullName": "Joaohfer",
- "avatarUrl": "https://www.gravatar.com/avatar/43760f2af686eca5b862d7ac8dcf528c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-04 20:35:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991395",
- "username": "BerryF",
- "fullName": "Aco_pm_Fiona Berry (BerryF)",
- "avatarUrl": "https://www.gravatar.com/avatar/07e8e8bcd8abfc82015cc4670654ebc9?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 11:25:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14991887",
- "username": "Alex_1968",
- "fullName": "Alex_1968",
- "avatarUrl": "https://www.gravatar.com/avatar/496e54d7546e0e4f4578ae020f8dba58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-05 19:34:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992201",
- "username": "bungarebecca94",
- "fullName": "Bunga Rebecca (bungarebecca94)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992201/medium/74a944e6c4bd08f92419f21efc1a42de.png",
- "joined": "2021-11-06 04:16:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992265",
- "username": "AhmadAbdulrahman",
- "fullName": "AhmadAbdulrahman",
- "avatarUrl": "https://www.gravatar.com/avatar/3df6c38732b935d824098156026dce1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 05:29:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992425",
- "username": "mnsory",
- "fullName": "mnsory",
- "avatarUrl": "https://www.gravatar.com/avatar/2b40a48bcff2e42ae08a889a628535f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-06 08:38:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992831",
- "username": "businescrew",
- "fullName": "busines crew (businescrew)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992831/medium/3026df334957bb8bd936c309840b0171.png",
- "joined": "2021-11-06 15:29:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14992835",
- "username": "jinmiaoluo",
- "fullName": "jinmiaoluo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992835/medium/7212ed7caee022a8c9550c70f2af3e15.jpeg",
- "joined": "2021-11-06 15:31:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993161",
- "username": "TAKESHITA-Hiroki",
- "fullName": "Hiroki (TAKESHITA-Hiroki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14993161/medium/443a93805cde8b16a84e685dcfc73f8c.jpeg",
- "joined": "2021-11-06 23:34:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14993207",
- "username": "erfantahmasebi",
- "fullName": "erfantahmasebi",
- "avatarUrl": "https://www.gravatar.com/avatar/6caa020a43ab2c91ab068fdad957c8ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-07 00:12:59"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15003355",
- "username": "Osmarluko",
- "fullName": "Osmarluko",
- "avatarUrl": "https://www.gravatar.com/avatar/e16bc316f6bbf8f69238a4133524d6f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-14 16:14:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004003",
- "username": "yuukoOrSomething",
- "fullName": "Roger (yuukoOrSomething)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15004003/medium/3bff8d31ec06ab9b2bf51bc835db5335.jpeg",
- "joined": "2021-11-15 06:04:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984717",
- "username": "albertkytth62",
- "fullName": "Albert Nena (albertkytth62)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984717/medium/d1be2efa83137c5e5ac2595b14733fca.png",
- "joined": "2021-10-31 23:29:27"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030823",
- "username": "jamalinu",
- "fullName": "jamalinu",
- "avatarUrl": "https://www.gravatar.com/avatar/d8090766a85c94dc03dd8b99c95b2883?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 15:10:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026867",
- "username": "shunkakinoki",
- "fullName": "Shun Kakinoki (shunkakinoki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026867/medium/35fac03c88fd81a65efd2c22cb71d2c3.jpeg",
- "joined": "2021-11-22 17:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027289",
- "username": "Ether_acha",
- "fullName": "Rosa Charrys (Ether_acha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15027289/medium/3c812dcc53b5f6f88356d5162eca6c2f.png",
- "joined": "2021-11-23 03:22:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15027697",
- "username": "Faneitedgar",
- "fullName": "Faneitedgar",
- "avatarUrl": "https://www.gravatar.com/avatar/fd4a8c156f48bb513c6696e7cf6a038b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 08:17:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028143",
- "username": "javadka",
- "fullName": "javadka",
- "avatarUrl": "https://www.gravatar.com/avatar/cdcfff48448ded799b6ca950991d5173?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 13:56:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15028305",
- "username": "sfati1177",
- "fullName": "sfati1177",
- "avatarUrl": "https://www.gravatar.com/avatar/e050ddf71ec9d0b6ac03e1f29e2ca1f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 16:59:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029057",
- "username": "impixelthec",
- "fullName": "Jozsef Joo (impixelthec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029057/medium/562f5112e6ade8f1e8a684ea3e033beb.png",
- "joined": "2021-11-24 07:34:30"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029207",
- "username": "mohammedouahman",
- "fullName": "Mohammed Ouahman (mohammedouahman)",
- "avatarUrl": "https://www.gravatar.com/avatar/c612b12d4129de091c227a6ac1080f37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-24 09:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029915",
- "username": "nesoron89",
- "fullName": "Nestor Orona (nesoron89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029915/medium/885c6475df43c505be374b74bb39313e.jpeg",
- "joined": "2021-11-24 23:07:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15029933",
- "username": "igoravilareis",
- "fullName": "igao 21 (igoravilareis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15029933/medium/707857fac6a042632007b0b4d311a120.png",
- "joined": "2021-11-24 23:31:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15030637",
- "username": "Kricccc",
- "fullName": "Kristijan Stevanovic (Kricccc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030637/medium/4405dbe12df8bb9d5159d49d1da910a4.jpeg",
- "joined": "2021-11-25 12:08:09"
- },
- "languages": [
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031019",
- "username": "Kassiaoliveira",
- "fullName": "Kassiaoliveira",
- "avatarUrl": "https://www.gravatar.com/avatar/3efb6a545818b8dc0c6797ec03acec28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-25 20:23:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026521",
- "username": "abdelali_abouelhassan",
- "fullName": "abdelali abouelhassan (abdelali_abouelhassan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026521/medium/6562f337816721c82074835aaeef875e.png",
- "joined": "2021-11-22 12:21:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031955",
- "username": "liina380",
- "fullName": "liina380",
- "avatarUrl": "https://www.gravatar.com/avatar/1d5dfd81b07902ec1ceef1e235daa4a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 13:34:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15031993",
- "username": "Horsewater",
- "fullName": "Horsewater",
- "avatarUrl": "https://www.gravatar.com/avatar/37db00c8d0df1105408cb61e88b61340?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 14:00:03"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032055",
- "username": "edeco",
- "fullName": "edeco",
- "avatarUrl": "https://www.gravatar.com/avatar/397f9b7e490d9ff25b3aa41c7cead78f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 15:10:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032139",
- "username": "stellar0430",
- "fullName": "stellar0430",
- "avatarUrl": "https://www.gravatar.com/avatar/7a9d30753f119746da75512a99464b4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 16:52:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032187",
- "username": "sofialameiro",
- "fullName": "sofialameiro",
- "avatarUrl": "https://www.gravatar.com/avatar/bb917020daad76ccdd604f820085767f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-26 18:16:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15032415",
- "username": "khanhrg007",
- "fullName": "khanhrg007",
- "avatarUrl": "https://www.gravatar.com/avatar/61bc8bc41d9f2ae38b77c223e6ac250a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 00:13:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033007",
- "username": "xisper",
- "fullName": "xisper",
- "avatarUrl": "https://www.gravatar.com/avatar/b214f727ae0a36e26c4ed099a783c3e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-27 11:42:05"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033759",
- "username": "alex.lyust",
- "fullName": "Александр Люст (alex.lyust)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15033759/medium/affbf0e1bd71a0ce0daef1d288f7bc71.jpeg",
- "joined": "2021-11-28 04:18:37"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15033955",
- "username": "vitor_aug",
- "fullName": "vitor_aug",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8419c6b996b4608cd5a9dde16ba250?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 08:27:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034059",
- "username": "Luixsin",
- "fullName": "Luixsin",
- "avatarUrl": "https://www.gravatar.com/avatar/89d192b43a60576f6570589d3b9a3457?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-28 09:57:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15034109",
- "username": "Cest-moi-Felipe",
- "fullName": "Felipe Aza (Cest-moi-Felipe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15034109/medium/aae9b00063f57cc1e91aae633f87e546.png",
- "joined": "2021-11-28 10:50:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026729",
- "username": "csxHiker",
- "fullName": "csxHiker",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026729/medium/ce6cce4b0805785c77d7557f108807c0.jpeg",
- "joined": "2021-11-22 15:22:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15026273",
- "username": "frkn-aydn",
- "fullName": "Furkan Aydın (frkn-aydn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15026273/medium/22fe088dc05463753e6f37a728aae2d3.jpeg",
- "joined": "2021-11-22 09:24:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15004715",
- "username": "georgekal",
- "fullName": "georgekal",
- "avatarUrl": "https://www.gravatar.com/avatar/2b56da9c80ee228d2e317bf30aae89c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 18:53:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021975",
- "username": "yanluizcripto",
- "fullName": "Yan Luiz (yanluizcripto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021975/medium/6a6f07abbbf6444cb25da930a24a992a.jpeg",
- "joined": "2021-11-18 19:24:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005019",
- "username": "beihaikj",
- "fullName": "beihaikj",
- "avatarUrl": "https://www.gravatar.com/avatar/cbad3d75ff98dd9786e9ebd6025a4ff6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 02:04:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005221",
- "username": "ozgur.kynr",
- "fullName": "ozgur kaynar (ozgur.kynr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005221/medium/d0e68bc33fa42b59ec946614f56d8039.png",
- "joined": "2021-11-16 05:31:55"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005461",
- "username": "jooooo5as",
- "fullName": "jooooo5as",
- "avatarUrl": "https://www.gravatar.com/avatar/cd15e4ab449bd56b6ad56153e57b204a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 08:53:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15005585",
- "username": "Jimmy.brtc",
- "fullName": "Jimmy Buriticá (Jimmy.brtc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15005585/medium/ba37c5262f0a3a97f323ce588e5851c9.jpeg",
- "joined": "2021-11-16 10:22:04"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15016175",
- "username": "futuresbetter",
- "fullName": "futuresbetter",
- "avatarUrl": "https://www.gravatar.com/avatar/bbcf90ecf07a970f76d34571340e2962?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-16 23:28:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15018561",
- "username": "kaimingguo",
- "fullName": "Kaiming Guo (kaimingguo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15018561/medium/e227a380df187398aaefcc4dd1068c26.png",
- "joined": "2021-11-17 02:21:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15019091",
- "username": "hao493919178",
- "fullName": "MJ TimTry (hao493919178)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15019091/medium/e782f8108a98d13de8845848ec1e746a.jpeg",
- "joined": "2021-11-17 02:55:59"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020119",
- "username": "azraelkr",
- "fullName": "azraelkr",
- "avatarUrl": "https://www.gravatar.com/avatar/523a85533fc442b1227f6a3662c51b21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 10:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15020627",
- "username": "sullivanhsu55",
- "fullName": "Sullivan Hsu (sullivanhsu55)",
- "avatarUrl": "https://www.gravatar.com/avatar/219e2bd621b269fa58991ae865d3fa55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 19:15:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15021487",
- "username": "WATSON_WU",
- "fullName": "WATSON_WU",
- "avatarUrl": "https://www.gravatar.com/avatar/e55ce154d2e9311200c337f143a1a6cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-18 10:59:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022199",
- "username": "tendo",
- "fullName": "tendo",
- "avatarUrl": "https://www.gravatar.com/avatar/a6f3f980602c6dd5fa97244fae1df7e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 01:10:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024985",
- "username": "Rafff5_dev",
- "fullName": "Rafff5_dev",
- "avatarUrl": "https://www.gravatar.com/avatar/3103781eddc0dfe3a4723d5ff4315424?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-21 08:02:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022463",
- "username": "shanjiefengyi",
- "fullName": "郭欣晨 (shanjiefengyi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022463/medium/1d8934ae554876b845c0063f179796b9.png",
- "joined": "2021-11-22 22:19:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022623",
- "username": "tan93nt",
- "fullName": "tan93nt",
- "avatarUrl": "https://www.gravatar.com/avatar/c737d868b93acb0f91b1b13d1a5e4e63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 07:35:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022697",
- "username": "juanri",
- "fullName": "juanri",
- "avatarUrl": "https://www.gravatar.com/avatar/8364006c1c853ce35a365dfb1e1b15ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 08:39:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022831",
- "username": "youyibai",
- "fullName": "waitkeeper (youyibai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15022831/medium/2570dd20ed530c035d7736830f7d1dd0.png",
- "joined": "2021-11-19 10:37:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15022841",
- "username": "7766to",
- "fullName": "7766to",
- "avatarUrl": "https://www.gravatar.com/avatar/1dee8b91e42c4fdead08492f70fda6a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-19 10:44:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023035",
- "username": "marastrada_47",
- "fullName": "Marcela Astrada (marastrada_47)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023035/medium/6a4b89be3013667de635b3150aace872.jpeg",
- "joined": "2021-11-19 13:30:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023179",
- "username": "marcocai",
- "fullName": "MX C (marcocai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023179/medium/ed669b07ab737c476faf64de043d7262.png",
- "joined": "2021-11-19 16:12:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023525",
- "username": "vanillacoffee",
- "fullName": "vanillacoffee",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023525/medium/ea0850187bb79eceeaac49b40b7fc7bb.png",
- "joined": "2021-11-20 01:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023677",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/fb3dd331633276784a82c35b1481188c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 04:18:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15023763",
- "username": "katsura-yamanouchi",
- "fullName": "katsura-yamanouchi",
- "avatarUrl": "https://www.gravatar.com/avatar/a7c9f679db1ce91416fed1d6c1198390?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 05:52:16"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 28,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "15024013",
- "username": "simonedelpopolo",
- "fullName": "simonedelpopolo",
- "avatarUrl": "https://www.gravatar.com/avatar/7284d2f17a7f3f77319b01dc75ed3ad2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-20 10:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984835",
- "username": "Juliatease",
- "fullName": "Juliatease",
- "avatarUrl": "https://www.gravatar.com/avatar/8d2b8b89616a76c87ad21a389c3a7221?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 01:48:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14984425",
- "username": "HanSalo",
- "fullName": "Vladyslav Dudas (HanSalo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14984425/medium/2a8084dc30d654610bdfb111362833dd.jpeg",
- "joined": "2021-11-04 06:59:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962725",
- "username": "Lemonmonki",
- "fullName": "Lemonmonki",
- "avatarUrl": "https://www.gravatar.com/avatar/98c7d56f3f2d41b03ada057eb8161ca9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-14 15:08:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969033",
- "username": "belajarkripto",
- "fullName": "belajarkripto",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969033/medium/53c6a8e2385987d4555337d628710e58.png",
- "joined": "2021-10-19 17:25:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967935",
- "username": "Ma1402",
- "fullName": "Ma1402",
- "avatarUrl": "https://www.gravatar.com/avatar/311ed7b3758f60f466de00372d67d556?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 02:20:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968049",
- "username": "gabrieleprinciotta",
- "fullName": "GABRIELE PRINCIOTTA (gabrieleprinciotta)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968049/medium/519b4e28fb779cfc1c1d51b34fd54331.jpeg",
- "joined": "2021-10-19 04:20:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968205",
- "username": "ir_zaborska",
- "fullName": "Iryna Zaborska (ir_zaborska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968205/medium/3cbbcd262107220dce0ea8e13747edd6.JPG",
- "joined": "2021-10-21 10:59:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968213",
- "username": "igorivna_263",
- "fullName": "Мар'янка Тарчинська (igorivna_263)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968213/medium/b596e38999691d52c315084a56d60e4f.jpeg",
- "joined": "2021-10-19 09:46:16"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 187,
- "positiveVotes": 176,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14968313",
- "username": "tetiana_marynevych",
- "fullName": "tetiana_marynevych",
- "avatarUrl": "https://www.gravatar.com/avatar/1aaab38dd670437be0be476bfac2d0cb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 14:48:45"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 109,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968381",
- "username": "r.drechevych",
- "fullName": "r.drechevych",
- "avatarUrl": "https://www.gravatar.com/avatar/e13b00efd7269f75bdbea97cd54a80a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 15:28:16"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 83,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968479",
- "username": "Alinka24",
- "fullName": "Alinka24",
- "avatarUrl": "https://www.gravatar.com/avatar/215d13cb9f433d294c78399716a0f1ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 08:02:33"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 29,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14968665",
- "username": "Col0nell94",
- "fullName": "Col0nell94",
- "avatarUrl": "https://www.gravatar.com/avatar/f70765489454b5fb16c0ed2e481f6c21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 11:47:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968755",
- "username": "Oksana_Dunevych",
- "fullName": "Oksana_Dunevych",
- "avatarUrl": "https://www.gravatar.com/avatar/e5a8792ff0e233ead9ba070f5ebe67b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 10:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14968833",
- "username": "Foxxeek",
- "fullName": "Foxxeek",
- "avatarUrl": "https://www.gravatar.com/avatar/6366bd5a7307a3e0c02c3d551846af13?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 14:13:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969051",
- "username": "MRobledo",
- "fullName": "MaiK (MRobledo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969051/medium/4ccd26d9144c3700aeeba7a819d0b817.jpeg",
- "joined": "2021-10-19 17:54:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967831",
- "username": "shugo.eth",
- "fullName": "Shugo (shugo.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967831/medium/767a4323cc726a28c6ee0fe469d3d2a7.jpeg",
- "joined": "2021-10-19 01:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14969101",
- "username": "FernandoAriel",
- "fullName": "Fernando Ariel Rodriguez (FernandoAriel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969101/medium/d7de9a5c295620ca49956106bb6938d0.jpeg",
- "joined": "2021-10-19 19:53:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969403",
- "username": "hongthaipro",
- "fullName": "Phạm Hồng Thái (hongthaipro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969403/medium/19300e3d649b1ad84292b1d4493307d6.jpeg",
- "joined": "2021-10-20 03:40:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969503",
- "username": "Serghei_Belyi",
- "fullName": "Serghei_Belyi",
- "avatarUrl": "https://www.gravatar.com/avatar/cc4db1a745bf119e326437de0b171a9a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 05:14:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969651",
- "username": "AnastasiaT",
- "fullName": "AnastasiaT",
- "avatarUrl": "https://www.gravatar.com/avatar/800eef961b53a206d4bdb43a4a036789?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 07:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14969655",
- "username": "Marta.Boianivska",
- "fullName": "Marta.Boianivska",
- "avatarUrl": "https://www.gravatar.com/avatar/be2c6c760516e858293fc2e9907e924b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 07:55:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969675",
- "username": "andreyleys",
- "fullName": "Андрей Л (andreyleys)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969675/medium/905c79a1b6d262c4f27fe5dee3745986.png",
- "joined": "2021-10-21 16:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14969731",
- "username": "fencuku",
- "fullName": "Юлія Фенчук (fencuku)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14969731/medium/c09162590c2bce9c83b4e6e5ce6e9324.png",
- "joined": "2021-10-20 08:52:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970305",
- "username": "jimmysmith.oliveira",
- "fullName": "JM Smith Uchiha (jimmysmith.oliveira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970305/medium/af571c3b068e8d39e447250174ba3c17.jpeg",
- "joined": "2021-10-20 15:51:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970317",
- "username": "natsnats",
- "fullName": "natsnats",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970317/medium/3bf7365a2c248c83944a92590efecbdf.png",
- "joined": "2021-10-20 15:57:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970819",
- "username": "NONAME699",
- "fullName": "NONAME699",
- "avatarUrl": "https://www.gravatar.com/avatar/71bac83ba11dff65ea1b136469e8a474?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-21 03:42:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970965",
- "username": "djtouc",
- "fullName": "DEE JAY TOUC (djtouc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970965/medium/8311d9d4eb154006e92427aab50c1392.png",
- "joined": "2021-10-21 05:27:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967909",
- "username": "douglasgj",
- "fullName": "Douglas Galisteo (douglasgj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967909/medium/6dc4ca79a5d03006f0f73089101bbd1d.jpeg",
- "joined": "2021-10-19 02:08:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14967689",
- "username": "leonardoluan2018",
- "fullName": "Leonardo deficiencia auditiva (leonardoluan2018)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14967689/medium/e9e918da4dba2bd0a481b1cb2e1473c3.png",
- "joined": "2021-10-18 21:23:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971225",
- "username": "kazumidavies813",
- "fullName": "Kazumi Davies (kazumidavies813)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971225/medium/c21a537592e11f6972745ff4d6182d12.jpeg",
- "joined": "2021-10-21 09:33:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14964959",
- "username": "NdrXbrain",
- "fullName": "Student Student (NdrXbrain)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964959/medium/60e018a3f4f93080e7f4ae7867a617bc.png",
- "joined": "2021-10-16 13:42:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14962881",
- "username": "xSpeed",
- "fullName": "Reed-SolomonE (xSpeed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14962881/medium/0c409aba2e7ab01ee0fe436b87395698.JPG",
- "joined": "2021-10-14 18:09:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963025",
- "username": "kalufinnle",
- "fullName": "Kalu Everyone (kalufinnle)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963025/medium/9b0c1f4a59de841b0997447cc1e998f2.png",
- "joined": "2021-10-14 22:19:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963303",
- "username": "daadamati",
- "fullName": "daadamati",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963303/medium/45c58b93a72ee93cd47f1e9a70639e81.jpg",
- "joined": "2021-10-15 04:14:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963363",
- "username": "andreas_koutsakis",
- "fullName": "Andreas (andreas_koutsakis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963363/medium/9c8cd9d629afa2226119c89d759b5125.jpg",
- "joined": "2021-10-15 05:15:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 86
- },
- {
- "user": {
- "id": "14963383",
- "username": "antoniobuttazzo23",
- "fullName": "Antonio Buttazzo (antoniobuttazzo23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14963383/medium/0478800a5b79d2b1dbff376396d3758d.png",
- "joined": "2021-10-15 05:32:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963559",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/27ff9e172200a784d36a59415c6c833d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 08:18:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14963607",
- "username": "mikemathu",
- "fullName": "mikemathu",
- "avatarUrl": "https://www.gravatar.com/avatar/2c9e749d43014399a8522ab1a446332c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-15 09:05:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14964031",
- "username": "Charlongolo",
- "fullName": "Charlie (Charlongolo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964031/medium/dbf2d915e98e9db707c54f4df467701f.jpg",
- "joined": "2021-10-15 18:14:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14964581",
- "username": "Pric",
- "fullName": "Pric",
- "avatarUrl": "https://www.gravatar.com/avatar/232a650d52d05013cc328f79485eddf0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 05:38:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 1
- },
- {
- "user": {
- "id": "14964673",
- "username": "Timosch",
- "fullName": "Timosch",
- "avatarUrl": "https://www.gravatar.com/avatar/0239fa651b8e7d698823e11ef92ff127?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-16 08:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965075",
- "username": "g1zm0",
- "fullName": "Mariusz Pełka (g1zm0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14965075/medium/3bdd185d105408daa338241b1e5aede9.png",
- "joined": "2021-10-16 16:12:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966973",
- "username": "marco.castignoli",
- "fullName": "Marco Castignoli (marco.castignoli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966973/medium/ac611f249343c9a410f1c492c2026abd.jpeg",
- "joined": "2021-10-18 09:41:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965639",
- "username": "bhavesh.maheshwari1947",
- "fullName": "BHAVESH MAHESHWARI (bhavesh.maheshwari1947)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14965639/medium/56e25a1b7efda65d5fdd12f029d72ee4.jpeg",
- "joined": "2021-10-17 07:27:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14965895",
- "username": "Dynam1c2",
- "fullName": "Dynam1c2",
- "avatarUrl": "https://www.gravatar.com/avatar/f5ad51a15e4d52f83fa91d0259e70d72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-17 12:04:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966025",
- "username": "harshagrawal",
- "fullName": "harshagrawal",
- "avatarUrl": "https://www.gravatar.com/avatar/39cfab727aaacb1f30327c895035b9f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-17 14:20:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966089",
- "username": "ignb",
- "fullName": "ignb",
- "avatarUrl": "https://www.gravatar.com/avatar/e20f697e42a3a97a570cf9837a242b9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-17 15:55:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966129",
- "username": "ratthakorn99",
- "fullName": "ratthakorn (ratthakorn99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966129/medium/9c1a435a52439cb6f587dae5ec765144.jpg",
- "joined": "2021-10-17 16:38:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966159",
- "username": "bafrani",
- "fullName": "Ahmad Pourbafrani (bafrani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966159/medium/c51fc2b1e6cf7ef020396751ad9b854b.png",
- "joined": "2021-10-17 17:02:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966275",
- "username": "zer0knowledge",
- "fullName": "Demir (zer0knowledge)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966275/medium/dead80d7c0e54990ad4fee448e0aacaa.jpeg",
- "joined": "2021-10-17 20:22:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966559",
- "username": "anacapito",
- "fullName": "Franc Monroe (anacapito)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966559/medium/0562cb42f70b521e24bfd625b8dce4b9.png",
- "joined": "2021-10-18 03:42:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966739",
- "username": "maxim2006722",
- "fullName": "Maxim_u (maxim2006722)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966739/medium/9e8a9aceb99ff94b0df704182411fa90.png",
- "joined": "2021-10-18 06:26:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966881",
- "username": "nb33535",
- "fullName": "Наталія Болюх (nb33535)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966881/medium/7b4bd1fb8d6fde7a0d747f5c21e72b5a.jpg",
- "joined": "2021-10-22 16:18:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14966927",
- "username": "NastyaK",
- "fullName": "NastyaK",
- "avatarUrl": "https://www.gravatar.com/avatar/d4e2090ed3ffc1a373973b07ee18752c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-19 10:06:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 84,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14970993",
- "username": "vadzimchesh",
- "fullName": "vadzimchesh",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14970993/medium/864bf7dad17fd4313cb5bb5656b4b547.jpg",
- "joined": "2021-10-21 06:05:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971241",
- "username": "Evanilson98",
- "fullName": "Evanilson98",
- "avatarUrl": "https://www.gravatar.com/avatar/a68a1b6419e2a237b1cb00b21bd179b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-21 09:44:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14983849",
- "username": "wldn990629",
- "fullName": "정지우 (wldn990629)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983849/medium/701f7aecdf6ca3b6752b763b71d89109.png",
- "joined": "2021-11-04 06:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978111",
- "username": "guilhermecapitao",
- "fullName": "guilhermecapitao",
- "avatarUrl": "https://www.gravatar.com/avatar/2d6f972845c76f2070aa942ac795c353?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-27 09:22:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975853",
- "username": "TanyaLuk",
- "fullName": "TanyaLuk",
- "avatarUrl": "https://www.gravatar.com/avatar/f730cbbf5608f1b399895926fdd6a752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 05:31:56"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 128,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975911",
- "username": "SQ911",
- "fullName": "SQ911",
- "avatarUrl": "https://www.gravatar.com/avatar/49f909cb01992f7bf367a8c20a7f12d4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 15:06:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14976459",
- "username": "sautermarcel2",
- "fullName": "Marcel Sauter (sautermarcel2)",
- "avatarUrl": "https://www.gravatar.com/avatar/2fba66f2f46eb49faeee1b8484310b24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-26 03:54:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14976705",
- "username": "shenruiqi3",
- "fullName": "Shen ruiqi (shenruiqi3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14976705/medium/920ef0e477bc510958724bfedbafe0fa.jpeg",
- "joined": "2021-10-26 08:17:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14976781",
- "username": "filippo22carlesso",
- "fullName": "filippo carlesso (filippo22carlesso)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14976781/medium/b513f26feddb23654276b4aab11cdc7b.jpeg",
- "joined": "2021-10-26 09:31:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977301",
- "username": "mines1974",
- "fullName": "María Inés (mines1974)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977301/medium/ad69c202e75a23c6ff17fbe82d11b6dc.jpeg",
- "joined": "2021-10-26 17:32:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977437",
- "username": "kmtc241",
- "fullName": "Kim Mark (kmtc241)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977437/medium/c346bca2f389dfe7371351a4fe34ed26.png",
- "joined": "2021-10-26 21:24:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977837",
- "username": "Orrama",
- "fullName": "Marlon Ramirez Ortega (Orrama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977837/medium/9fb2b9c153d600ab0ac8618c5499a33d.png",
- "joined": "2021-10-27 05:34:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 199
- },
- {
- "user": {
- "id": "14977845",
- "username": "yuwei.yubuzhi",
- "fullName": "wei yu (yuwei.yubuzhi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977845/medium/b42d0d4cafb6c07fa57394ea5779ccc1.jpeg",
- "joined": "2021-10-27 05:29:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14977945",
- "username": "TagPlex",
- "fullName": "Kevin Palma (TagPlex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977945/medium/725a8d38c46f2ac4ebbce870cce83922.png",
- "joined": "2021-10-27 07:25:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978357",
- "username": "burhan.khambati13",
- "fullName": "Burhanuddin Khambati (burhan.khambati13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978357/medium/24080cd625f74a46f2dc7bac7a31bf9a.png",
- "joined": "2021-10-27 13:11:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975409",
- "username": "lovettisfantastic",
- "fullName": "Data Visualization (lovettisfantastic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14975409/medium/6cfb6b0708e0e3fef3a8ec1d3649a4a6.png",
- "joined": "2021-10-25 06:56:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978465",
- "username": "chenlie449",
- "fullName": "陈列 (chenlie449)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978465/medium/1f7175717fc3e3dfb1a419dd80e49ece.png",
- "joined": "2021-10-27 14:42:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978481",
- "username": "alvaro98",
- "fullName": "Alvaro Ch (alvaro98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978481/medium/03b22aa2e5a993b6a9864b8a9342eb46.png",
- "joined": "2021-10-27 15:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978593",
- "username": "Vuichka",
- "fullName": "Ванечка Александров (Vuichka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978593/medium/2df5fba2f29878e74912892dd1bdc5cc.jpeg",
- "joined": "2021-10-27 16:52:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14978885",
- "username": "asifmahmoud487g",
- "fullName": "Asif Mahmoud (asifmahmoud487g)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14978885/medium/cd29b6fbfc96248791192d32cf7335f6.jpeg",
- "joined": "2021-10-27 22:59:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14979235",
- "username": "aelinore",
- "fullName": "Sheila Semi (aelinore)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14979235/medium/997baf1e1de4e1359525c1a4749bb7ed.jpg",
- "joined": "2021-10-29 05:41:59"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981089",
- "username": "daniloraisi",
- "fullName": "Danilo Tenorio Raisi (daniloraisi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14981089/medium/37d319f7ff289b5141aea317cb808deb.jpeg",
- "joined": "2021-10-29 08:26:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981655",
- "username": "jffc",
- "fullName": "jffc",
- "avatarUrl": "https://www.gravatar.com/avatar/3245f94329133e96df95ea2a9124d45d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 15:07:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14981661",
- "username": "jffc.app",
- "fullName": "Fabio Campos (jffc.app)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14981661/medium/c2b1f39d70cf548c74e8960d318cf4b5.jpeg",
- "joined": "2021-10-29 15:08:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14982609",
- "username": "cantatus",
- "fullName": "cantatus",
- "avatarUrl": "https://www.gravatar.com/avatar/2c510aef6eb817a245a08f38b552fa93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 10:36:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983071",
- "username": "DrDavid",
- "fullName": "David Ho (DrDavid)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14983071/medium/b055056a9b9907ce69e035b9f303f492.jpeg",
- "joined": "2021-10-30 19:01:45"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14983151",
- "username": "bin8448",
- "fullName": "bin8448",
- "avatarUrl": "https://www.gravatar.com/avatar/609528474ebbf2a7368f486a0358706d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-30 21:34:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14975451",
- "username": "RixCraft",
- "fullName": "RixCraft",
- "avatarUrl": "https://www.gravatar.com/avatar/89498fb8d22de8867ab4d03eaa07a7ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 07:29:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 34
- },
- {
- "user": {
- "id": "14975403",
- "username": "codeboi",
- "fullName": "codeboi",
- "avatarUrl": "https://www.gravatar.com/avatar/2f928ec5e099bab263d701846a8927d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 06:49:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971357",
- "username": "Vasyl_Yurkuts",
- "fullName": "Vasyl_Yurkuts",
- "avatarUrl": "https://www.gravatar.com/avatar/ae21ee99a161c56ff86e449cd0931e7e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:46:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 121,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973311",
- "username": "BandarBasamh",
- "fullName": "Bandar (BandarBasamh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973311/medium/cf3a913993d90ab591a8aacf4a07623f.png",
- "joined": "2021-10-23 05:29:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971373",
- "username": "liv1401",
- "fullName": "Игорь Лихогруд (liv1401)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971373/medium/82b280124cb800f2a2f296d2c0471adc.jpeg",
- "joined": "2021-10-21 11:40:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971421",
- "username": "vlahnina",
- "fullName": "vlahnina",
- "avatarUrl": "https://www.gravatar.com/avatar/a01a781871bc50e4400dbfdb996fcec5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-21 12:10:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14971521",
- "username": "luyaoinfo",
- "fullName": "Lu Yao (luyaoinfo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971521/medium/8b2ae1ea67e8f3a64641f702accce14d.jpeg",
- "joined": "2021-10-21 14:18:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14971925",
- "username": "adibputra422",
- "fullName": "Adit Putra (adibputra422)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14971925/medium/9da443feaa3291fa3ce0f0ee1180bf54.png",
- "joined": "2021-10-22 00:54:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972587",
- "username": "NOCMAT81",
- "fullName": "NOCMAT81",
- "avatarUrl": "https://www.gravatar.com/avatar/d0cfe8a3b4ae1d063d023662864add60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:13:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972639",
- "username": "Victor40",
- "fullName": "Victor40",
- "avatarUrl": "https://www.gravatar.com/avatar/9c55347f32e1bf6e600751d2f7608ec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 11:54:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972843",
- "username": "Khraken",
- "fullName": "Khraken",
- "avatarUrl": "https://www.gravatar.com/avatar/5ef38b24c37f6064315ee252c8a93959?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 16:16:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14972963",
- "username": "basamg440",
- "fullName": "Bastian Mertes (basamg440)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14972963/medium/fefc21eb6d8e484ee13a2d12e123b192.png",
- "joined": "2021-10-22 19:35:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973109",
- "username": "ippower",
- "fullName": "ippower123 (ippower)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973109/medium/7371003b3e181f4ff6143c4a655d88e4.png",
- "joined": "2021-10-23 03:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973245",
- "username": "andangparsan",
- "fullName": "Andang Parsan (andangparsan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973245/medium/83a15ae159989f1f9a5bee86aeb6a14b.jpeg",
- "joined": "2021-10-23 03:42:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973315",
- "username": "andruhas22",
- "fullName": "Андрей Чорный (andruhas22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973315/medium/7848339056e62d593030d6a6cb152e74.jpeg",
- "joined": "2021-10-23 05:36:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974785",
- "username": "leandroesl3",
- "fullName": "LEANDRO ESL (leandroesl3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974785/medium/b1c7b07092a354e83b5b4be250c49218.jpeg",
- "joined": "2021-10-24 18:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973323",
- "username": "wealeyasilva87",
- "fullName": "wealeyasilva87",
- "avatarUrl": "https://www.gravatar.com/avatar/9b3a449cba7652f602deeecd41eca479?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 05:34:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14973471",
- "username": "hugo_ham",
- "fullName": "Hugo Hamaimi (hugo_ham)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973471/medium/e29e9241f0a96e4067f303459381e1d5.png",
- "joined": "2021-10-23 08:49:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14973491",
- "username": "Baby_Bubbles",
- "fullName": "Baby_Bubbles",
- "avatarUrl": "https://www.gravatar.com/avatar/86fafd1bed94890980c573a4d411ea60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 09:07:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973807",
- "username": "ukr-user",
- "fullName": "ukr-user",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973807/medium/1d2a10d81726182ea2b7314c4105a1d7.png",
- "joined": "2021-10-23 15:27:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973821",
- "username": "isaialcantar",
- "fullName": "isaialcantar",
- "avatarUrl": "https://www.gravatar.com/avatar/a0077ab14604370bce0d87ee9bc0efc0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-23 15:49:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14973967",
- "username": "thisismax",
- "fullName": "Maximilian M. (thisismax)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14973967/medium/d92acb11a389b172597b85de97d344c5.png",
- "joined": "2021-10-23 19:22:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974005",
- "username": "ovg1953",
- "fullName": "Orson Galvão (ovg1953)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974005/medium/e21cf3c4cdf45b9bcdcf7d5451a647cf.jpeg",
- "joined": "2021-10-23 20:34:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14974319",
- "username": "Yuriimalaniuk",
- "fullName": "Yuriimalaniuk",
- "avatarUrl": "https://www.gravatar.com/avatar/c19120a9901223403e524abdbe836db1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-24 06:54:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974527",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/d14a807a4b76542a1fcdbb2e43205be1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-24 09:44:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974589",
- "username": "Tschentsch",
- "fullName": "Uta Tschentscher (Tschentsch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974589/medium/a2ebc3f083603003e48ea80ad66492af.jpeg",
- "joined": "2021-10-24 11:04:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14974629",
- "username": "wesrajoko",
- "fullName": "Abu Hurairah (wesrajoko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14974629/medium/406715c01abd6f63b289c0254935cb88.png",
- "joined": "2021-10-24 12:03:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922683",
- "username": "dimityryordanovmitov",
- "fullName": "Димитър Митов (dimityryordanovmitov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922683/medium/0614e0aa7d663e2b1872912fef4dd747.jpeg",
- "joined": "2021-09-14 15:31:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922369",
- "username": "halley.oliveira",
- "fullName": "halley.oliveira",
- "avatarUrl": "https://www.gravatar.com/avatar/50becb2743c21fc6a72320fa8961e0d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 10:48:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14821880",
- "username": "jonathanandrade10",
- "fullName": "jonathanandrade10",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821880/medium/59c6c840e75ec03af8b88b5005744137.jpeg",
- "joined": "2021-06-30 12:47:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857060",
- "username": "slobato711",
- "fullName": "Sergio Lobato Ramos (slobato711)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14857060/medium/16b052b6094cc8e9e2a1b9d493e20c30.png",
- "joined": "2021-07-28 22:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854540",
- "username": "hashem.klash",
- "fullName": "هاشم الجراح (hashem.klash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854540/medium/44ec31371796e47f23251fafd424015e.jpeg",
- "joined": "2021-07-27 01:11:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854804",
- "username": "nikbiondo",
- "fullName": "nikbiondo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854804/medium/e3ad6aa0acf22cbca8794a5fc69f95f9.jpeg",
- "joined": "2021-07-27 05:48:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855294",
- "username": "mikoto_1110",
- "fullName": "mikoto_1110",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855294/medium/31cdc00d3b06b364eb79cd47e3e25812.jpg",
- "joined": "2021-07-27 12:49:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855440",
- "username": "noezsoph",
- "fullName": "noezsoph",
- "avatarUrl": "https://www.gravatar.com/avatar/2e88cd889e295539bd27dfdaa4713131?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 15:07:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855548",
- "username": "bayt",
- "fullName": "bayt",
- "avatarUrl": "https://www.gravatar.com/avatar/3053a78ca2d0c5091d982c9806e9e2a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 17:24:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855564",
- "username": "Budenkinder",
- "fullName": "Budenkinder",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855564/medium/18eaf43a19b5b5491d87b7e117eba1af.png",
- "joined": "2021-07-27 17:51:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855682",
- "username": "yuriko627",
- "fullName": "yuriko627",
- "avatarUrl": "https://www.gravatar.com/avatar/0f0ad27df78e1732f726d245c20395f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 21:09:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855956",
- "username": "RRKamil",
- "fullName": "RRKamil",
- "avatarUrl": "https://www.gravatar.com/avatar/787a4f479b22ca62f51ecbe4be547b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-28 03:37:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856464",
- "username": "redtux",
- "fullName": "Pablo Hörtner (redtux)",
- "avatarUrl": "https://www.gravatar.com/avatar/609316eff93c34d3ed62daa2d30dbaa8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-28 10:37:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856606",
- "username": "palivodatana",
- "fullName": "Таня Паливода (palivodatana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14856606/medium/7cc259b0abd0db950d0976a759006cf9.jpeg",
- "joined": "2021-07-28 15:32:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857374",
- "username": "AlexandraM",
- "fullName": "AlexandraM",
- "avatarUrl": "https://www.gravatar.com/avatar/03efa1ca80db76aa09b28020af3e68bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-29 05:05:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702036",
- "username": "torrodal",
- "fullName": "Alex Torres (torrodal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702036/medium/9d473b100fcd30b4b2c327d5a172a154.png",
- "joined": "2021-04-07 12:28:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857902",
- "username": "ytsdts336",
- "fullName": "ytsdts336",
- "avatarUrl": "https://www.gravatar.com/avatar/20905d99c6ff28b4102d07d51e0af686?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 09:20:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857906",
- "username": "MaltMaster",
- "fullName": "MaltMaster",
- "avatarUrl": "https://www.gravatar.com/avatar/43e7cae952e6f90fff0da05fbb2323ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-29 12:40:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14858450",
- "username": "marcio.vallep",
- "fullName": "Marcio Vallep (marcio.vallep)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14858450/medium/78a1cc0054358247a009cd3993270109.jpeg",
- "joined": "2021-07-30 01:36:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14860374",
- "username": "dai12307614257",
- "fullName": "dai12307614257",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14860374/medium/87c4ff8904e9214a7933b2dc87f8ec4b.jpg",
- "joined": "2021-07-31 05:01:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861524",
- "username": "72784246",
- "fullName": "72784246",
- "avatarUrl": "https://www.gravatar.com/avatar/3fbe91500f10fd7fba47af0d7f7a82e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 03:35:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861744",
- "username": "szabozoltan69",
- "fullName": "Zoltán Szabó (szabozoltan69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861744/medium/f9ef7465cd3b8d070e9c0eb815e0334c.jpeg",
- "joined": "2021-08-01 08:09:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14861960",
- "username": "isaul",
- "fullName": "isaul",
- "avatarUrl": "https://www.gravatar.com/avatar/44895e9c99a8fde7d2fd25632415e024?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 11:13:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862102",
- "username": "ChongmingDu",
- "fullName": "Bill Du (ChongmingDu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862102/medium/23d4d96ff9036edbd983e9f16f3fb990.png",
- "joined": "2021-08-01 12:59:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862460",
- "username": "vdusart",
- "fullName": "vdusart",
- "avatarUrl": "https://www.gravatar.com/avatar/1e5982486a378fca6ee9afaef32c5482?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 19:04:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862718",
- "username": "anh_khoa",
- "fullName": "lilkwa (anh_khoa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862718/medium/17d111d400d4ab22af931aec7e495066.png",
- "joined": "2021-08-02 04:55:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854298",
- "username": "sahlawiz",
- "fullName": "Ahmed Sahlawiz (sahlawiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854298/medium/d74fe68289efd3614f5daeff99c71d00.jpeg",
- "joined": "2021-07-26 18:22:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853674",
- "username": "fixprogram",
- "fullName": "Denis (fixprogram)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853674/medium/bcb233640afd14d2584ebedb9347d249.jpeg",
- "joined": "2021-07-26 08:15:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862854",
- "username": "patrickmelessen85",
- "fullName": "Patrick Melessen (patrickmelessen85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862854/medium/1c9dc7127c050ab9aae8313057085940.png",
- "joined": "2021-08-02 03:27:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850810",
- "username": "esdi",
- "fullName": "dapalek (esdi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850810/medium/7e3a7993a59f2402dd2a2a32c2d92aed.png",
- "joined": "2021-07-23 17:12:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848766",
- "username": "HsuWei",
- "fullName": "Comedy (HsuWei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848766/medium/6212cabff0202100889ef2ca4cfb75f3.png",
- "joined": "2021-07-25 22:16:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848888",
- "username": "kubekow",
- "fullName": "Jakub Owsianik (kubekow)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848888/medium/341f1925fe30ba8c1e7e30647bf4933e.jpeg",
- "joined": "2021-07-22 05:42:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849118",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/6ad4fd22a59d84105c2f97a68d661071?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 14:08:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849142",
- "username": "PaulEmilio",
- "fullName": "Paul Emilio Washington (PaulEmilio)",
- "avatarUrl": "https://www.gravatar.com/avatar/77d019ddd7fc23003aa33ac899fa45b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 10:12:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849192",
- "username": "pradesa",
- "fullName": "pradesa",
- "avatarUrl": "https://www.gravatar.com/avatar/a257bd6a3113924b001afd6e7f51dbbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 10:42:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849436",
- "username": "bbc_h",
- "fullName": "bbc_h",
- "avatarUrl": "https://www.gravatar.com/avatar/954adf8285d5a96d7e58518290e89f8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 14:34:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849836",
- "username": "N0vae",
- "fullName": "N0vae",
- "avatarUrl": "https://www.gravatar.com/avatar/565e2d9a420fd4da204585b8bc0def3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-23 00:03:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850620",
- "username": "kasirajr",
- "fullName": "kasirajr",
- "avatarUrl": "https://www.gravatar.com/avatar/23d880eb1495c6e5706a7b813867abdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-23 13:28:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850666",
- "username": "asahiocean",
- "fullName": "ASAHI OCEAN (asahiocean)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850666/medium/132858901f4f7bf503a23379fa70ebe8.jpeg",
- "joined": "2021-07-23 14:12:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850742",
- "username": "diegordsx",
- "fullName": "Diego Rodrigues (diegordsx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850742/medium/aff2ed82538d1337e6edc75ed81bd679.png",
- "joined": "2021-07-23 15:12:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850830",
- "username": "seoyourlife",
- "fullName": "Maksim Golovanov (seoyourlife)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850830/medium/60eaa4d97d53013df099dcd268e40f8f.jpeg",
- "joined": "2021-07-23 17:15:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853150",
- "username": "deborah.elizabeth.pereira",
- "fullName": "deborah pereira (deborah.elizabeth.pereira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853150/medium/3689e0e41d3b2c7c93aa95dfdebf880b.png",
- "joined": "2021-07-25 22:31:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851016",
- "username": "0633233490a",
- "fullName": "olena godhzh (0633233490a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851016/medium/3d6589dac72d5fe109d7fda192fa93d8.png",
- "joined": "2021-07-23 22:11:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851224",
- "username": "ladybear7817",
- "fullName": "Seanna Price (ladybear7817)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851224/medium/696955991fca8ffd1257ac24ebe8200a.jpeg",
- "joined": "2021-07-24 03:28:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851382",
- "username": "krvtch",
- "fullName": "krvtch",
- "avatarUrl": "https://www.gravatar.com/avatar/acc96f413e7d8f51233a8fe355461e73?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 06:45:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851418",
- "username": "leow1702",
- "fullName": "leow1702",
- "avatarUrl": "https://www.gravatar.com/avatar/d2309e85fa2c541c3de3625e3dc57279?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 07:22:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851694",
- "username": "HediBoughrara",
- "fullName": "HediBoughrara",
- "avatarUrl": "https://www.gravatar.com/avatar/ad2089e2b82fc3ac1966ee67f7ed698e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 12:56:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851800",
- "username": "chrisvu.wabash",
- "fullName": "Anh Vu (chrisvu.wabash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851800/medium/368f50b324d31a54a501da2837bceaad.png",
- "joined": "2021-07-24 14:57:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14852154",
- "username": "bartekbugajski",
- "fullName": "Bartek Bugajski (bartekbugajski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852154/medium/0039a82eff71b9ca0fe6a2d037273d3a.jpeg",
- "joined": "2021-07-25 01:49:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14852550",
- "username": "Hassaqnation",
- "fullName": "Hassaqnation",
- "avatarUrl": "https://www.gravatar.com/avatar/a00b4aadf8f89bf322d359dd96bcbc2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-25 10:34:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14852734",
- "username": "0xEthDuzIt",
- "fullName": "ETHY-E (0xEthDuzIt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852734/medium/da1e9138c30b0fbcfd54f987a7e55328.jpg",
- "joined": "2021-07-25 19:01:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14853042",
- "username": "vanamaziev",
- "fullName": "Иван Мазиев (vanamaziev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853042/medium/ceff19a9fd0e8b88bb59464f5f6632c9.jpeg",
- "joined": "2021-07-25 20:08:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853062",
- "username": "qlan9895",
- "fullName": "qlan9895",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853062/medium/5867c0d015e37fd74ddae64343408f57.jpeg",
- "joined": "2021-07-25 21:06:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862764",
- "username": "Letmein130470",
- "fullName": "Letmein130470",
- "avatarUrl": "https://www.gravatar.com/avatar/3376cdf2bf0e54cf5835afeb714f308f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 01:53:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862916",
- "username": "mbolfova",
- "fullName": "mbolfova",
- "avatarUrl": "https://www.gravatar.com/avatar/3d32d7c204254b0149dadc35770f7eaf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 04:22:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697364",
- "username": "sharipov7ar",
- "fullName": "Albert SHaripov (sharipov7ar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697364/medium/3c5da01c1ab1e3d5a4df70965e8fce50.jpeg",
- "joined": "2021-04-04 16:14:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869450",
- "username": "aivalf",
- "fullName": "aivalf",
- "avatarUrl": "https://www.gravatar.com/avatar/1818f988c6aca3ea5e39203491a8e27e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 22:32:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867990",
- "username": "jasperhart",
- "fullName": "Jasper 't Hart (jasperhart)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867990/medium/ff04b27d870cfd316e6f20cfd87e438a.png",
- "joined": "2021-08-05 16:24:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868070",
- "username": "LauriLankots",
- "fullName": "Lauri Lankots (LauriLankots)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868070/medium/cabd605b1a33066cd8a3113ce533ab92.jpg",
- "joined": "2021-08-05 18:22:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868162",
- "username": "eiytsi",
- "fullName": "Li Jiali (eiytsi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868162/medium/5f378c7ed2d7f4548c38cd7e19d2c445.jpeg",
- "joined": "2021-08-05 21:22:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868384",
- "username": "Minchillo4",
- "fullName": "Minchillo4",
- "avatarUrl": "https://www.gravatar.com/avatar/ac9549c9938032f01ccdf75cdb37ff6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 02:37:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868426",
- "username": "HsuWei00",
- "fullName": "coinex 后台-许威 (HsuWei00)",
- "avatarUrl": "https://www.gravatar.com/avatar/899ba949a894af073f55fb721d794a72?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 03:21:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868458",
- "username": "EiriniGearkidou",
- "fullName": "Eirini Gerakidou (EiriniGearkidou)",
- "avatarUrl": "https://www.gravatar.com/avatar/0473f289979b00a0ee2670e7337eabb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 03:40:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868732",
- "username": "mykola.incognito",
- "fullName": "mykola incognito (mykola.incognito)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868732/medium/f62443bab75b8e6f6e607a4cf3df9a72.png",
- "joined": "2021-08-06 08:20:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868772",
- "username": "AlgoRepublic",
- "fullName": "AlgoRepublic",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868772/medium/91ce05513eaf31e8ae0936223d565edb.png",
- "joined": "2021-08-06 08:57:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868830",
- "username": "Fluida",
- "fullName": "Fluida",
- "avatarUrl": "https://www.gravatar.com/avatar/5cf30c9add2145daaef2294f4a936ee2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-26 09:08:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869408",
- "username": "rezaabbasian",
- "fullName": "rezaabbasian",
- "avatarUrl": "https://www.gravatar.com/avatar/f27f8b419424846d12212697a4cc9752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 21:20:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869618",
- "username": "msbarathi07",
- "fullName": "Barathi M S (msbarathi07)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869618/medium/87fb1a90204c1d83ab5ff43906855789.jpeg",
- "joined": "2021-08-07 03:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867324",
- "username": "Lltranslating",
- "fullName": "Lltranslating",
- "avatarUrl": "https://www.gravatar.com/avatar/d911615bac9a3b8687a2eb9af8988539?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 05:58:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869634",
- "username": "cryptokaaran",
- "fullName": "Crypto King (cryptokaaran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869634/medium/fee08344928ae6b64f18bf3166d46a7c.png",
- "joined": "2021-08-07 04:04:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869640",
- "username": "jiangjun1998",
- "fullName": "jiangjun1998",
- "avatarUrl": "https://www.gravatar.com/avatar/73f67f0e75e3933f7e56a40fc34352d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-07 04:08:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14870048",
- "username": "Sunnyhk",
- "fullName": "Sunnyhk",
- "avatarUrl": "https://www.gravatar.com/avatar/102f6302741e7b4349b06d0fb1bc33c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-07 12:06:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14870630",
- "username": "a8832021",
- "fullName": "a8832021",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14870630/medium/b36889c699124e54c6b781e3ba477726.png",
- "joined": "2021-08-08 00:51:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871056",
- "username": "byrmgrck",
- "fullName": "byrmgrck",
- "avatarUrl": "https://www.gravatar.com/avatar/43047e9f83b37ee78a06796c24a0e82f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 10:15:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871250",
- "username": "Kiepasaaaaa",
- "fullName": "Kiepasaaaaa",
- "avatarUrl": "https://www.gravatar.com/avatar/abd1d53abc1ac7a2913000a934adeff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 14:07:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871326",
- "username": "Tesloxi",
- "fullName": "Tesloxi",
- "avatarUrl": "https://www.gravatar.com/avatar/f51067ea2e8445728a81911be6df4aec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 15:38:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871446",
- "username": "muratgyk52",
- "fullName": "murat geyik (muratgyk52)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14871446/medium/f046198b1fb06109f5173d9d9cc50583.png",
- "joined": "2021-08-08 18:19:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871782",
- "username": "maxbauten",
- "fullName": "maxbauten",
- "avatarUrl": "https://www.gravatar.com/avatar/1e56273adfac5888e3fe8d886431e67a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-09 02:44:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872412",
- "username": "Smokier",
- "fullName": "Станислав Рубашевский (Smokier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872412/medium/9695aeef85e8a0ab85b4864e9e9cf1c8.gif",
- "joined": "2021-08-09 10:37:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872676",
- "username": "VLN_1",
- "fullName": "Vicente Lorente Noguera (VLN_1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872676/medium/8d173c43fac87f0975a31275048360c8.jpeg",
- "joined": "2021-08-09 14:31:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867836",
- "username": "Pardesh",
- "fullName": "Pardesh",
- "avatarUrl": "https://www.gravatar.com/avatar/ae15bc8e88200e364707879af00f076e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 13:23:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867248",
- "username": "asd01248967",
- "fullName": "小宗 (asd01248967)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867248/medium/d2ba89b961a4de27a226fdb3fe324d60.png",
- "joined": "2021-08-05 04:43:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14863046",
- "username": "Dariya.N.",
- "fullName": "Dariya.N.",
- "avatarUrl": "https://www.gravatar.com/avatar/30084612ca4522708638906df410cdac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-23 12:12:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865834",
- "username": "georgi_kovachev",
- "fullName": "georgi_kovachev",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865834/medium/5a384f6c7a697cb88524be5332fc8655.jpg",
- "joined": "2021-09-02 09:14:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14863670",
- "username": "Fjip",
- "fullName": "Fjip",
- "avatarUrl": "https://www.gravatar.com/avatar/8bfdb4c5d5880bc97e561e52d640bfb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 14:29:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14864064",
- "username": "hernanmaidana1988",
- "fullName": "hernan orlando maidana (hernanmaidana1988)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14864064/medium/46975b940c9a2ca74d08dbf12e478132.png",
- "joined": "2021-08-02 22:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14864484",
- "username": "Marie_S",
- "fullName": "Marie_S",
- "avatarUrl": "https://www.gravatar.com/avatar/4e343fca70d9176a4b52fc4db519e737?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 05:40:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14864742",
- "username": "samson7125",
- "fullName": "samson7125",
- "avatarUrl": "https://www.gravatar.com/avatar/c27132d583ad290cc5c6e3db6b760069?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 09:10:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865144",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/f07a1c6153744ecce6fe71e9b206044b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 12:13:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865322",
- "username": "muxelmann",
- "fullName": "Max Zangs (muxelmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865322/medium/8e6a15dc96741d3a6c5b516d7f57fa61.jpeg",
- "joined": "2021-08-03 16:59:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865328",
- "username": "Lostday",
- "fullName": "Manuel Ignacio Caviedes (Lostday)",
- "avatarUrl": "https://www.gravatar.com/avatar/6654ce365e1d6eae2c3928cd70daede3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 17:04:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865340",
- "username": "tolunaydundar",
- "fullName": "Tolunay Dündar (tolunaydundar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865340/medium/66516d0d0ba888ac686b0fcc44b9e321.jpg",
- "joined": "2021-08-03 17:25:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865420",
- "username": "Sergitxin",
- "fullName": "Sergitxin22 (Sergitxin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865420/medium/c93a1a81a1c919979a6da85151c0bf66.png",
- "joined": "2021-08-03 19:19:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865552",
- "username": "Gabi10",
- "fullName": "Gabi10",
- "avatarUrl": "https://www.gravatar.com/avatar/e170911914f7ef59e6cb4ff6a39cfbbf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 22:35:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865892",
- "username": "Nikita210787",
- "fullName": "Никита Сычев (Nikita210787)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865892/medium/e16ba7a43b37ec6937faaabacb2a2db9.jpeg",
- "joined": "2021-08-04 05:18:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867212",
- "username": "haritz_950423",
- "fullName": "Haritz Lopez (haritz_950423)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867212/medium/f2d03c7459424f9158deca133bb7a6db.jpeg",
- "joined": "2021-08-05 04:23:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865958",
- "username": "hasanmumtaz",
- "fullName": "Hasan Mumtaz (hasanmumtaz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865958/medium/cf8ccfc57528109bd94fb6dde9ec456f.jpeg",
- "joined": "2021-08-04 06:03:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866212",
- "username": "ramesh.jetsoft",
- "fullName": "Ramesh R (ramesh.jetsoft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866212/medium/1d8f9a5ae2f70dd83e171ebb1aeb3558.jpeg",
- "joined": "2021-08-04 09:29:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866294",
- "username": "Burinat",
- "fullName": "Burinat",
- "avatarUrl": "https://www.gravatar.com/avatar/167f1a1305f2bb8d6bcf92833ba65233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 10:30:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866558",
- "username": "sjijioff74",
- "fullName": "Sammy KH (sjijioff74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866558/medium/c2ca15a21e982f87474214a24e0fd487.jpeg",
- "joined": "2021-08-04 14:10:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866708",
- "username": "guillea",
- "fullName": "guillea",
- "avatarUrl": "https://www.gravatar.com/avatar/120a638f56532289a422f47622640a47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 17:02:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866774",
- "username": "doutrinador_pela_liberdade",
- "fullName": "doutrinador_pela_liberdade",
- "avatarUrl": "https://www.gravatar.com/avatar/759a0d1056b121e86a9eeb8afcf0ee88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 18:17:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866854",
- "username": "fernandezjoel502",
- "fullName": "joel fernandez (fernandezjoel502)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866854/medium/be2071a62682e4ad2e951060b356942f.png",
- "joined": "2021-08-04 20:29:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866930",
- "username": "CaioRomeiro",
- "fullName": "Caio Romeiro (CaioRomeiro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866930/medium/859f5bcd4dd1d48edfa3a81c0f3c44ae.jpeg",
- "joined": "2021-08-04 22:42:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867004",
- "username": "JRay",
- "fullName": "JRay",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867004/medium/82c9ff6ab75bffb7784d244698b3becc.jpg",
- "joined": "2021-08-05 00:45:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867008",
- "username": "LJian",
- "fullName": "LJian",
- "avatarUrl": "https://www.gravatar.com/avatar/495d44b77952b5132b203781a3911fe0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 00:56:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867044",
- "username": "Sercelik",
- "fullName": "Sercelik",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867044/medium/d25753e6bc7cb3b8ddbf025dac169b4f.png",
- "joined": "2021-08-05 01:48:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848404",
- "username": "Andreccr",
- "fullName": "Andreccr",
- "avatarUrl": "https://www.gravatar.com/avatar/15114d1438719a62279c133fda3e78be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 20:11:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848120",
- "username": "RickardW",
- "fullName": "RickardW",
- "avatarUrl": "https://www.gravatar.com/avatar/9c29e1f13b3ddc4562ed451b24d241e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 12:48:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873046",
- "username": "ycad",
- "fullName": "Cady Zhou (ycad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873046/medium/d0c199ae81e6f1e4778b04692c599483.png",
- "joined": "2021-08-09 23:11:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830514",
- "username": "ny030897",
- "fullName": "ny030897",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830514/medium/29d88484dbe97732ba437fd01889a680.png",
- "joined": "2021-07-07 07:44:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829492",
- "username": "eqs",
- "fullName": "eqs",
- "avatarUrl": "https://www.gravatar.com/avatar/dceec154dad89a26f51d820af3a18413?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 12:30:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829614",
- "username": "hernanleissa",
- "fullName": "Hernan Leissa (hernanleissa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829614/medium/f66cbb15b3c957700429643d2afdfec3.jpeg",
- "joined": "2021-07-06 14:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829686",
- "username": "arnchpt",
- "fullName": "arnchpt",
- "avatarUrl": "https://www.gravatar.com/avatar/2c2c6b4ff07878ac50e02fc7ca2019c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 16:02:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829866",
- "username": "juandavidhern",
- "fullName": "Juan David Hernández (juandavidhern)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829866/medium/bac9c624631bc1b1fa3c2027f042dac5.jpeg",
- "joined": "2021-07-06 19:59:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829970",
- "username": "Basemalamir",
- "fullName": "Basemalamir",
- "avatarUrl": "https://www.gravatar.com/avatar/e42f4488dc723076c970efde4a0da9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 22:56:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830086",
- "username": "Kirschm",
- "fullName": "Kirschm",
- "avatarUrl": "https://www.gravatar.com/avatar/eb37d97855a77d257dfaf8b6daf645d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 01:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830096",
- "username": "LizYang",
- "fullName": "LizYang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830096/medium/1d43d1a252a80e0dbe6f6e6d15f1b46c.jpeg",
- "joined": "2021-07-07 01:22:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830248",
- "username": "KingGame001",
- "fullName": "King Game (KingGame001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830248/medium/0c6cb9850478dd68dd3552998b05eea4.png",
- "joined": "2021-07-07 03:31:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830280",
- "username": "songnchant",
- "fullName": "Changdles K (songnchant)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830280/medium/e544df6876b73ceedb0049774e96c599.png",
- "joined": "2021-07-07 04:02:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830412",
- "username": "Jola_Fraczek",
- "fullName": "Jola_Fraczek",
- "avatarUrl": "https://www.gravatar.com/avatar/f0a2ce70443543befad8c0f0827cb4c4?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 06:15:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830540",
- "username": "Keonez",
- "fullName": "Joe Tribbiani (Keonez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830540/medium/0c57d4c791795b7bcdc9f6775936ef7a.gif",
- "joined": "2021-07-07 08:10:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14828314",
- "username": "164031",
- "fullName": "Aiden (164031)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828314/medium/5d100860df80e1a9c1c8c6990cbefb5f.png",
- "joined": "2021-07-05 15:35:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831082",
- "username": "zaspartylion",
- "fullName": "Zaspał (zaspartylion)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831082/medium/c1b942765f488076e0243beebad3a1ec.gif",
- "joined": "2021-07-21 15:31:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831266",
- "username": "viviteck888",
- "fullName": "viviteck888",
- "avatarUrl": "https://www.gravatar.com/avatar/33b98011ee98621ea6b72ad03b550bf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 20:05:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831322",
- "username": "OrangeEd1t",
- "fullName": "忧郁的紫色毛衣男孩 (OrangeEd1t)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831322/medium/f3b1153c25150521f237fa66fbd336ac.jpeg",
- "joined": "2021-07-07 23:16:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831328",
- "username": "Abdalkreem",
- "fullName": "Abdalkreem",
- "avatarUrl": "https://www.gravatar.com/avatar/0464f83374df1316e6a983369f394063?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 21:57:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831430",
- "username": "markmaksi",
- "fullName": "markmaksi",
- "avatarUrl": "https://www.gravatar.com/avatar/4bb4f33b60109a59a63fb7372d791e38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-08 00:32:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831524",
- "username": "jromerojarj",
- "fullName": "Jonathan Alexander Romero Jimenez (jromerojarj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831524/medium/68cff92987970b4c5ec20248ca726d45.jpeg",
- "joined": "2021-07-08 02:18:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831680",
- "username": "Losy",
- "fullName": "Losy",
- "avatarUrl": "https://www.gravatar.com/avatar/96c20e003b0f6d93f4b909803130b46d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 08:58:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14831696",
- "username": "sajjad.k.btc",
- "fullName": "Sajjad Kadkhodayi (sajjad.k.btc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831696/medium/761047e774f85ccbe49fdf1cbce4a429.jpeg",
- "joined": "2021-07-08 05:33:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832742",
- "username": "LQS_PM",
- "fullName": "LQS_PM",
- "avatarUrl": "https://www.gravatar.com/avatar/424c51f6ba3f1f8aec3787f35cd1d3c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-08 22:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832748",
- "username": "Pablo61",
- "fullName": "halim yılmaz (Pablo61)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14832748/medium/b4c3e5dacc2d9313d11878bb39a965da.jpeg",
- "joined": "2021-07-23 23:51:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14828792",
- "username": "rioobudi",
- "fullName": "Aryo Pambudi (rioobudi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828792/medium/f69fd14bd2aa648696bac9e1eab3f927.jpeg",
- "joined": "2021-07-06 03:12:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14827606",
- "username": "SaraNaum",
- "fullName": "Sara Naumovski (SaraNaum)",
- "avatarUrl": "https://www.gravatar.com/avatar/9067b17d88f498d89f1022c9fa2c0cd1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-17 08:28:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14833546",
- "username": "ItsPapoPlayz",
- "fullName": "ItsPapoPlayz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14833546/medium/e859bbdd14fd0111f9f451a37c352058.png",
- "joined": "2021-08-03 02:06:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824320",
- "username": "2face",
- "fullName": "2face",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824320/medium/408c37c0e08ed56f227d6ff960332de1.jpg",
- "joined": "2021-07-02 07:29:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822216",
- "username": "nrodriguez_tupaca",
- "fullName": "Nicolas Rodriguez (nrodriguez_tupaca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822216/medium/2fc3e2ed870cc52e5227f3e427c170d6.jpeg",
- "joined": "2021-06-30 20:07:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822228",
- "username": "nTaco",
- "fullName": "nTaco",
- "avatarUrl": "https://www.gravatar.com/avatar/38cbc3eeebaf79b33d9901249efad48f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-30 20:25:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822530",
- "username": "krishnagaurav",
- "fullName": "krishnagaurav",
- "avatarUrl": "https://www.gravatar.com/avatar/80cfc37428c1f903133c139927c52fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 03:45:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822732",
- "username": "kingway",
- "fullName": "Jingwei Zou (kingway)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822732/medium/5fbcf45bc14f5cbe8d207e8adee7bfc1.jpeg",
- "joined": "2021-07-01 06:36:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822772",
- "username": "mcmjy",
- "fullName": "mcmjy",
- "avatarUrl": "https://www.gravatar.com/avatar/636f42e141b508c794960ccc28bf0603?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 07:05:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823260",
- "username": "omahs",
- "fullName": "omahs",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg",
- "joined": "2021-07-31 09:49:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823390",
- "username": "bitgalea",
- "fullName": "bitgalea",
- "avatarUrl": "https://www.gravatar.com/avatar/1125e27372dbf2c2f39bd22d7bff7752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 14:56:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823752",
- "username": "Leo500023",
- "fullName": "Leo500023",
- "avatarUrl": "https://www.gravatar.com/avatar/367819555226fe04e92cd96b4e10c772?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 23:15:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824010",
- "username": "rafalaffeier",
- "fullName": "Rafa Laffeier (rafalaffeier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824010/medium/a4281b297e936cd1fadbe8f5740e38ae.jpeg",
- "joined": "2021-07-02 03:28:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824112",
- "username": "Ch3NN",
- "fullName": "Neo Anderson (Ch3NN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824112/medium/863fb88cbd3277a85a52ec0694b50b4f.jpeg",
- "joined": "2021-07-02 04:50:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824370",
- "username": "wholopes",
- "fullName": "wholopes",
- "avatarUrl": "https://www.gravatar.com/avatar/9f5e4a75b583d8871359b17023f3712b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-02 08:11:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14827052",
- "username": "spargwy",
- "fullName": "spargwy",
- "avatarUrl": "https://www.gravatar.com/avatar/eb7d685a05c3711249dd58fef854c9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 17:08:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824790",
- "username": "gaston.celis1",
- "fullName": "Gastón (gaston.celis1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824790/medium/a50c8b20a725e06f7c389e40a4e3a041.png",
- "joined": "2021-07-02 15:06:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824866",
- "username": "Worr",
- "fullName": "Kadir Ozmen (Worr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824866/medium/d9facd000e85e1be46f8d8f667b6f4d7.jpeg",
- "joined": "2021-07-02 16:58:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825340",
- "username": "arctic51",
- "fullName": "arctic51",
- "avatarUrl": "https://www.gravatar.com/avatar/097b4b755c59dbbf55017ad0647c05f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 05:09:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825546",
- "username": "ph4ni",
- "fullName": "Phanindra (ph4ni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825546/medium/34f82ec0a369275b6764b4d12b91cf48.png",
- "joined": "2021-07-03 09:10:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825774",
- "username": "Doktors",
- "fullName": "Doktors",
- "avatarUrl": "https://www.gravatar.com/avatar/ed6d001b522e2a28adaa950be03c1b81?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 12:53:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825852",
- "username": "Gitem",
- "fullName": "Артём Филиппов (Gitem)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825852/medium/cdab2ddead9d860d748e00ba5a67f77e.png",
- "joined": "2021-07-03 14:11:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825962",
- "username": "NasoN",
- "fullName": "Игорь Насон (NasoN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825962/medium/86760c984f9a94f5828f525495f082ab.jpeg",
- "joined": "2021-07-03 16:20:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826230",
- "username": "38704996534",
- "fullName": "38704996534",
- "avatarUrl": "https://www.gravatar.com/avatar/dfbd5c7728106f4b6c46e07f126ce8f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 01:02:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826354",
- "username": "manzin",
- "fullName": "manzin",
- "avatarUrl": "https://www.gravatar.com/avatar/b20136210328d604d9cd396ecb7e012d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 03:53:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826530",
- "username": "Jane.lts",
- "fullName": "Jane.lts",
- "avatarUrl": "https://www.gravatar.com/avatar/03b65d24ba2d88fafd9e576ef0787c96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 06:45:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826754",
- "username": "Pyzur",
- "fullName": "Pyzur",
- "avatarUrl": "https://www.gravatar.com/avatar/11756238cfa917d63996d040b25c8ea2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 10:42:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832782",
- "username": "LQS_BG_Linguist",
- "fullName": "LQS_BG_Linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/6cab534abf8fcb64a00cbaa14521b384?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 00:05:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834010",
- "username": "jace4411",
- "fullName": "guanlonghuang (jace4411)",
- "avatarUrl": "https://www.gravatar.com/avatar/215579e58ee501555706c20bfb05c4ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 06:13:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846810",
- "username": "Mohammedfaq4",
- "fullName": "Mohammedfaq4",
- "avatarUrl": "https://www.gravatar.com/avatar/e49b8112e5456a3293dd7f518bab73ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-20 12:01:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844658",
- "username": "Soulman16",
- "fullName": "Soulman16",
- "avatarUrl": "https://www.gravatar.com/avatar/8147d51da1bfcb240fcc927fce6fa04b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 21:27:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842426",
- "username": "Brijesh_GeetAshok",
- "fullName": "Brijesh GeetAshok (Brijesh_GeetAshok)",
- "avatarUrl": "https://www.gravatar.com/avatar/4332a3cb3ddb2f8f80400c9175924f19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 19:12:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842502",
- "username": "excelaa",
- "fullName": "excelaa",
- "avatarUrl": "https://www.gravatar.com/avatar/831f1e467000356793c95289198ac7bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 19:34:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842776",
- "username": "crayon_chan",
- "fullName": "程乾宇 (crayon_chan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842776/medium/1aeb461b887d1bf88a5bad9bb3bb2cc8.png",
- "joined": "2021-07-17 03:44:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842980",
- "username": "agathadeborja",
- "fullName": "Agatha Andaluz De Borja (agathadeborja)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842980/medium/1178b247eb1cd0b5ac5a275d028f0ad3.jpeg",
- "joined": "2021-07-25 02:33:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844054",
- "username": "Dimitar1512",
- "fullName": "Dimitar Ivanov (Dimitar1512)",
- "avatarUrl": "https://www.gravatar.com/avatar/21544dd242a11c209c548dd3889e9759?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 08:28:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844128",
- "username": "abumalikamr",
- "fullName": "abumalikamr",
- "avatarUrl": "https://www.gravatar.com/avatar/341ead55964ea4cd1cd75ebfd3c3f4f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 09:44:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844258",
- "username": "lincoln019",
- "fullName": "lincoln019",
- "avatarUrl": "https://www.gravatar.com/avatar/72b791ed133af9f4ceab21e3c93547bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 11:56:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844290",
- "username": "kecajemu89",
- "fullName": "Kecaj (kecajemu89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844290/medium/3ebac622b3b983234dda6ae7f1712ec5.gif",
- "joined": "2021-07-18 12:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844420",
- "username": "actgms",
- "fullName": "actgms",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844420/medium/db7256e7422c9fdc1fa99e46436b6b4d.jpeg",
- "joined": "2021-07-18 15:26:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844630",
- "username": "federossotto",
- "fullName": "Federico Rossotto (federossotto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844630/medium/d45be4767bd1a7607afefb86919b908c.jpeg",
- "joined": "2021-08-24 13:29:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844866",
- "username": "PavelM56",
- "fullName": "PavelM56",
- "avatarUrl": "https://www.gravatar.com/avatar/6398b3e46a3e7054b7ca09c59d1ede2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 02:49:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14841924",
- "username": "giulia29",
- "fullName": "Giulia Iuppa (giulia29)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14841924/medium/8491c59d47fdaf576a34ff07a9808c5c.jpg",
- "joined": "2021-07-16 18:29:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845082",
- "username": "overeasyy",
- "fullName": "overeasyy",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845082/medium/c3f88881536bddc4173514c2d6c6103a.png",
- "joined": "2021-07-19 06:37:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845348",
- "username": "JGD",
- "fullName": "Jacobo G. Domínguez (JGD)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845348/medium/633d82cc4cc5c9906dd9e1341ef919f9.png",
- "joined": "2021-07-19 09:50:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845564",
- "username": "Ramiro_ETH",
- "fullName": "Ramiro_ETH",
- "avatarUrl": "https://www.gravatar.com/avatar/3d026f6edc66a9646bb43ce532e5b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 12:43:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845634",
- "username": "andrejmnunes",
- "fullName": "andrejmnunes",
- "avatarUrl": "https://www.gravatar.com/avatar/81251e5f80461de5f05f16e9651c2212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 13:41:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845734",
- "username": "rbovier",
- "fullName": "Ricardo Bovier (rbovier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845734/medium/46bc267ea814c05828315a4ab582dbac.png",
- "joined": "2021-07-19 15:24:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845776",
- "username": "shishiying2001",
- "fullName": "shishiying2001",
- "avatarUrl": "https://www.gravatar.com/avatar/67a325eee876b28070c9c97c364de35d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 16:11:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845846",
- "username": "LaytonBerth",
- "fullName": "Layton Berth (LaytonBerth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845846/medium/33dd43eca062e1472466df8f0d1d1e3f.jpeg",
- "joined": "2021-07-19 17:29:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845960",
- "username": "matusame",
- "fullName": "matusame",
- "avatarUrl": "https://www.gravatar.com/avatar/2ba5acc9f88366ef55d0441d12483c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 20:06:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846010",
- "username": "mfreeman59",
- "fullName": "Kengo,MATSUDA (mfreeman59)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846010/medium/efddb08fc8f1affe72a25cf693c1f947.jpeg",
- "joined": "2021-07-19 21:57:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846468",
- "username": "khanh30125",
- "fullName": "Gia Khánh Phạm (khanh30125)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846468/medium/3749044fc47f1a5aa666bfcc50f7af1d.jpeg",
- "joined": "2021-07-20 06:04:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846664",
- "username": "donny.darco",
- "fullName": "Leon Te (donny.darco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846664/medium/7d61ca2c4b5dc23e2c385b52b51b9cce.jpeg",
- "joined": "2021-07-20 09:05:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842386",
- "username": "rxchard",
- "fullName": "Richard (rxchard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842386/medium/26d2e5d1d9b5f0e6ec25878feb24840b.jpeg",
- "joined": "2021-07-16 16:58:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14841648",
- "username": "LeeTC",
- "fullName": "LeeTC",
- "avatarUrl": "https://www.gravatar.com/avatar/9254f476936dfbb26f5164eafc4d0f74?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 04:05:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834276",
- "username": "ElTitoDG",
- "fullName": "Julián Hinojosa Gil (ElTitoDG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png",
- "joined": "2021-07-10 06:14:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 73
- },
- {
- "user": {
- "id": "14838076",
- "username": "pd.duvnjak",
- "fullName": "Petar Duvnjak (pd.duvnjak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838076/medium/300021775f969ae9e2137cafb3c4b61e.png",
- "joined": "2021-07-13 11:47:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834442",
- "username": "alessiorubicini",
- "fullName": "alessiorubicini",
- "avatarUrl": "https://www.gravatar.com/avatar/3631e7d799f08074696dd507e028c3fd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-10 09:46:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834736",
- "username": "md944524",
- "fullName": "Мальков Дмитрий (md944524)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834736/medium/e414aeb1dcb19c007c4ceb36a471f507.jpeg",
- "joined": "2021-07-10 15:05:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14834740",
- "username": "dim4im379",
- "fullName": "dim4im379",
- "avatarUrl": "https://www.gravatar.com/avatar/76376ed77417c393945243fc0e0a8bf6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-10 15:10:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14835754",
- "username": "Grzegorzcz",
- "fullName": "Grzegorzcz",
- "avatarUrl": "https://www.gravatar.com/avatar/0c2f4f0f96fdf6214acf9928c511cb00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-11 15:48:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14835760",
- "username": "Pineapple010223",
- "fullName": "Pineapple010223",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14835760/medium/36a5126df6f3fab680a105268d03592c.jpg",
- "joined": "2021-07-11 16:14:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14836710",
- "username": "BumbyMoser",
- "fullName": "BumbyMoser",
- "avatarUrl": "https://www.gravatar.com/avatar/6be8a07ece86c0c1579ccf4ba0bcb151?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-12 10:49:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837068",
- "username": "parpok",
- "fullName": "Patryk (parpok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837068/medium/ac82c254eca9f7c56757c56079b775c2.png",
- "joined": "2021-07-12 16:30:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837106",
- "username": "rofis",
- "fullName": "Rofis Elias Filho (rofis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837106/medium/e87698d84d41483de2a57483ff5d9455.jpeg",
- "joined": "2021-07-12 17:08:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837284",
- "username": "PaN-0-1",
- "fullName": "PaN-0-1",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837284/medium/7f1ad04832bb028fe66564804f5326ee.png",
- "joined": "2021-07-12 21:27:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837686",
- "username": "ant.polastri",
- "fullName": "Antonio Polastri (ant.polastri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837686/medium/51b79101860a525d4509fb482f0cc335.jpeg",
- "joined": "2021-07-13 05:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838604",
- "username": "lieolik",
- "fullName": "Olga Shablykina (lieolik)",
- "avatarUrl": "https://www.gravatar.com/avatar/16597afc89da43effc248922ddd94267?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-31 08:49:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840796",
- "username": "Eniko.G",
- "fullName": "Eniko.G",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840796/medium/5803be055343fda6a020e05078f97815.jpg",
- "joined": "2021-07-15 10:35:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838650",
- "username": "sibannaccian",
- "fullName": "Mauricio Serrano Rodriguez (sibannaccian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838650/medium/656027686a316709b3424730ef35fd49.jpeg",
- "joined": "2021-07-13 22:47:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838770",
- "username": "gatyo",
- "fullName": "gatyo",
- "avatarUrl": "https://www.gravatar.com/avatar/5b1fa67f081714fba603d8fdda34227a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 01:33:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838794",
- "username": "JuanB.Mont",
- "fullName": "JuanB.Mont",
- "avatarUrl": "https://www.gravatar.com/avatar/96849b7ff7bc62a4f1c9bebbcfebd42e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 02:20:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838806",
- "username": "CONSEQUENL50",
- "fullName": "CONSEQUENL50",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838806/medium/f1b727400eeeff54d73ab03020db79b3.PNG",
- "joined": "2021-07-25 06:54:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838842",
- "username": "kerimkoca88",
- "fullName": "Kerim Koca (kerimkoca88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838842/medium/fefd07d2e53e2b807c9cadda3a333da6.jpeg",
- "joined": "2021-08-05 07:56:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839218",
- "username": "marianatcl",
- "fullName": "marianatcl",
- "avatarUrl": "https://www.gravatar.com/avatar/771898c1e5d57a152272dae2f2641f20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 07:45:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839310",
- "username": "Crescen.dll",
- "fullName": "Crescen.dll",
- "avatarUrl": "https://www.gravatar.com/avatar/1d706200f0d846e124ed9a2c34ecde96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 09:06:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839804",
- "username": "lyn716",
- "fullName": "Lyn Lu (lyn716)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14839804/medium/256e57264762872cea7bc4a0f921bf0e.jpeg",
- "joined": "2021-07-14 15:48:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840438",
- "username": "Pavel666999",
- "fullName": "Pavel666999",
- "avatarUrl": "https://www.gravatar.com/avatar/689316eabf17212c13f2fbee16df9ee8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-15 05:14:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840592",
- "username": "Antonakak",
- "fullName": "Antonakak",
- "avatarUrl": "https://www.gravatar.com/avatar/dc7e9e9b57cb4ad65063f8aa759afc4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-15 07:59:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840702",
- "username": "EmpirePers",
- "fullName": "Persacho (EmpirePers)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840702/medium/dab9b07237a7db5ed0e7b5a526edeb9d.png",
- "joined": "2021-07-15 09:20:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872906",
- "username": "xiaoxuan.yu1995",
- "fullName": "XIAOXUAN YU (xiaoxuan.yu1995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872906/medium/7fd933b2be02e0bca61ef6840cbef6e0.png",
- "joined": "2021-08-09 18:56:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873098",
- "username": "Nahandiee",
- "fullName": "Nahandiee",
- "avatarUrl": "https://www.gravatar.com/avatar/1362220b514ef8bdd60de2e7ea6cb6f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 00:35:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14921553",
- "username": "bebosihavong69",
- "fullName": "คําแสง สีหาวง (bebosihavong69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14921553/medium/306eedc99ff4d83fe9f5f7ab8967497e.jpeg",
- "joined": "2021-09-14 09:29:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906575",
- "username": "calniski",
- "fullName": "PAULO TIAGO (calniski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14906575/medium/ae89509290e0b36fcdcb54e09012252e.jpeg",
- "joined": "2021-09-02 16:22:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904476",
- "username": "shady_neli98",
- "fullName": "Nelkka Dobrewa (shady_neli98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904476/medium/9094393854d8e690e3ff1870061cdb5f.jpeg",
- "joined": "2021-09-01 07:17:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904502",
- "username": "keslon762",
- "fullName": "Sonho De Jogador (keslon762)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904502/medium/79750cc0fb5d2a1b16f80d91284d485c.jpeg",
- "joined": "2021-09-01 08:01:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904798",
- "username": "HelloYSS",
- "fullName": "fidel pereira (HelloYSS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904798/medium/545f00d30e7c01e5210295f88ef43c9f.png",
- "joined": "2021-09-01 11:17:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905078",
- "username": "cryptoboi21",
- "fullName": "cryptoboi21",
- "avatarUrl": "https://www.gravatar.com/avatar/9f0cbdf8fc9e85ca33cb1952af123cfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 14:46:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905094",
- "username": "Robbie12Lawler",
- "fullName": "Robbie12Lawler",
- "avatarUrl": "https://www.gravatar.com/avatar/9047220ba1bae1ef155706e5c606e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 14:58:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905112",
- "username": "Nightkiller98",
- "fullName": "Nightkiller98",
- "avatarUrl": "https://www.gravatar.com/avatar/c3a4e9b8fa350017f1129547cc95a683?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 15:09:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905348",
- "username": "MIntAP",
- "fullName": "MIntAP",
- "avatarUrl": "https://www.gravatar.com/avatar/c3743f4719855a1c27338db60123f863?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 21:14:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905418",
- "username": "MaxZh1999",
- "fullName": "Max Zheng (MaxZh1999)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14905418/medium/9da232b3ff0b36e5bf47924e0618b290.jpeg",
- "joined": "2021-09-01 22:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905975",
- "username": "Hendrik07",
- "fullName": "Hendrik07",
- "avatarUrl": "https://www.gravatar.com/avatar/4564777ac0df36d91cad47153846aef1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 08:35:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906361",
- "username": "ejpro",
- "fullName": "ejpro",
- "avatarUrl": "https://www.gravatar.com/avatar/f7bd5fcb092763bc4cd3ccb6450e5395?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 13:05:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906669",
- "username": "snt9",
- "fullName": "Santiago Tranchida (snt9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14906669/medium/b2d81e05c56069f9f6106fda93744faf.jpeg",
- "joined": "2021-09-03 10:29:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903964",
- "username": "fujihara_gin",
- "fullName": "Alex H Li (fujihara_gin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903964/medium/26421e3efe6bb9c4b1724f2f31905e13.png",
- "joined": "2021-08-31 20:22:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906765",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/0f77609d8f48c1b372d9f512d7c96f33?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 21:14:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906957",
- "username": "Ezhiee",
- "fullName": "Ezhiee",
- "avatarUrl": "https://www.gravatar.com/avatar/cb51d549c5c45a84862a20fe6f5062d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 01:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14906965",
- "username": "icsense",
- "fullName": "icsense",
- "avatarUrl": "https://www.gravatar.com/avatar/7f92ded79700e4899fd52ef6fdc3d215?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 01:32:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907071",
- "username": "HaiTran",
- "fullName": "Đăng Trần Hải (HaiTran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907071/medium/caa03486c3c1a189a0eb0c71a56702b3.png",
- "joined": "2021-09-03 03:32:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907079",
- "username": "Ayano85",
- "fullName": "Ayano85",
- "avatarUrl": "https://www.gravatar.com/avatar/640e34ede10c1d066f45c5b529790ffb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 03:36:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907087",
- "username": "mortaza.gh",
- "fullName": "mortaza montazery (mortaza.gh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907087/medium/e631317f5c351a9d0440dbbc3ad920e2.jpeg",
- "joined": "2021-09-03 03:48:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907227",
- "username": "CivicLee",
- "fullName": "Civic Lee (CivicLee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907227/medium/1f411053836d29859329adf9d2dc3e8b.jpeg",
- "joined": "2021-09-03 05:13:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907293",
- "username": "jlabardy54",
- "fullName": "James LABARDY (jlabardy54)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907293/medium/c07857d2b995f1e85afc6ffeeb68ca0b.png",
- "joined": "2021-09-03 05:50:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907321",
- "username": "vitalli",
- "fullName": "Віталій Петрів (vitalli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907321/medium/287a90ef0414e5cc3e9b9719a44c47cc.jpeg",
- "joined": "2021-09-03 06:27:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907393",
- "username": "duchoa",
- "fullName": "duchoa",
- "avatarUrl": "https://www.gravatar.com/avatar/d1afd4800fb40064e1b8b1f401db2d93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 07:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904220",
- "username": "crypdove",
- "fullName": "crypdove",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904220/medium/71eb3c509c5148518edd558da2a75c11.jpeg",
- "joined": "2021-09-01 02:42:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903848",
- "username": "titolucho",
- "fullName": "titolucho",
- "avatarUrl": "https://www.gravatar.com/avatar/88b3e2170d7887adbbff6bf8ce5781de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 17:33:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907607",
- "username": "dqduong102",
- "fullName": "Quốc Dương Đàng (dqduong102)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907607/medium/4f8e413bd85cd3aabc332c49bab08fae.jpeg",
- "joined": "2021-09-03 10:19:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901548",
- "username": "ctz0411",
- "fullName": "ctz0411",
- "avatarUrl": "https://www.gravatar.com/avatar/cf42c2743649e5d62fb172dcde84594e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-30 05:21:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14898500",
- "username": "zapper",
- "fullName": "zapper",
- "avatarUrl": "https://www.gravatar.com/avatar/d666ce9e572a0aafbbc14089115e30ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 15:15:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899254",
- "username": "shouki",
- "fullName": "shouki",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14899254/medium/68c57b6a2745f9ffc60fab8463011d87.jpeg",
- "joined": "2021-08-28 08:35:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899686",
- "username": "preetishpriyadarshi",
- "fullName": "Preetish Priyadarshi Samal (preetishpriyadarshi)",
- "avatarUrl": "https://www.gravatar.com/avatar/648e4c1db799f61d97a4b0be7a1969cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 16:40:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899734",
- "username": "a.souza",
- "fullName": "a.souza",
- "avatarUrl": "https://www.gravatar.com/avatar/7e49420b4a5dc7c8ba83e341fbaf42f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 17:42:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899828",
- "username": "MickeyMelendez7",
- "fullName": "MickeyMelendez7",
- "avatarUrl": "https://www.gravatar.com/avatar/ce60ac7fdfb503c810a5ec177105f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 20:02:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900096",
- "username": "Glaprea",
- "fullName": "Glaprea",
- "avatarUrl": "https://www.gravatar.com/avatar/a5cdaab3fc6fa52ccc10c3fd204b8834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-29 02:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900372",
- "username": "h2-so4",
- "fullName": "H2-SO4 (h2-so4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900372/medium/0e2d91393c967253a354ded009b0df61.png",
- "joined": "2021-08-29 08:00:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900694",
- "username": "NagasaiCrowdin",
- "fullName": "NAGASAI BASVOJU (NagasaiCrowdin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900694/medium/c0786b1def4799c4c8a7c6881a66bb08.png",
- "joined": "2021-08-29 13:15:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901100",
- "username": "simakpele65",
- "fullName": "Simon Akpele (simakpele65)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901100/medium/c3354f71aa0f27ef6f54a83b0ea8968d.png",
- "joined": "2021-08-29 21:20:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901400",
- "username": "shimanto2",
- "fullName": "shimanto (shimanto2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901400/medium/05a5f76d6f25c24b20989cc2a8481a6f.jpg",
- "joined": "2021-08-30 03:27:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902040",
- "username": "umarhidayatullah16",
- "fullName": "Umar Hidayatullah (umarhidayatullah16)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902040/medium/873a0fe05a4609c6b051ecec7c6c9508.png",
- "joined": "2021-08-30 11:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903774",
- "username": "rafeed.derhem",
- "fullName": "Rafeed Derhem (rafeed.derhem)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903774/medium/76ff8a5db9cc9c1c4e1cce96c9f20937.jpeg",
- "joined": "2021-08-31 16:32:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902198",
- "username": "sobna123lampa",
- "fullName": "sobna123lampa",
- "avatarUrl": "https://www.gravatar.com/avatar/f51085ad1e1a530e652e6b6ecd1b9296?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-30 13:44:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902574",
- "username": "binsta",
- "fullName": "Binston Sukhael Cardoza (binsta)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902574/medium/51a1aa8b2c3b2dc0cb7d3120355eaf36.png",
- "joined": "2021-08-30 21:11:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902722",
- "username": "Bahmanshiravi",
- "fullName": "Bahmanshiravi",
- "avatarUrl": "https://www.gravatar.com/avatar/544f79ede97fcc5059d151fd5b3a8d93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 00:08:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902778",
- "username": "funny.khaihoan",
- "fullName": "Vũ Hoàn (funny.khaihoan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902778/medium/0a4a1f58a12af3d323e4f1b8e26674c5.jpeg",
- "joined": "2021-08-31 01:42:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902838",
- "username": "xl11sunny",
- "fullName": "xl11sunny",
- "avatarUrl": "https://www.gravatar.com/avatar/67f7e8245031387087e1f6c9e11c1a67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 03:07:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902898",
- "username": "JacobEvans56",
- "fullName": "JacobEvans56",
- "avatarUrl": "https://www.gravatar.com/avatar/6ec4d863a839de81ce1e8cb9c19394bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 04:00:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903096",
- "username": "blue_mrvn",
- "fullName": "blue_mrvn",
- "avatarUrl": "https://www.gravatar.com/avatar/690f1eaca7256dfdc02abdd51ec4f4b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 06:33:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903162",
- "username": "MatheusItagiba",
- "fullName": "MatheusItagiba",
- "avatarUrl": "https://www.gravatar.com/avatar/acdce498ab323bc42157ee44c4176a3f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 07:21:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903184",
- "username": "ryosan-470",
- "fullName": "ryosan-470",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903184/medium/86d4a833f979cd1b865073f61faea0f4.png",
- "joined": "2021-08-31 07:32:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903462",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/2452433cbabc01d17f146a15621a0c2d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 11:31:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903758",
- "username": "Cristescu.mario17",
- "fullName": "Mario Cristescuv (Cristescu.mario17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14903758/medium/46602a4d189ff766191cf8ca302d44b2.png",
- "joined": "2021-08-31 16:01:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907463",
- "username": "MiloWang2048",
- "fullName": "MiloWang (MiloWang2048)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907463/medium/e29974c348a5bf4d5041aaf7123c9125.jpeg",
- "joined": "2021-09-03 08:13:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907925",
- "username": "Aguidi",
- "fullName": "Aguidi",
- "avatarUrl": "https://www.gravatar.com/avatar/bc4858f7c9aaca560986ec21c82e98e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 14:55:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897770",
- "username": "0xmike7",
- "fullName": "0xmike7",
- "avatarUrl": "https://www.gravatar.com/avatar/e1316d7734c2eb6961aac5d35ad9aabe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 03:10:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918011",
- "username": "Fnx777",
- "fullName": "Fnx777",
- "avatarUrl": "https://www.gravatar.com/avatar/eadbd4b0e96b4dced0299a3ef54bac60?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-11 06:50:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916007",
- "username": "clacholoton",
- "fullName": "jose miguel diaz (clacholoton)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916007/medium/ed6d1db6e505a8c896250ae520acabe1.jpeg",
- "joined": "2021-09-09 15:27:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916187",
- "username": "sergiodl",
- "fullName": "Sergio DL (sergiodl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916187/medium/8afc79ecace7f8dffd0c22bd777e4563.jpeg",
- "joined": "2021-09-09 18:58:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916229",
- "username": "yannfurrer33",
- "fullName": "Yann Furrer (yannfurrer33)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916229/medium/ef270c9207fc2731c23a32a1765629a1.png",
- "joined": "2021-09-09 19:53:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916243",
- "username": "Cryptoloewe",
- "fullName": "Sebastian Weber (Cryptoloewe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916243/medium/567fd33456a8b1928e3e000622bdee84.jpeg",
- "joined": "2021-09-09 20:05:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916379",
- "username": "tairov2007",
- "fullName": "tairov2007",
- "avatarUrl": "https://www.gravatar.com/avatar/0f2b48e8bc00c368f5cf7ba77fc2a1e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 23:02:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916719",
- "username": "erndevelop",
- "fullName": "erndevelop",
- "avatarUrl": "https://www.gravatar.com/avatar/616a39f2f590e4d611da9061b6b152bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 05:34:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916763",
- "username": "MuhammadharoonShaukat",
- "fullName": "MuhammadharoonShaukat",
- "avatarUrl": "https://www.gravatar.com/avatar/4c2d21221e2483bea9d18c71516793e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 06:52:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917179",
- "username": "reinholland88",
- "fullName": "Reza Al Farizi (reinholland88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917179/medium/92cd0de32c16fea70c7f00c6b3c2c9e4.PNG",
- "joined": "2021-09-10 12:20:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917397",
- "username": "ijann_",
- "fullName": "ijann_",
- "avatarUrl": "https://www.gravatar.com/avatar/af23c70f2e300427aad5461a15b2dc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 15:48:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917615",
- "username": "G3Bp2ONcJAJ03zq",
- "fullName": "G3Bp2ONcJAJ03zq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917615/medium/c2f490d143480e70240b34aa48ec6f76.jpeg",
- "joined": "2021-09-10 22:24:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918055",
- "username": "caibangtimvoyeu1",
- "fullName": "Nam Bảo (caibangtimvoyeu1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918055/medium/caa90ddfc06eec603e36f31baf208c3e.jpeg",
- "joined": "2021-09-11 07:35:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915807",
- "username": "tsangz189",
- "fullName": "tsangz189",
- "avatarUrl": "https://www.gravatar.com/avatar/f00088ffdad322e46c3e2eb701b4d192?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 12:37:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918183",
- "username": "daniel.granuzzo",
- "fullName": "daniel rocha (daniel.granuzzo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918183/medium/1be9d90ff5dd884c6fd0cb1733d5bb04.png",
- "joined": "2021-09-11 09:56:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918807",
- "username": "ndehhason",
- "fullName": "Emmanuel nde (ndehhason)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918807/medium/b007a42dd06d2ff93a9a08632eaa4fd8.jpeg",
- "joined": "2021-09-11 23:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918847",
- "username": "kryptokurt",
- "fullName": "Mats Westholm (kryptokurt)",
- "avatarUrl": "https://www.gravatar.com/avatar/9e7413a54c5ded7e2b74b662d19960e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 00:54:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918861",
- "username": "ellizii",
- "fullName": "Vitaly Dodonov (ellizii)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918861/medium/486515df3a6f851da0696085093d3dfd.jpeg",
- "joined": "2021-09-12 01:24:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919011",
- "username": "Happyjam",
- "fullName": "Happyjam",
- "avatarUrl": "https://www.gravatar.com/avatar/bc9ecb53c188bca1e034b3af518001ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 05:35:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919277",
- "username": "sam_z2916",
- "fullName": "sam_z2916",
- "avatarUrl": "https://www.gravatar.com/avatar/4642bdccc44c9a9ee33d79f072f297d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-20 09:27:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919827",
- "username": "nbshaoye123",
- "fullName": "nbshaoye123",
- "avatarUrl": "https://www.gravatar.com/avatar/47364ac3d421a00d86b80f51355e4a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 22:20:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920027",
- "username": "destroyerr_",
- "fullName": "destroyerr_",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920027/medium/15024db4a55881fa76c482d44f5d61ac.jpg",
- "joined": "2021-09-13 12:40:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920051",
- "username": "panatagama",
- "fullName": "Panatagama (panatagama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920051/medium/9ba58eec03e143bcd1acbe5b2ecf8250.jpg",
- "joined": "2021-09-13 02:27:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920111",
- "username": "JueK3y",
- "fullName": "JueK3y | Personal Account (JueK3y)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920111/medium/2a49cdd81e2cab1e2190009caa3de573.png",
- "joined": "2021-09-13 03:33:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14921013",
- "username": "eva01",
- "fullName": "eva01",
- "avatarUrl": "https://www.gravatar.com/avatar/756b418e120eb17887951d2af11fc4e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-13 15:03:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915929",
- "username": "KarolekPLRU",
- "fullName": "KarolekPLRU",
- "avatarUrl": "https://www.gravatar.com/avatar/582fd5beae1a041556b1f404fb78aa37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 14:18:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915729",
- "username": "Gae..l",
- "fullName": "Gae..l",
- "avatarUrl": "https://www.gravatar.com/avatar/cbca2ac72780df856d9bfd8434cf3cfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 11:42:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908081",
- "username": "luca.buglioli",
- "fullName": "Luca Buglioli (luca.buglioli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908081/medium/a6d00d2a7406dca4ec0b1c8557607f4d.png",
- "joined": "2021-09-03 17:29:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14910467",
- "username": "Lamrish",
- "fullName": "Lamrish",
- "avatarUrl": "https://www.gravatar.com/avatar/8d4d080145190e6bef22fb909fbef5f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 20:27:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908477",
- "username": "pamir04",
- "fullName": "pamir04",
- "avatarUrl": "https://www.gravatar.com/avatar/d0aa145db5cf0cb5ae0d4f30f63284e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-04 03:33:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908643",
- "username": "babakghf",
- "fullName": "Babak GHF (babakghf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908643/medium/6cdce7510251fb86ad4a1acede92948e.png",
- "joined": "2021-09-04 07:09:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909119",
- "username": "hiroproto",
- "fullName": "hiroproto",
- "avatarUrl": "https://www.gravatar.com/avatar/0c57750d440709808bbd9dea1fc8567b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-04 14:57:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909599",
- "username": "HanaWatanabe",
- "fullName": "HanaWatanabe",
- "avatarUrl": "https://www.gravatar.com/avatar/634865e912a02ed06d5368f8d2d5e7f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 02:18:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14909647",
- "username": "tszar",
- "fullName": "tszar",
- "avatarUrl": "https://www.gravatar.com/avatar/d1a316a5f6951054e644a5eb673d5642?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 03:33:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909801",
- "username": "client2019",
- "fullName": "client2019",
- "avatarUrl": "https://www.gravatar.com/avatar/048b048fbf8560ca3d71782944d0ce9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 06:28:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909943",
- "username": "unique78",
- "fullName": "luis suatrez (unique78)",
- "avatarUrl": "https://www.gravatar.com/avatar/48b57b9bf7922a6079e6812991978db3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 08:38:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909973",
- "username": "Alexandros_Anthoulias-Topas",
- "fullName": "Alexandros_Anthoulias-Topas",
- "avatarUrl": "https://www.gravatar.com/avatar/c3fb487f75153cefbe97dd4623e14deb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 09:11:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14910103",
- "username": "AFSASFG",
- "fullName": "AFSASFG",
- "avatarUrl": "https://www.gravatar.com/avatar/24c21489483cc163fd495ddc28236c2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 11:46:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14910319",
- "username": "KHANAS",
- "fullName": "Khanas Roksolana (KHANAS)",
- "avatarUrl": "https://www.gravatar.com/avatar/d45cb6b71d538c2c6137e22eeeb523f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 17:24:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911441",
- "username": "ameliemorandini",
- "fullName": "Amelie Morandi (ameliemorandini)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911441/medium/b2d0252725ffc62075031e7416bbc5ce.png",
- "joined": "2021-09-06 11:47:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915191",
- "username": "Jack_Lemmon",
- "fullName": "Jack_Lemmon",
- "avatarUrl": "https://www.gravatar.com/avatar/a02b97ccff9c3cd916ef3f631f27e10e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 06:02:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911627",
- "username": "marcoporracin",
- "fullName": "Marco Porracin (marcoporracin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911627/medium/29719c7ebb665982afa5447e382aeb13.jpeg",
- "joined": "2021-09-06 14:37:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911889",
- "username": "Doria98",
- "fullName": "Eduardo Doria (Doria98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911889/medium/6a8c99b54c65c2c66efadaa47f227bb0.jpeg",
- "joined": "2021-09-06 19:04:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911915",
- "username": "mefis_1964",
- "fullName": "mefis_1964",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911915/medium/28cdea1d85b7d18d045cf9510584d9eb.jpg",
- "joined": "2021-09-06 19:53:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14912261",
- "username": "longsirisiri",
- "fullName": "Siri Long (longsirisiri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14912261/medium/8fd57dba42b01d7033191a4939aa57fa.jpeg",
- "joined": "2021-09-07 03:14:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14912999",
- "username": "nemetz83",
- "fullName": "nemetz83",
- "avatarUrl": "https://www.gravatar.com/avatar/1ef6670a20f27964e1859f46824d0774?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 13:44:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14913083",
- "username": "mrivero1981",
- "fullName": "hidroponia y varios (mrivero1981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14913083/medium/fd631c12b7b58d5e48a49b93f4c40ddb.jpeg",
- "joined": "2021-09-07 15:16:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14913319",
- "username": "Endovelicus",
- "fullName": "Endovelicus",
- "avatarUrl": "https://www.gravatar.com/avatar/9372b57e0c923ff6ac66200870b83719?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 20:12:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914189",
- "username": "carloscuadro",
- "fullName": "carloscuadro",
- "avatarUrl": "https://www.gravatar.com/avatar/575a0c9511af3edbc30e63e27eb4c9e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 10:52:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914311",
- "username": "oleglody",
- "fullName": "oleglody",
- "avatarUrl": "https://www.gravatar.com/avatar/88d1f74e942037fae969788836f15005?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 12:50:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914493",
- "username": "jagaroki",
- "fullName": "jagaroki",
- "avatarUrl": "https://www.gravatar.com/avatar/46522ddc46f26f6fbdefcea4773a6f8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 16:22:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914877",
- "username": "alexding",
- "fullName": "Alex (alexding)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14914877/medium/d5cd27d11988bc77c9d6dc68a9aa8ae5.jpg",
- "joined": "2021-09-09 00:39:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14898212",
- "username": "tubelightmediaworks",
- "fullName": "Tubelight Mediaworks (tubelightmediaworks)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14898212/medium/38ce60e4d7795a5a9f5f0e6995aaa96a.png",
- "joined": "2021-08-27 10:02:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897648",
- "username": "Verar093",
- "fullName": "Verar093",
- "avatarUrl": "https://www.gravatar.com/avatar/1c2ad271993412f703c043a0ef663e67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 00:25:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873224",
- "username": "haren724",
- "fullName": "haren724",
- "avatarUrl": "https://www.gravatar.com/avatar/05e8aae1708a6c3b39dbf300192da0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 02:56:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884558",
- "username": "Ethereum.org_Discord-Nuble",
- "fullName": "Ethereum.org_Discord-Nuble",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884558/medium/0094ad75d25cfe8961a0e8318ff5d7f8.jpg",
- "joined": "2021-08-19 05:13:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881144",
- "username": "clarinEX",
- "fullName": "clarinEX",
- "avatarUrl": "https://www.gravatar.com/avatar/e65239ac0398cfd2f9b202e6901b37b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-15 09:23:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881554",
- "username": "amisha-adwani",
- "fullName": "Amisha (amisha-adwani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881554/medium/129e61bb9dafa27ea7bd84ebf2e145bf.jpeg",
- "joined": "2021-08-15 15:18:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881556",
- "username": "m1shyts",
- "fullName": "Михаил Марухно (m1shyts)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881556/medium/8d97850e1cb44414c1fa57a7aec17dcc.png",
- "joined": "2021-08-15 15:02:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881646",
- "username": "constan2305",
- "fullName": "constan2305",
- "avatarUrl": "https://www.gravatar.com/avatar/cf566e9043b091f6632d9260c70fb352?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-15 16:39:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883096",
- "username": "TiGi123",
- "fullName": "Tiago Kühn (TiGi123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883096/medium/a0327baa437ef0b259ab5a7ccbf9ca87.jpeg",
- "joined": "2021-08-27 09:03:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883776",
- "username": "ramirolucasb",
- "fullName": "Ramiro Baladron (ramirolucasb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883776/medium/b7bec81cb51a512c787582e9673a418a.png",
- "joined": "2021-08-17 01:55:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883814",
- "username": "stagbeetle70",
- "fullName": "stagbeetle70",
- "avatarUrl": "https://www.gravatar.com/avatar/818198e176b7deb56dea96661d574716?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 02:47:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883816",
- "username": "Yosuke6",
- "fullName": "Yosuke6",
- "avatarUrl": "https://www.gravatar.com/avatar/829bfc533db531c2fe368a0da6706582?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 02:49:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884086",
- "username": "491415x",
- "fullName": "Dino Kralj (491415x)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884086/medium/eefd2b974d2e5b296cc406dc3065fba0.png",
- "joined": "2021-08-17 06:03:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884278",
- "username": "snoopey",
- "fullName": "Vlad Styopin (snoopey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884278/medium/6b9b5c53c7e1fbcc9ecb49f7171ac225.jpeg",
- "joined": "2021-08-17 08:29:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884566",
- "username": "sparsacolligodutwitter",
- "fullName": "Sparsa Colligo (sparsacolligodutwitter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884566/medium/c1f416e00e569be883a1c6d8f566d117.jpeg",
- "joined": "2021-08-17 11:52:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880416",
- "username": "Adasovec",
- "fullName": "Adasovec",
- "avatarUrl": "https://www.gravatar.com/avatar/30b9c71e72ed76c0ef447e9148bab31b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 18:27:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884570",
- "username": "anastasias",
- "fullName": "anastasias",
- "avatarUrl": "https://www.gravatar.com/avatar/1a4b46d27be66e4c6b4db4b4bbedbd59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 11:24:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884874",
- "username": "AsUsedtobe",
- "fullName": "AsUsedtobe",
- "avatarUrl": "https://www.gravatar.com/avatar/77a168de5071ef93f6ebe9e6bf01a6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 15:09:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14885094",
- "username": "FrancoElicabe",
- "fullName": "FrancoElicabe",
- "avatarUrl": "https://www.gravatar.com/avatar/f0f6b7a6624308ec4392f59fc745f03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 18:28:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14885218",
- "username": "JJacky_Chen",
- "fullName": "JJacky_Chen",
- "avatarUrl": "https://www.gravatar.com/avatar/cf0561071e628000b7d831b5dbb4c033?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 21:21:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886122",
- "username": "anjaymu09",
- "fullName": "Ammaifali (anjaymu09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886122/medium/ab2bf62d80ac24ffb5170b3e72b46aeb.jpg",
- "joined": "2021-08-18 10:15:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886470",
- "username": "pegzerthugger",
- "fullName": "PegzOff TLPV (pegzerthugger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886470/medium/b560016f96838976470e87b2f9077243.png",
- "joined": "2021-08-18 15:47:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886520",
- "username": "doibour",
- "fullName": "Doina Bour (doibour)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886520/medium/8570e9ac2f71b71358b767d4b6b0d8c2.png",
- "joined": "2021-08-18 16:33:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886730",
- "username": "charlyzona",
- "fullName": "Carlos Rodríguez (charlyzona)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg",
- "joined": "2021-08-18 20:18:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886772",
- "username": "LuisNunes",
- "fullName": "LuisNunes",
- "avatarUrl": "https://www.gravatar.com/avatar/76f752d1aca3debd787902689d576b0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-18 21:07:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887590",
- "username": "javajava",
- "fullName": "吉田圭 (javajava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887590/medium/ed8d5742366308e76f6f49506b05a19c.png",
- "joined": "2021-08-19 09:44:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887772",
- "username": "bruderbuck.eth",
- "fullName": "bruderbuck.eth",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887772/medium/38c9634b12b554feef20f4e9f88bf8c1.png",
- "joined": "2021-08-19 12:12:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14880826",
- "username": "igenekim",
- "fullName": "GENE KIM (igenekim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880826/medium/321dd4c0081b9a2246cd14956dd1c36a.png",
- "joined": "2021-08-15 04:30:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880134",
- "username": "andrei.andrianov",
- "fullName": "Andrei Andrianov (andrei.andrianov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880134/medium/f72d9db33a8ea5923123bd6592d36e1c.jpeg",
- "joined": "2021-08-14 13:48:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888200",
- "username": "Juancpx",
- "fullName": "Juan Cabrera (Juancpx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888200/medium/34a366e0eae73122238b508f60d3826e.jpeg",
- "joined": "2021-08-19 20:03:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877334",
- "username": "Ergi18",
- "fullName": "Ergi (Ergi18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877334/medium/4c61f13d89fbae72ff61c0bc2071b6fe.png",
- "joined": "2021-08-12 13:55:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873434",
- "username": "jia591800152",
- "fullName": "贾志恒 (jia591800152)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873434/medium/310e59f9d3810401b3e6eca6968531b5.png",
- "joined": "2021-08-10 06:05:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873848",
- "username": "seaona",
- "fullName": "Mariona (seaona)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873848/medium/b17de5f28e79a1bf040851bf192bc9e1.jpeg",
- "joined": "2021-08-10 08:58:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874054",
- "username": "work.research.closil",
- "fullName": "CLOTILDE SILVA (work.research.closil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14874054/medium/b8c468681861135296f108ae592b801d.png",
- "joined": "2021-08-10 11:17:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874476",
- "username": "DestinyS02",
- "fullName": "DestinyS02",
- "avatarUrl": "https://www.gravatar.com/avatar/65da49aae500edae31768b7b26de9af6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 18:17:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874804",
- "username": "cg123",
- "fullName": "cg123",
- "avatarUrl": "https://www.gravatar.com/avatar/ac933b9d10dd7f9559fdc39e35603357?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-11 02:32:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14875054",
- "username": "Shimpei_Funasaka",
- "fullName": "Shimpei Funasaka (Shimpei_Funasaka)",
- "avatarUrl": "https://www.gravatar.com/avatar/a37a1affe9a222e992b4b45af3d74e5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 20:57:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14875422",
- "username": "T37B60",
- "fullName": "Sergiu Gelu Stoica (T37B60)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875422/medium/2e2cc48eb16214729aa8f09f43fe49ac.jpeg",
- "joined": "2021-08-11 11:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876232",
- "username": "takbass7",
- "fullName": "kittichart Seneewong na ayudhaya (takbass7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876232/medium/e51cba47d7f770c4fee549426ed45e8e.jpg",
- "joined": "2021-08-12 02:54:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876410",
- "username": "dlphin",
- "fullName": "Pița Rareș (dlphin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876410/medium/e48734129bc32a7965b5c2f11bd36339.png",
- "joined": "2021-08-13 07:28:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 28,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14876952",
- "username": "brayosimar",
- "fullName": "Brayan GDesigner (brayosimar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876952/medium/2643e165c521aa4e9df368880d3f9e74.jpeg",
- "joined": "2021-08-12 10:12:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877388",
- "username": "david.contatos",
- "fullName": "David Silva (david.contatos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877388/medium/869bf68958dd3a5adf5d9f49e4546259.jpeg",
- "joined": "2021-08-12 14:34:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880056",
- "username": "hiorst8",
- "fullName": "Hi St8 (hiorst8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880056/medium/97a843bea0c1b053719867e5e17584aa.png",
- "joined": "2021-08-14 12:55:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877478",
- "username": "asrasaatchi1983",
- "fullName": "Asra Saatchi (asrasaatchi1983)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877478/medium/2fe6df5e4ebe022459774a32ca100fd7.gif",
- "joined": "2021-08-12 16:00:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877588",
- "username": "haddadhesam",
- "fullName": "Hesam Haddad (haddadhesam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877588/medium/fd55575b0f149dd88deb161c48e961bf.jpeg",
- "joined": "2021-08-12 17:32:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877704",
- "username": "criticus600",
- "fullName": "Proyecto simpsons (criticus600)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877704/medium/bd3c5212520249269d6954116d5dac69.png",
- "joined": "2021-08-12 20:08:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878048",
- "username": "BINOMFX",
- "fullName": "BINOMFX",
- "avatarUrl": "https://www.gravatar.com/avatar/a6dfc7e15329eadbc61eb905f1bab860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 02:35:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878450",
- "username": "mehdiag",
- "fullName": "mehdiag",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878450/medium/8f0956ecbb3970e1855a5dbc85de7525.jpeg",
- "joined": "2021-10-05 15:56:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878484",
- "username": "FahadOsaimi",
- "fullName": "Fahad Osaimi (FahadOsaimi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878484/medium/a1b78f9090f604c464b910d59796731a.png",
- "joined": "2021-08-13 08:46:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878772",
- "username": "dhencat",
- "fullName": "Dheny Catur Kristanto (dhencat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878772/medium/e1f3cb1f33cdf4ee98d049d1300d43f4.jpeg",
- "joined": "2021-08-13 12:34:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879146",
- "username": "ayala.angel",
- "fullName": "Ángel AB (ayala.angel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879146/medium/d8fad9310dee8ae1ec705e68569ce5f5.jpeg",
- "joined": "2021-08-13 18:41:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879616",
- "username": "ctossaphol",
- "fullName": "Tossaphol Chintanaphan (ctossaphol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879616/medium/2ec654c7bf81fc9fd46d1cafe971d586.jpeg",
- "joined": "2021-08-14 05:55:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879636",
- "username": "joseferde",
- "fullName": "Josef Erde (joseferde)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879636/medium/ddd7c42a87b94cfaf57783881127f849.jpeg",
- "joined": "2021-08-14 06:23:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879724",
- "username": "osamah907",
- "fullName": "osama sport (osamah907)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879724/medium/337078bcc61358a66130f751e67d4b2e.jpeg",
- "joined": "2021-08-14 08:19:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887798",
- "username": "MikhailDemin",
- "fullName": "Mikhail Demin (MikhailDemin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887798/medium/8141d544c3ddd3270fe04f02318d6760.jpeg",
- "joined": "2021-08-19 12:50:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888266",
- "username": "sandrogomes101",
- "fullName": "Sandro Gomes (sandrogomes101)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888266/medium/ec3720087a2af8b90ac90119f026a2f8.png",
- "joined": "2021-08-19 21:46:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897560",
- "username": "LilyX0309",
- "fullName": "Lily Zhou (LilyX0309)",
- "avatarUrl": "https://www.gravatar.com/avatar/7a33ca1183c03e2e9df2ba74129f4e56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 22:37:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896216",
- "username": "kabilan",
- "fullName": "Kabilan (kabilan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896216/medium/624d3b93f0d213ed07b9beef492d09c3.jpeg",
- "joined": "2021-08-26 00:06:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894890",
- "username": "lishubin",
- "fullName": "lishubin",
- "avatarUrl": "https://www.gravatar.com/avatar/79ae6df98209bdfdd5d2c2b22b5675e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 02:54:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895026",
- "username": "anton.naugolnykh",
- "fullName": "Антон Наугольных (anton.naugolnykh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895026/medium/e4f30a2ccce272ca8dfbe444e2ef790f.png",
- "joined": "2021-08-25 06:25:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895372",
- "username": "iosayin",
- "fullName": "iosayin",
- "avatarUrl": "https://www.gravatar.com/avatar/0106b5930267370e77a54b23cd022fec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 09:45:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895456",
- "username": "AayushCurious",
- "fullName": "AayushCurious",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895456/medium/4c25920dcdd629b12dfda520f6f0e718.png",
- "joined": "2021-08-25 10:45:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895552",
- "username": "tutkun123",
- "fullName": "tutkun123",
- "avatarUrl": "https://www.gravatar.com/avatar/f3ea21ea1a9e2d03dc444f6a834df729?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 11:54:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895926",
- "username": "_madmarc",
- "fullName": "Marc (_madmarc)",
- "avatarUrl": "https://www.gravatar.com/avatar/f76a17fda51aafca1ad0530e4a11d9ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 17:48:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895934",
- "username": "zajko",
- "fullName": "zajko",
- "avatarUrl": "https://www.gravatar.com/avatar/a8af8789126977526c620c2bd4b70daa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 18:03:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896038",
- "username": "brunoviniciusdepaularodrigues",
- "fullName": "Bruno Rodrigues (brunoviniciusdepaularodrigues)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896038/medium/459cc98d3903c4055eba1c4c680adefa.jpeg",
- "joined": "2021-08-25 19:46:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896188",
- "username": "Megalo-don",
- "fullName": "Adonis Ferreira (Megalo-don)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896188/medium/f5f379d22d24f76f3a69d28b32c68e08.png",
- "joined": "2021-08-25 22:48:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896196",
- "username": "leoclark",
- "fullName": "leoclark",
- "avatarUrl": "https://www.gravatar.com/avatar/7e9b882a9e897b57b3e28408fba53538?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 23:06:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896320",
- "username": "humairarzmn",
- "fullName": "humairarzmn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896320/medium/2090273c7d30341e9a0cdd0befd332a8.jpeg",
- "joined": "2021-08-26 02:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894676",
- "username": "1597",
- "fullName": "1597",
- "avatarUrl": "https://www.gravatar.com/avatar/2262567db09c4c3987662706e1464deb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-24 20:58:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896336",
- "username": "MattF",
- "fullName": "Matthias Fortin (MattF)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896336/medium/791408bd83317053f067e812d5c937c4.jpeg",
- "joined": "2021-08-26 02:23:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896364",
- "username": "iifjanek",
- "fullName": "iifjanek",
- "avatarUrl": "https://www.gravatar.com/avatar/fe7f57f092bae06c6152fbbdcea3e978?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 03:17:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896404",
- "username": "Gymfreak92",
- "fullName": "Gymfreak92",
- "avatarUrl": "https://www.gravatar.com/avatar/d33350c910d9b7b08a25c6e1c82e7ca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 04:05:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896464",
- "username": "420Monty69",
- "fullName": "420Monty69",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896464/medium/4358f147e415e6175d852389f1075884.png",
- "joined": "2021-08-26 04:58:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896676",
- "username": "ro_ma",
- "fullName": "ro_ma",
- "avatarUrl": "https://www.gravatar.com/avatar/36da58f68d0e68a1f663dfcda4db1540?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 07:54:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896728",
- "username": "ilijarudes84",
- "fullName": "ilijarudes84",
- "avatarUrl": "https://www.gravatar.com/avatar/c78bc289dad4d5c5e1cd3315e7a6f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 08:54:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896794",
- "username": "Paulchemouni",
- "fullName": "Paul Chemouni (Paulchemouni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896794/medium/7c6117fe2c7fda4e2d5cc0c089d1d9e4.jpeg",
- "joined": "2021-08-26 09:30:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896966",
- "username": "Oswaldoge444",
- "fullName": "Oswaldo Gabriel Chacin Padrino (Oswaldoge444)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896966/medium/5e2b5aa7c19a63995192eede5cb187f8.jpeg",
- "joined": "2021-08-26 11:19:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897212",
- "username": "iosadcha",
- "fullName": "iosadcha",
- "avatarUrl": "https://www.gravatar.com/avatar/21196c23e9d447ef70bb9f014aa28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 15:58:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897458",
- "username": "JayU-ML",
- "fullName": "Jay U. (JayU-ML)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14897458/medium/704d24e957b20ff08f8ec0d7360f463d.png",
- "joined": "2021-08-26 20:58:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897468",
- "username": "Gurx",
- "fullName": "Gurx",
- "avatarUrl": "https://www.gravatar.com/avatar/17c04f473116a5288b97d6a7a9e03ed6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 21:02:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894716",
- "username": "mgagahreforman",
- "fullName": "M. Gagah Reforman (mgagahreforman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894716/medium/34bffe30d61288a4b9c13ecc7ab34a23.jpeg",
- "joined": "2021-09-01 09:02:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894620",
- "username": "steveleem",
- "fullName": "steveleem",
- "avatarUrl": "https://www.gravatar.com/avatar/3eda941cb2dd34becfcd420a5b289997?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-24 19:27:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888560",
- "username": "psycoda",
- "fullName": "psycoda",
- "avatarUrl": "https://www.gravatar.com/avatar/19a38afceccf6152a11b3bed6325f4ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-20 03:49:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891070",
- "username": "LinaUlles",
- "fullName": "LinaUlles",
- "avatarUrl": "https://www.gravatar.com/avatar/6da01d04cd125a243608323649042656?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 07:28:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888562",
- "username": "FWW",
- "fullName": "Masato FUJII (FWW)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888562/medium/d82ec0de0a39d7f254ce38fc3840d529.png",
- "joined": "2021-08-20 03:50:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14888806",
- "username": "depuma",
- "fullName": "Ade Pundan Narwisma (depuma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888806/medium/232c643d2e8ba2cd9177e8e1c43b203a.jpeg",
- "joined": "2021-08-20 07:36:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888938",
- "username": "kenyturpohuamani",
- "fullName": "keny turpo huamani (kenyturpohuamani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888938/medium/1ea749d5846031956e5fffe970e3ecb0.png",
- "joined": "2021-08-20 09:33:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889400",
- "username": "Jysor",
- "fullName": "Jysor",
- "avatarUrl": "https://www.gravatar.com/avatar/7994b14c34ee71462d8fd81d164d8911?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-20 15:40:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889450",
- "username": "ghgh349",
- "fullName": "김진섭 (ghgh349)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889450/medium/51c324105656eff21dcdf944c49b95a7.jpeg",
- "joined": "2021-08-20 16:16:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889596",
- "username": "thallesamott",
- "fullName": "Thalles Caramão (thallesamott)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889596/medium/3e50df6563e8389c67e773c0adc8bbc5.jpeg",
- "joined": "2021-08-20 19:23:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890278",
- "username": "Hephaistos357",
- "fullName": "Hephaistos357",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890278/medium/7fd731668afeab1f389fbe0b256f0619.png",
- "joined": "2021-08-21 10:19:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890296",
- "username": "sehitzler",
- "fullName": "Sebastian Hitzler (sehitzler)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890296/medium/404ffc28f8996aa26eb3ce5bdc1e3d3f.png",
- "joined": "2021-08-21 10:43:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890672",
- "username": "Joao-ava",
- "fullName": "João Alex (Joao-ava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890672/medium/99077a8e90b1ef4c7092b55a2fb1dc74.jpeg",
- "joined": "2021-08-28 14:30:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891034",
- "username": "igor.ciolac",
- "fullName": "Igor Ciolac (igor.ciolac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891034/medium/d0954f264a71ebadb2c802cccc7ac38f.png",
- "joined": "2021-08-22 05:38:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891244",
- "username": "vaiahmad",
- "fullName": "Ahmad Rifai (vaiahmad)",
- "avatarUrl": "https://www.gravatar.com/avatar/3d69123493966c573c54413f63909600?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 09:06:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894560",
- "username": "estela.capri",
- "fullName": "Matthew Griffith (estela.capri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894560/medium/4c4495d27a82bbeaef8ac78b3914d43f.png",
- "joined": "2021-08-24 17:48:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891450",
- "username": "ribas.f.h_",
- "fullName": "ribas.f.h_",
- "avatarUrl": "https://www.gravatar.com/avatar/7ec1876396ce91bd4ce693fd395dd124?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 12:42:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891780",
- "username": "GabrielaAndere",
- "fullName": "Gabriela Andere (GabrielaAndere)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891780/medium/27acbd59c98271b2bbb592ad38bc5f87.jpg",
- "joined": "2021-08-23 16:58:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891920",
- "username": "diegomoretti",
- "fullName": "diegomoretti",
- "avatarUrl": "https://www.gravatar.com/avatar/aa14a762e612a6074e0aa17d46c738ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 23:20:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892132",
- "username": "bolingboling",
- "fullName": "bolingboling",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892132/medium/0d05975017e3f5fb32c005f3dca098f5.jpeg",
- "joined": "2021-08-30 22:58:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892722",
- "username": "ejoaquin",
- "fullName": "ejoaquin",
- "avatarUrl": "https://www.gravatar.com/avatar/efa956c0943ab02776447cbc35c9c70e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-23 11:17:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892798",
- "username": "Arkagedon",
- "fullName": "Arkagam A (Arkagedon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892798/medium/1590db87626e9cee6310c63f9d72a16e.jpeg",
- "joined": "2021-08-23 12:20:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893204",
- "username": "alanwang123",
- "fullName": "alanwang123",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893204/medium/a117e332c42088df14b116c428944e52.jpeg",
- "joined": "2021-08-24 18:39:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893344",
- "username": "DonViktor",
- "fullName": "DonViktor",
- "avatarUrl": "https://www.gravatar.com/avatar/c001e03116cbbb2188f36300d15f704f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-23 22:28:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893782",
- "username": "Tango5614",
- "fullName": "王文杰 (Tango5614)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893782/medium/3af733ec86304922fabcf1fa9bb0b26e.png",
- "joined": "2021-08-24 06:38:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893876",
- "username": "nsafari",
- "fullName": "nsafari",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893876/medium/2da09d6d609c8e44fe956ce842822c52.png",
- "joined": "2021-08-24 08:07:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894112",
- "username": "Spuknit",
- "fullName": "Jenner Falconi (Spuknit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894112/medium/c70d81f75092cc062472ff2457d73c09.jpeg",
- "joined": "2021-08-24 11:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14702302",
- "username": "marcdewilde88",
- "fullName": "Marc de Wilde (marcdewilde88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702302/medium/50d692fe707bc1b5b5129a791ea182b5.jpeg",
- "joined": "2021-04-07 16:10:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14555448",
- "username": "CanuckRx8",
- "fullName": "CanuckRx8",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555448/medium/b0bc4b97a4db21b56c812f10192834ea.png",
- "joined": "2020-12-30 03:04:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14701968",
- "username": "19524809969",
- "fullName": "19524809969",
- "avatarUrl": "https://www.gravatar.com/avatar/fe1ea93178dc1f0ebb38817161515aae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-07 11:50:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14258116",
- "username": "Jacerros",
- "fullName": "Jáchym Plánička (Jacerros)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14258116/medium/28a813be37c3a5cf2518e9c406952c57.jpg",
- "joined": "2021-01-06 01:42:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14246454",
- "username": "mohammadkashefi",
- "fullName": "Mohammadkashefi Kashefi (mohammadkashefi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14246454/medium/04d38da0e9f3d315e189ce7cee1cb020.jpeg",
- "joined": "2020-05-07 23:23:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14247158",
- "username": "LeraP",
- "fullName": "LeraP",
- "avatarUrl": "https://www.gravatar.com/avatar/10851c51205218596235b7ae87050c0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-24 07:03:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14248418",
- "username": "4289nakorn6395",
- "fullName": "Nakorn Pornrattanawong (4289nakorn6395)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14248418/medium/b996a0480fee75e906548f8849851290.jpg",
- "joined": "2020-05-09 08:02:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14250810",
- "username": "sharthan",
- "fullName": "Sharthan Simoons (sharthan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14250810/medium/265247c7a05f29a0d5c04c63e5a85e9f.jpeg",
- "joined": "2020-05-11 01:41:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14251100",
- "username": "victoristocrat",
- "fullName": "victoristocrat",
- "avatarUrl": "https://www.gravatar.com/avatar/474c53c882387965de7241f67e22ba61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-11 05:55:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14251480",
- "username": "kate_oren",
- "fullName": "kate_oren",
- "avatarUrl": "https://www.gravatar.com/avatar/2c49f2fa25bb1e26d4a542f8c9c72436?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-11 11:15:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14253108",
- "username": "chervol",
- "fullName": "Volodymyr Cherepanyak (chervol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14253108/medium/fc1083e2e10c3ebe3d5a82a3ec525c5f.png",
- "joined": "2020-05-12 11:34:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14254006",
- "username": "HESI",
- "fullName": "Henri Sirkkavaara (HESI)",
- "avatarUrl": "https://www.gravatar.com/avatar/6ce1d46f74be9c51deedea4f3b2fa522?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-13 01:37:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14254306",
- "username": "ChiKnCoop_",
- "fullName": "ChiKnCoop_",
- "avatarUrl": "https://www.gravatar.com/avatar/f8673cca6292f68d2a0c823c5ec95df2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 14:11:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14254558",
- "username": "mofriy",
- "fullName": "mofriy",
- "avatarUrl": "https://www.gravatar.com/avatar/0a42057e1f7dbba20a96661f945da4ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-13 09:16:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14255228",
- "username": "Sheikhupuri",
- "fullName": "FiazAhmadOfficial (Sheikhupuri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14255228/medium/9f67e4b3a27e08d132193287ca15134e.png",
- "joined": "2020-05-13 17:29:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14257038",
- "username": "heggeis",
- "fullName": "heggeis",
- "avatarUrl": "https://www.gravatar.com/avatar/330b77dbcc1517a1ab444c60cbb440eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-14 19:22:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14262736",
- "username": "Fabricoepe3",
- "fullName": "Fabrizio Coello Perez (Fabricoepe3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14262736/medium/e0f3439d3cb27b607e68182245fc92ca.jpg",
- "joined": "2020-05-21 20:50:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14243680",
- "username": "Stivo",
- "fullName": "Stivo",
- "avatarUrl": "https://www.gravatar.com/avatar/eef31bae91b93f6e8095a3a1fe6a97bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 18:28:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263150",
- "username": "uliana.didych",
- "fullName": "Uliana Didych (uliana.didych)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263150/medium/9db80e6f09691536123f44762cc9429c.jpeg",
- "joined": "2020-08-27 12:24:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263290",
- "username": "UArslan",
- "fullName": "UArslan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263290/medium/f5d3394ec40bd808ab520f84833e31c5.jpg",
- "joined": "2021-01-20 02:03:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263850",
- "username": "pswu11",
- "fullName": "pswu11",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14263850/medium/05b1fe1f2abb5fd9c1b072e25a152aa1.jpg",
- "joined": "2020-05-19 10:25:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14263922",
- "username": "yashasvi_yc7",
- "fullName": "yashasvi_yc7",
- "avatarUrl": "https://www.gravatar.com/avatar/c519ba215bd33a1bbd24c307f7459f85?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-19 10:59:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14264524",
- "username": "pwn0",
- "fullName": "techieanant (pwn0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14264524/medium/b4d22cc388cc51e81c6e7dd801c38b78.jpeg",
- "joined": "2020-05-19 19:16:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14265346",
- "username": "1789frn",
- "fullName": "1789frn",
- "avatarUrl": "https://www.gravatar.com/avatar/2887373c7c2342c4e1518046b8bd4483?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-26 12:09:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14265548",
- "username": "Sanilawan46",
- "fullName": "Sanilawan46",
- "avatarUrl": "https://www.gravatar.com/avatar/e5c20b357cf83e0c147a9c574d87b2de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-20 10:41:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14265902",
- "username": "347720",
- "fullName": "David Husák (347720)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14265902/medium/134ecdbceb81b461a0de9212b6d361e5.jpeg",
- "joined": "2020-05-20 14:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14266778",
- "username": "Causal1ty",
- "fullName": "Causal1ty",
- "avatarUrl": "https://www.gravatar.com/avatar/f0353cdb74175f1f3c05d8462b3d87b0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-21 07:19:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14268970",
- "username": "Coinder",
- "fullName": "Coinder",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14268970/medium/480381094f413bb6119d3852fb2c22a8.png",
- "joined": "2020-05-22 14:37:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14270554",
- "username": "Ravidin",
- "fullName": "Ravidin",
- "avatarUrl": "https://www.gravatar.com/avatar/5deca8838108d6994c6c1ca3a0f9a1d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-30 08:03:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14270636",
- "username": "elijose55",
- "fullName": "Eli Jose (elijose55)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14270636/medium/8c730bd4a4b8b15141241de2b42b1b96.png",
- "joined": "2020-05-23 19:56:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14245260",
- "username": "phichayut_N",
- "fullName": "Phichayut Ngoennim (phichayut_N)",
- "avatarUrl": "https://www.gravatar.com/avatar/306a9b5263f98bbabfa9bdd42f265133?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-07 04:48:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242960",
- "username": "AlexMetz",
- "fullName": "AlexMetz",
- "avatarUrl": "https://www.gravatar.com/avatar/e80ce0da4206ae158ca9e373977ca803?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 11:42:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14272058",
- "username": "bmilesp",
- "fullName": "Brandon Plasters (bmilesp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14272058/medium/23be9b2dc3d716b1c771132246c8788c.jpeg",
- "joined": "2020-05-24 23:26:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14228346",
- "username": "diana.oliinyk",
- "fullName": "Діана Борисівна Олійник (diana.oliinyk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14228346/medium/d9555d51d1ab043ffe811905d6b579ad.jpeg",
- "joined": "2020-04-30 05:45:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14220368",
- "username": "MarkZimmerman",
- "fullName": "Mark Zimmerman (MarkZimmerman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220368/medium/088bd08235c837cbec0b48fab0a9d90e.jpg",
- "joined": "2021-10-22 08:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14220392",
- "username": "ChihChengLiang",
- "fullName": "Chih Cheng Liang (ChihChengLiang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220392/medium/bc9a0361c42eb9f4e64fb8b05b8df8b5.jpeg",
- "joined": "2021-10-09 04:42:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14221550",
- "username": "bhramars",
- "fullName": "bhramars",
- "avatarUrl": "https://www.gravatar.com/avatar/4019a0e30ec069a1aedd818c665c0b84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-23 00:15:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14222550",
- "username": "Anthony.Albertorio",
- "fullName": "Anthony Albertorio (Anthony.Albertorio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14222550/medium/cad8582d15649b7fd3554bb6b9b2d4b2.jpeg",
- "joined": "2021-01-05 10:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14223022",
- "username": "Svennies",
- "fullName": "Svennies",
- "avatarUrl": "https://www.gravatar.com/avatar/1aecdf188e4bbe1a09337f4dcf4caec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-23 20:14:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14223422",
- "username": "Tquintero",
- "fullName": "Tomas Quintero (Tquintero)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14223422/medium/4dc704a8cdf6f34719fec8d794700484.jpg",
- "joined": "2020-04-24 03:03:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14224706",
- "username": "mbogatekin",
- "fullName": "mbogatekin",
- "avatarUrl": "https://www.gravatar.com/avatar/b0961f34d8217d18c5b21c2c78f0e81c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-04 17:35:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14225506",
- "username": "hosegawa",
- "fullName": "Zlatko Divjakovski (hosegawa)",
- "avatarUrl": "https://www.gravatar.com/avatar/f02bfe0e0331e7f625e0c36b6c5f81d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-25 09:53:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14227150",
- "username": "vidhyanand",
- "fullName": "Vidhyanand Cs (vidhyanand)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227150/medium/105fd3bc6a1a8f005dcb0b64a03d22a6.jpg",
- "joined": "2020-04-26 13:12:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14227432",
- "username": "JustCaptcha",
- "fullName": "Albert (JustCaptcha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227432/medium/3c87c50e7fdf0a9933ddc3a7c41b7ac8.png",
- "joined": "2020-04-26 19:47:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14228158",
- "username": "Inna_Dubitska",
- "fullName": "Inna_Dubitska",
- "avatarUrl": "https://www.gravatar.com/avatar/d1c80ddfa24b20a6475dce2f4c758d2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-29 09:45:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14228166",
- "username": "Viktoriia_Zelinska",
- "fullName": "Viktoriia_Zelinska",
- "avatarUrl": "https://www.gravatar.com/avatar/662756ae14fd7fd08f0c97de30ba64b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-29 09:47:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14230346",
- "username": "GiuliaTranslated",
- "fullName": "GiuliaTranslated",
- "avatarUrl": "https://www.gravatar.com/avatar/bd4ead8716afe8875c98fe671f3e1ede?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 09:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242780",
- "username": "ddp101",
- "fullName": "Desh Deepak (ddp101)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14242780/medium/c4de74d741a45d01bf651d6b8c5960c2.jpeg",
- "joined": "2020-05-05 21:30:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14230432",
- "username": "Hermos",
- "fullName": "Marija Grinevičiūtė (Hermos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14230432/medium/c78f61962f97f11d7a3c29d288d493c2.jpg",
- "joined": "2020-04-28 11:40:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14231140",
- "username": "hwwhww",
- "fullName": "hwwhww",
- "avatarUrl": "https://www.gravatar.com/avatar/b7558e247c7eaaa8939d070481cee5ce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-28 22:52:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14231160",
- "username": "twkgau",
- "fullName": "twkgau",
- "avatarUrl": "https://www.gravatar.com/avatar/78fa372c5283a44f48b49b0cbcf4bd42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-28 23:17:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14233172",
- "username": "oriolfp",
- "fullName": "oriolfp",
- "avatarUrl": "https://www.gravatar.com/avatar/7e72a02548d1af98f74c8226f3221afe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-29 14:46:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14234914",
- "username": "BonieC",
- "fullName": "Bonie Jung (BonieC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14234914/medium/2965f8f4a58a9c35331f578a5c787c07.jpg",
- "joined": "2020-04-30 14:57:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14237540",
- "username": "MeganHo",
- "fullName": "MeganHo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14237540/medium/de8ae52ffc3474771c2b2fef499f5204.png",
- "joined": "2020-05-02 18:40:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14238712",
- "username": "akadende",
- "fullName": "akadende",
- "avatarUrl": "https://www.gravatar.com/avatar/ca05dc4d8c026f971514e260171b99b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 14:25:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14238874",
- "username": "Arcy22",
- "fullName": "Arcy22",
- "avatarUrl": "https://www.gravatar.com/avatar/40a32cbb753b3e7be14d932e42c7a1ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-03 11:07:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14239070",
- "username": "Berningheavy",
- "fullName": "Berning Heavy (Berningheavy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14239070/medium/8df8094279cdd6144c8335815e88cc0b.jpg",
- "joined": "2020-06-10 05:08:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14241142",
- "username": "LudiZHANG",
- "fullName": "Ludi (LudiZHANG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14241142/medium/7018d7959237cd0b1356ac97198316f9.jpg",
- "joined": "2021-05-05 17:14:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242124",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c233975a2d7b16086d437e0b08fed481?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-05 11:13:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14242442",
- "username": "Phlinq",
- "fullName": "Phlinq",
- "avatarUrl": "https://www.gravatar.com/avatar/714b519cc703326a83bc486b9b61232c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-05 15:36:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14271416",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/a3a64c672988a891ab04a0df4d546c51?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-24 14:45:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14274478",
- "username": "LQS_NO_linguist",
- "fullName": "LQS_NO_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/77921a1d767de0fcdf033d0e5f3640ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-26 08:56:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14219550",
- "username": "Liang_liang",
- "fullName": "Liang_liang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14219550/medium/a095641e3396148666fb374bd2084728.jpeg",
- "joined": "2020-04-21 22:46:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14329762",
- "username": "lixingnan5",
- "fullName": "李幸男 (lixingnan5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14329762/medium/7428604bb37ef36b8f8425ca4b9daaa2.jpg",
- "joined": "2020-07-03 14:23:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14313472",
- "username": "ntotao",
- "fullName": "ntotao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14313472/medium/168d8b10fa9a4eb88fa80f88a355138c.png",
- "joined": "2021-03-23 11:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14315676",
- "username": "abdullah55522210",
- "fullName": "عبدالله الرشيدي (abdullah55522210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14315676/medium/9da9976ff48731cafe59b1cea0e6cd71.jpeg",
- "joined": "2020-08-28 18:13:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14317146",
- "username": "prk2020",
- "fullName": "prk2020",
- "avatarUrl": "https://www.gravatar.com/avatar/63bb17d02e8d09690905276b54cb2b7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-23 21:37:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14318198",
- "username": "soda.sa.beer",
- "fullName": "AREE Khongcharoen (soda.sa.beer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14318198/medium/5d6d03855d1233029efd7b39b7d09111.jpeg",
- "joined": "2020-12-09 03:42:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14320650",
- "username": "muratboy",
- "fullName": "Murat Boy (muratboy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320650/medium/563cf8bdc4cfd02d50c0b0d53706022b.jpeg",
- "joined": "2020-07-06 18:09:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14321408",
- "username": "Rambhawan",
- "fullName": "Rambhawan",
- "avatarUrl": "https://www.gravatar.com/avatar/694085c9fd3ad62bb5d234e5f2f45765?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-27 00:49:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14321912",
- "username": "Karthik_Bokkesam",
- "fullName": "karthikbokkesam (Karthik_Bokkesam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14321912/medium/4c7b38ce2c5dd76a8b07385ada51be97.png",
- "joined": "2020-06-27 11:36:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14322244",
- "username": "tattooist2505",
- "fullName": "Дмитрий Шкорин (tattooist2505)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14322244/medium/9b37a8b636bf42882642aa974b77f3a5.jpeg",
- "joined": "2020-07-01 01:43:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14324146",
- "username": "hebe_11",
- "fullName": "hebe_11",
- "avatarUrl": "https://www.gravatar.com/avatar/dc093274b86170d71e572632af3d7549?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-29 08:47:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14324304",
- "username": "hsinwen.wu",
- "fullName": "Hsin-Wen Wu (hsinwen.wu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14324304/medium/9251680c550511978eb4f5e1569185d6.jpeg",
- "joined": "2020-06-29 10:53:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14326452",
- "username": "LQS_LT_linguist",
- "fullName": "LQS_LT_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/76452e8fac12178e2af8ff8a35797771?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-01 03:29:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14328968",
- "username": "Tortolala",
- "fullName": "Angel Tórtola (Tortolala)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14328968/medium/1e363ca67b12939c95d5065425807ad0.jpeg",
- "joined": "2020-07-02 23:58:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14331852",
- "username": "keepsmile9735",
- "fullName": "Ehh BpakKau Hott (keepsmile9735)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14331852/medium/35e819d1e0f4934f8a96f32b0cda738c.jpeg",
- "joined": "2020-07-05 14:28:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312798",
- "username": "tabarca",
- "fullName": "tabarca",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312798/medium/5489a2aa359edfac235ad14726adcbb0.jpg",
- "joined": "2020-06-20 12:53:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14331932",
- "username": "mikolllll",
- "fullName": "KoxuXD (mikolllll)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14331932/medium/e36fec0c7340635e3546884bb044489f.png",
- "joined": "2020-07-05 16:43:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14332116",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c8613501ad108fc813172cd1e428ab3b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-05 19:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14333546",
- "username": "mdyousuf9436",
- "fullName": "ইউছফ ইউছফ (mdyousuf9436)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14333546/medium/a9ad50ccf02563e002fb207cc0434133.jpeg",
- "joined": "2020-07-30 09:02:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14336316",
- "username": "nigel_aniban06",
- "fullName": "Aniban Naigel (nigel_aniban06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14336316/medium/2aa7fab2cfceee21a1f764951e940680.jpeg",
- "joined": "2020-07-09 01:55:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14337788",
- "username": "fedosey8",
- "fullName": "Алексей Савельев (fedosey8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14337788/medium/504fb8aaebab538a9717314772507710.png",
- "joined": "2021-05-02 21:08:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14338040",
- "username": "godra9",
- "fullName": "godra9",
- "avatarUrl": "https://www.gravatar.com/avatar/286d3389fd701e3dd31cae7ffa3d1870?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 10:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14339720",
- "username": "eltonbsousa",
- "fullName": "Elton Sousa (eltonbsousa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14339720/medium/bc7ec6601a6f1d6e011eb064d31520dc.jpg",
- "joined": "2020-08-06 22:26:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14339812",
- "username": "KuBeL",
- "fullName": "KuBeL",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14339812/medium/13dfffbb30ab4ec8af8635635d9be3b9.jpg",
- "joined": "2021-01-30 14:27:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14340230",
- "username": "sivasakthivel.ss9",
- "fullName": "Sivasakthivel (sivasakthivel.ss9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14340230/medium/86f1bb9fd8307475f467bec86d3ed22c.jpg",
- "joined": "2020-07-12 12:05:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14342808",
- "username": "bharathpgp",
- "fullName": "bharathpgp",
- "avatarUrl": "https://www.gravatar.com/avatar/30226809aab99cbe344ae1c0e460eb0d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-14 13:37:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14345468",
- "username": "manticorevault",
- "fullName": "manticorevault",
- "avatarUrl": "https://www.gravatar.com/avatar/333bf64fecf3cd124d875b445360bc65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-16 13:02:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14345994",
- "username": "herman90sidra",
- "fullName": "Herman Sidra (herman90sidra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14345994/medium/256b0667339ff6b587fefce7bf923937.jpeg",
- "joined": "2020-07-17 02:47:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312806",
- "username": "PoPure",
- "fullName": "สมรรถณพ ทองดี (PoPure)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312806/medium/5c2569402581dea5e30db1e0f8fbc76e.jpg",
- "joined": "2020-06-20 13:15:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312764",
- "username": "Rovio",
- "fullName": "Rovio",
- "avatarUrl": "https://www.gravatar.com/avatar/6b4049a6622dc11793f89c419d76dcc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-07 16:33:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14274492",
- "username": "alexander.lysenko",
- "fullName": "Alexander Lysenko (alexander.lysenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14274492/medium/b4f4de8fa9091b8949ab83d81e16c8bd.jpeg",
- "joined": "2020-05-26 09:03:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289162",
- "username": "viswanathkgp12",
- "fullName": "Viswanath (viswanathkgp12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289162/medium/aef493424354f36254809317dbb62de1.png",
- "joined": "2020-06-03 13:51:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14274852",
- "username": "NikeEend",
- "fullName": "NikeEend",
- "avatarUrl": "https://www.gravatar.com/avatar/4dba24457f3aaeada0ee431b881064cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-26 12:00:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14275472",
- "username": "solehsetiawan4987gmai.com",
- "fullName": "S setiawan (solehsetiawan4987gmai.com)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14275472/medium/38b43c4a4b8f4869574c444575dc6039.gif",
- "joined": "2020-05-26 15:06:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14275888",
- "username": "mariewagnerova9",
- "fullName": "Marie Wagnerova (mariewagnerova9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14275888/medium/67bf5b9b0627cb2058e4901f298707f5.jpg",
- "joined": "2020-05-26 18:16:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14279850",
- "username": "GROOT.001",
- "fullName": "GROOT.001",
- "avatarUrl": "https://www.gravatar.com/avatar/b81f6a4e403736d7404c2a86f4594a5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-07 10:23:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14283246",
- "username": "bitcardo",
- "fullName": "Ricardo Carrasco (bitcardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14283246/medium/391b9d56cdeca52c3182f89ff57ea712.jpg",
- "joined": "2020-05-30 23:24:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14283374",
- "username": "diogojpina",
- "fullName": "Diogo Pina (diogojpina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14283374/medium/bb727596b30fbd278195918b065cb209.jpeg",
- "joined": "2020-06-01 14:12:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14284844",
- "username": "saeidhobshoar",
- "fullName": "Saeid Hob Shoar (saeidhobshoar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14284844/medium/937874e5ccfdc5e01f53b075dc5431ed.jpeg",
- "joined": "2020-07-17 05:16:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14284870",
- "username": "saiharsha_b",
- "fullName": "saiharsha_b",
- "avatarUrl": "https://www.gravatar.com/avatar/1929a916f567afa637913b7c92537d57?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-31 23:09:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14286398",
- "username": "Fern1992",
- "fullName": "Fern1992",
- "avatarUrl": "https://www.gravatar.com/avatar/bef03871d4e39b2c8db0474329233c77?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-01 20:26:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14286930",
- "username": "KenzYfan37",
- "fullName": "Ксения Шаборкина (KenzYfan37)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14286930/medium/69a94872fdbcee3ec39ffa3930445630.jpeg",
- "joined": "2020-06-02 08:44:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14287002",
- "username": "ferenc67",
- "fullName": "ferenc67",
- "avatarUrl": "https://www.gravatar.com/avatar/e793075f1661cf325f7ba049817258e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-02 05:51:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14288256",
- "username": "relaxdon",
- "fullName": "relaxdon",
- "avatarUrl": "https://www.gravatar.com/avatar/f4167adbf01c393371ad0be92733a71b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-03 02:40:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289548",
- "username": "Aimsbiz",
- "fullName": "Aimsbiz",
- "avatarUrl": "https://www.gravatar.com/avatar/83a784c25350e2db35f49b9f7f21d0fd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-03 19:16:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14312562",
- "username": "ValentinDiscord",
- "fullName": "Valentin (ValentinDiscord)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14312562/medium/d65ab707acfea5a7acda465bd6b57a49.gif",
- "joined": "2021-01-17 10:04:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289592",
- "username": "justaspauser",
- "fullName": "Eduardo Gutierrez (justaspauser)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289592/medium/7d255374ccf7df84b6367ee880659fc7.png",
- "joined": "2021-02-22 23:10:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14289608",
- "username": "ciko1706",
- "fullName": "ciko1706",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14289608/medium/0fa7056377777d1081cf061129ffc332.png",
- "joined": "2020-06-03 20:31:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14290942",
- "username": "abhinavmir",
- "fullName": "abhinavmir",
- "avatarUrl": "https://www.gravatar.com/avatar/064ce2e5276115a7f4435299d5367801?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-04 16:54:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14291898",
- "username": "yc_93",
- "fullName": "Jordi Chu (yc_93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14291898/medium/0421ae76ef5b3e3f839b0c93a745f6c8.jpeg",
- "joined": "2020-06-05 09:42:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14294122",
- "username": "kaungkinnhninpwint",
- "fullName": "Kaungkinn Hninpwint (kaungkinnhninpwint)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14294122/medium/cf09dbb81e1cfad68d23f82b8a746730.jpg",
- "joined": "2020-06-06 23:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14294584",
- "username": "punalurchandrasekharan",
- "fullName": "Punalur Chandrasekharan (punalurchandrasekharan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14294584/medium/ca2e462de78ac8c84afe9f13e2edfa9c.jpeg",
- "joined": "2020-06-07 08:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14294594",
- "username": "LQS_MLIN_linguist",
- "fullName": "LQS_MLIN_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/7eb92f37b99e62fc4a247eb58e8359bd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-07 08:49:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14297416",
- "username": "juampigilsola",
- "fullName": "juampigilsola",
- "avatarUrl": "https://www.gravatar.com/avatar/c604008c58573b0a5b7c53bd375a7854?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-13 10:47:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14303752",
- "username": "keselekpermen69",
- "fullName": "Mr.Miss (keselekpermen69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14303752/medium/2d8787a66e39d8bda280fa193c5c9f1c.jpg",
- "joined": "2021-05-13 06:54:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14305512",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/18c25951acaf46a3f28dc8244ee11ca8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-18 10:26:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14305944",
- "username": "ryancordell",
- "fullName": "ryancreatescopy (ryancordell)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14305944/medium/fe56ee07cd23d026660648318c243bfe.jpeg",
- "joined": "2020-06-15 12:03:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14306622",
- "username": "navya_teja",
- "fullName": "navya_teja",
- "avatarUrl": "https://www.gravatar.com/avatar/7b9c039f4022ec3998e965caee5b1e50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-16 01:11:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14307842",
- "username": "tiagomesquita",
- "fullName": "Tiago Mesquita (tiagomesquita)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14307842/medium/286c5d14d3436b1f58cb218e781f24cc.PNG",
- "joined": "2021-01-23 19:03:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14220136",
- "username": "Colinh",
- "fullName": "Colinhl8 (Colinh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14220136/medium/e54405e5092398ddcabc9e6c84c757cf.jpg",
- "joined": "2020-04-22 05:48:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14218736",
- "username": "offcode",
- "fullName": "Adam Schmideg (offcode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14218736/medium/a4438c582e6702dd1d8fda820d0eaacf.jpeg",
- "joined": "2020-04-21 11:44:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14348910",
- "username": "reddynagendra2000",
- "fullName": "Reddy Nagendra Kola (reddynagendra2000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14348910/medium/c7841b89c57d45ab87d0b344bbe422e7.jpeg",
- "joined": "2020-07-20 00:50:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14140949",
- "username": "sendrosand",
- "fullName": "sendrosand",
- "avatarUrl": "https://www.gravatar.com/avatar/9a1c63f4710562c5073813134e7bf39a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-01 14:33:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14133051",
- "username": "overweight305",
- "fullName": "overweight305",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14133051/medium/67b22623472fbcd3604eecbcd547821a.png",
- "joined": "2020-02-24 12:28:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14134879",
- "username": "admin34",
- "fullName": "admin34",
- "avatarUrl": "https://www.gravatar.com/avatar/0f683cfbd927d4187262173a2f7808c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-25 19:58:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14135743",
- "username": "LQS_PTPT_linguist",
- "fullName": "LQS_PTPT_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/18f2e0efe3821c96603232e53d4fae82?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-26 10:40:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136073",
- "username": "daylimate",
- "fullName": "Daylimate r (daylimate)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136073/medium/fcebc001e053aae55f2f3c871907003d.jpg",
- "joined": "2020-02-26 16:57:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136377",
- "username": "ftureleo",
- "fullName": "ftureleo",
- "avatarUrl": "https://www.gravatar.com/avatar/201d0aaf8c279e2413d3e05c2081e65b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-27 18:06:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136535",
- "username": "HolyMoly",
- "fullName": "Sun Glasses (HolyMoly)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136535/medium/326620bd5f24578d4fc8c9d322497660.jpg",
- "joined": "2021-03-21 04:51:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136921",
- "username": "ttuan2007",
- "fullName": "Jack Tran (ttuan2007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14136921/medium/c1f71489f59cbd61c70260fd74ce8092.jpeg",
- "joined": "2020-02-27 08:56:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136969",
- "username": "LQS_TR_linguist",
- "fullName": "LQS_TR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/836d07f2a54868c7738a512b955e306e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-27 09:26:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14137021",
- "username": "liraz.siri2",
- "fullName": "Liraz Siri (liraz.siri2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14137021/medium/e23adf8d83409e54947a011fc14039ac.jpeg",
- "joined": "2020-02-27 10:09:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14138507",
- "username": "LQS_IT_linguist",
- "fullName": "LQS_IT_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/f606b0f68b8dc2cbd68aa4f285fe2f3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-28 12:19:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14139071",
- "username": "LQS_KO_linguist",
- "fullName": "Kyoung-Jun Min (LQS_KO_linguist)",
- "avatarUrl": "https://www.gravatar.com/avatar/157e0850bff5d654100418259369d257?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-01 23:37:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14139371",
- "username": "dturkanovic",
- "fullName": "dturkanovic",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14139371/medium/b38582d09aad672fc0c59465414948da.png",
- "joined": "2020-02-29 07:52:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14141643",
- "username": "LQS_RO_linguist",
- "fullName": "LQS_RO_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/206e28dd1d437b3d3016495805493763?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-02 05:46:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 158,
- "negativeVotes": 9,
- "winning": 0
- },
- {
- "user": {
- "id": "14132617",
- "username": "ebimoradvand",
- "fullName": "ebi moradvand (ebimoradvand)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14132617/medium/bdc08e01d406df20078137371a78f618.jpg",
- "joined": "2020-02-24 06:02:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14142021",
- "username": "Lahcen-KH",
- "fullName": "Lahcen-KH",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14142021/medium/a975e15d82f2b4000869328428713087.png",
- "joined": "2020-04-08 14:41:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14143907",
- "username": "LQS_ZHTW_linguist",
- "fullName": "LQS_ZHTW_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/bfccd98f25bea1b676f45938fc8a92ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-04 00:21:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14145365",
- "username": "dariocast",
- "fullName": "Dario Castellano (dariocast)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14145365/medium/03f0aa483437cb1c83d02ca29036c317.jpeg",
- "joined": "2021-02-28 11:10:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14145377",
- "username": "Harrypotter3379",
- "fullName": "Harrypotter3379",
- "avatarUrl": "https://www.gravatar.com/avatar/15e1a918a5abd876ed5c9ba6ccc3c0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-05 04:17:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14146191",
- "username": "elias12",
- "fullName": "Elias Buchwald (elias12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146191/medium/76dbc4894257123acf27ea9ad87b1ed3.jpg",
- "joined": "2020-03-05 20:07:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14146415",
- "username": "MonarthS",
- "fullName": "Monarth (MonarthS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146415/medium/df6676021062acadedbaf9d0935bcce3.jpg",
- "joined": "2020-03-06 01:47:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14146435",
- "username": "mahesh339",
- "fullName": "Mahesh Rajput (mahesh339)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14146435/medium/6c10b5f6b69bf8c155b9f227d3e71f6c.jpeg",
- "joined": "2020-03-06 02:05:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14146621",
- "username": "LQS_PL_linguist1",
- "fullName": "LQS_PL_linguist1",
- "avatarUrl": "https://www.gravatar.com/avatar/6337f9f650b5632e54dcb6ddfe091422?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 05:47:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14147269",
- "username": "OnoDK",
- "fullName": "Douglas Ono (OnoDK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14147269/medium/1944bd766c80e354ec3810fd4fb86115.jpeg",
- "joined": "2020-03-06 17:10:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14147283",
- "username": "ABcryfi",
- "fullName": "ABcryfi",
- "avatarUrl": "https://www.gravatar.com/avatar/2c7d2007efe75e8dbb3193ba04fe6f30?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 17:18:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14147457",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/afc252ac9f8b036a713b3c203e89006a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 22:21:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14149679",
- "username": "Playzo",
- "fullName": "Patrik Pažický (Playzo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14149679/medium/0e9deec408e99d6b5676f3a72b379012.jpeg",
- "joined": "2021-05-16 16:09:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14132935",
- "username": "ducdat0507",
- "fullName": "ducdat0507",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14132935/medium/8403819f5209d80ef424840aa9e0dc4c.jpg",
- "joined": "2021-10-07 06:06:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14130355",
- "username": "tawanclubzaa",
- "fullName": "tawanclubzaa",
- "avatarUrl": "https://www.gravatar.com/avatar/9ddbbf6ccca3a87e2da160acc0eefa68?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-29 08:51:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14151675",
- "username": "buithang3058",
- "fullName": "buithang3058",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14151675/medium/ef9461c409a9d978f890cc99916c39b9.jpg",
- "joined": "2020-03-10 12:53:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14108121",
- "username": "YarikWise",
- "fullName": "YarikWise",
- "avatarUrl": "https://www.gravatar.com/avatar/e0af684bf13c5f581a63fe9f35f86006?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-20 04:20:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14089373",
- "username": "ap27061989",
- "fullName": "Amitai Perso (ap27061989)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14089373/medium/4efab9509732be6e5e3ffd709025f6de.jpeg",
- "joined": "2020-01-25 16:49:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14091097",
- "username": "mm319",
- "fullName": "mm319",
- "avatarUrl": "https://www.gravatar.com/avatar/bdac44f8d43892bc782c768b6bb2ef18?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-27 08:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14091321",
- "username": "Huhh",
- "fullName": "Arsentiy Falinskiy (Huhh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14091321/medium/d8e72289853200fb1dbef3a723ce209b.jpeg",
- "joined": "2020-01-27 11:10:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14091723",
- "username": "mnstshlyltfreshdesk",
- "fullName": "منصة شليلة (mnstshlyltfreshdesk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14091723/medium/b8a131cc01cbae499c33f3883755f0e9.jpeg",
- "joined": "2020-01-27 18:00:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14091843",
- "username": "joanadugarte",
- "fullName": "joanadugarte",
- "avatarUrl": "https://www.gravatar.com/avatar/500f73a1f808d69c8ea704c3ddf49adb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-27 21:41:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14099615",
- "username": "Stelita",
- "fullName": "Stela (Stelita)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14099615/medium/eddaa7939390c9b280fda8d68ebe2262.png",
- "joined": "2020-02-03 08:10:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101293",
- "username": "wisterioso",
- "fullName": "haoyun (wisterioso)",
- "avatarUrl": "https://www.gravatar.com/avatar/4b5118faaffcbd991e92a4000b07ffc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 12:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101317",
- "username": "Omer_Sagar",
- "fullName": "Omer_Sagar",
- "avatarUrl": "https://www.gravatar.com/avatar/481485f26fa364f23abeafbc720528bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 11:48:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101339",
- "username": "arketipicos",
- "fullName": "arketipicos",
- "avatarUrl": "https://www.gravatar.com/avatar/740598426e9e0ee16881d2eb0fc7f569?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 12:05:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14102903",
- "username": "iNaHE",
- "fullName": "iNaHE",
- "avatarUrl": "https://www.gravatar.com/avatar/63cfdd4bc80be709eec06273b9b43f37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-05 18:26:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14103549",
- "username": "mrtbrr",
- "fullName": "Murat Han (mrtbrr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14103549/medium/a6110a8040a839711e89ed55a576d363.jpeg",
- "joined": "2020-02-06 07:23:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14103835",
- "username": "hrkrshnn",
- "fullName": "Harikrishnan Mulackal (hrkrshnn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14103835/medium/922ba8f9957c54294283e7f42b9d6854.png",
- "joined": "2020-02-06 11:16:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14111943",
- "username": "fluffay",
- "fullName": "Adina Cretu (fluffay)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14111943/medium/161bdceb6b4652143236637b21f7b3b5.png",
- "joined": "2020-02-10 02:50:23"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14128555",
- "username": "ed.eyon",
- "fullName": "Edan-David Eyon (ed.eyon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14128555/medium/ad9a529567c40b155006d2beff4593fb.jpg",
- "joined": "2020-02-22 03:04:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14113969",
- "username": "mbiesiad",
- "fullName": "Michal (mbiesiad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14113969/medium/5ac8b6a9f35466498ebb47b6c43e43df.jpeg",
- "joined": "2021-02-07 13:24:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14114827",
- "username": "LQS_Slovak_linguist",
- "fullName": "LQS_Slovak_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/5d855c97079066806b64b903c4ae0bd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-12 02:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14117485",
- "username": "kberey",
- "fullName": "Ken Crypto Philippines (kberey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14117485/medium/682f03c5de47113a2d79b0dbdebd3eee.jpeg",
- "joined": "2020-02-13 11:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14117661",
- "username": "amberaltyn",
- "fullName": "igor altynpara (amberaltyn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14117661/medium/669e2585b1c7a9134c5e4fce4b1a7fbb.jpeg",
- "joined": "2020-02-13 14:43:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14118485",
- "username": "quan25102001",
- "fullName": "Quân Nguyễn (quan25102001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14118485/medium/4dd3f368dd18eecee5fb92000e8e333e.jpg",
- "joined": "2020-02-14 08:26:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14119193",
- "username": "zc_elephant",
- "fullName": "zhangchao (zc_elephant)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14119193/medium/d69b7d9169f3f903cd3da7b36a4955de.jpeg",
- "joined": "2020-02-14 21:08:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14121763",
- "username": "kdevg0",
- "fullName": "kdevg0",
- "avatarUrl": "https://www.gravatar.com/avatar/fa7ba894e23853bfb4314e0bb1a7d322?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-16 11:19:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14122089",
- "username": "perfor_001",
- "fullName": "perfor_001",
- "avatarUrl": "https://www.gravatar.com/avatar/c72f3e18b62a6d719cf089c56d677825?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-16 16:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14123985",
- "username": "usersolidity",
- "fullName": "usersolidity",
- "avatarUrl": "https://www.gravatar.com/avatar/95be843a5ab8ae19c478880541aff9c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-17 22:57:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14125747",
- "username": "misakajwk",
- "fullName": "James Wang (misakajwk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125747/medium/27c8b5a8d49f829339205e8f4bf47ca0.jpeg",
- "joined": "2021-05-26 04:54:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14125983",
- "username": "doanhlv",
- "fullName": "Doanh Văn Lương (doanhlv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125983/medium/f7bd2cd492ff0799dba4bd3b5850f97d.jpeg",
- "joined": "2020-02-19 09:17:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14128259",
- "username": "krzyz23",
- "fullName": "krzyz23",
- "avatarUrl": "https://www.gravatar.com/avatar/8884fcb5f8a318c9ac3d8934328eeee7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-13 05:59:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14151115",
- "username": "landlord2602",
- "fullName": "Free Row (landlord2602)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14151115/medium/38cf9a7f6041dc185580729d318cf3ab.jpg",
- "joined": "2020-03-10 04:28:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14152701",
- "username": "zsoltkecskes93",
- "fullName": "zsolt kecskés (zsoltkecskes93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14152701/medium/da3778be8b4769676038ecf1b474d69c.jpeg",
- "joined": "2020-03-11 09:27:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14217580",
- "username": "Noop1",
- "fullName": "Noop1",
- "avatarUrl": "https://www.gravatar.com/avatar/e1015204a425cd73a2c44a4830907414?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 12:09:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197298",
- "username": "hamza.001ghz",
- "fullName": "Hamza El GhAZALY (hamza.001ghz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197298/medium/5ea8bb8d213209d9ac915d075bc4b61f.jpeg",
- "joined": "2020-04-08 15:33:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14187621",
- "username": "gmramazan2500",
- "fullName": "Tim Robbins (gmramazan2500)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14187621/medium/9d6d31930ebd19343683e377a59f9b33.jpeg",
- "joined": "2020-04-03 00:29:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14187961",
- "username": "phonep121a",
- "fullName": "Kreangkai Sujabok (phonep121a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14187961/medium/a58e0f69e94caa0e2496f99c28de0e3f.png",
- "joined": "2020-04-03 05:29:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14188975",
- "username": "radkobanchev00",
- "fullName": "R. MorgenStern (radkobanchev00)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14188975/medium/a583eee4bd70b9585b2d7f00246490cc.jpg",
- "joined": "2020-04-03 16:32:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14188993",
- "username": "Garesito",
- "fullName": "Garesito",
- "avatarUrl": "https://www.gravatar.com/avatar/a61fc552d7b456b2e7d08bb9b7180ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-03 16:49:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14189901",
- "username": "madloser3",
- "fullName": "Muhammad Zubair M Zubair (madloser3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14189901/medium/331f887c46e3e7153693ce544aa7b39b.jpg",
- "joined": "2020-04-04 08:35:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14190413",
- "username": "gp5555555555",
- "fullName": "gulyás péter (gp5555555555)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14190413/medium/4392b7a362152ed76cba1d457185835d.jpeg",
- "joined": "2020-04-04 14:40:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14192884",
- "username": "hasank0c",
- "fullName": "hasank0c",
- "avatarUrl": "https://www.gravatar.com/avatar/8304522e526a7122da0314573dcbd1a1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-06 06:40:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14193244",
- "username": "chapuisatstephane",
- "fullName": "chapuisatstephane",
- "avatarUrl": "https://www.gravatar.com/avatar/81a9079e8bffed8894415f18df1a7eb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-06 10:15:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14196752",
- "username": "harithk.17",
- "fullName": "Harith Kamarul (harithk.17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14196752/medium/96c07ebdf4c7dea2b16141e5f354062d.jpg",
- "joined": "2020-04-08 09:32:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14196954",
- "username": "vincenzo-bg",
- "fullName": "Винченцо (vincenzo-bg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14196954/medium/5e276e009f3b962a942aee8dbf1346b5.jpeg",
- "joined": "2021-05-09 18:38:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197086",
- "username": "ericvt",
- "fullName": "ericvt",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197086/medium/f9f0b4ccf0c1a374ba2f208be1f7e061.JPG",
- "joined": "2021-01-27 14:13:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197214",
- "username": "sebastiantf",
- "fullName": "Sebastian T F (sebastiantf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197214/medium/ed36879d3d73f661b8eaadbebe2d181a.jpeg",
- "joined": "2020-04-08 14:02:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14197302",
- "username": "Nanshulot",
- "fullName": "Nans.hulot (Nanshulot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14197302/medium/757e43b5b53dcd888a681e6dfa5c4997.png",
- "joined": "2020-04-08 14:54:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14185873",
- "username": "fgorczynski",
- "fullName": "Filip Górczyński (fgorczynski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14185873/medium/39e4bd835fb01f6fa0682a374c26044a.jpg",
- "joined": "2020-04-02 05:20:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14198304",
- "username": "sambacisse",
- "fullName": "Samba Cisse (sambacisse)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14198304/medium/8631592eada2fe37c962af0242348ad3.png",
- "joined": "2020-04-09 06:30:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14199570",
- "username": "vavantgarde",
- "fullName": "va.zh (vavantgarde)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14199570/medium/c63576e0e6e6d52fa17d7080a9992372.jpeg",
- "joined": "2021-10-06 08:08:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14202604",
- "username": "jacksparo2547",
- "fullName": "Jack Sparo (jacksparo2547)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14202604/medium/a71a58650493bcdbefbce0f47e140458.jpg",
- "joined": "2020-04-11 18:28:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14203654",
- "username": "amalik",
- "fullName": "Amalik Amriou (amalik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14203654/medium/c23b98f148339fa8df9386672071488b.jpeg",
- "joined": "2020-04-12 11:58:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14203984",
- "username": "Bilal.Om",
- "fullName": "Bilal AbuHayyah (Bilal.Om)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14203984/medium/d9e58bf028603bba15520fad91e0ab13.jpeg",
- "joined": "2020-08-03 01:15:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14205710",
- "username": "abdou7191",
- "fullName": "abdou7191",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14205710/medium/5c3234dfa54fbd78a3143e26af1f741c.png",
- "joined": "2020-04-13 17:49:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14206176",
- "username": "tee.arjchaidan",
- "fullName": "Tee Arjchaidan (tee.arjchaidan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14206176/medium/6682219ceae5ab132142a9590040c165.jpg",
- "joined": "2020-05-05 01:08:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14209450",
- "username": "nestorbonilla",
- "fullName": "Nestor Bonilla (nestorbonilla)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14209450/medium/ffcdb73f831098c16883ec2b9e13bc2a.jpg",
- "joined": "2020-04-15 22:46:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14210528",
- "username": "DCBR",
- "fullName": "Jonathan Magalhães (DCBR)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14210528/medium/c7c6edf96670918fe49f544239a2b1ce.jpeg",
- "joined": "2020-04-16 12:53:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14211504",
- "username": "ainura",
- "fullName": "ainura",
- "avatarUrl": "https://www.gravatar.com/avatar/84cd7cd7740fa60255d7848426e59860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-17 02:39:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14213206",
- "username": "mtmone90",
- "fullName": "Mt Mone (mtmone90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14213206/medium/772b64380bf58ba26803ad2d088f7a85.jpg",
- "joined": "2020-04-18 02:38:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14215180",
- "username": "Narancsleee",
- "fullName": "Narancsleee",
- "avatarUrl": "https://www.gravatar.com/avatar/e6880d49655d3ea7aa376ce3bf1093d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-19 08:45:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14185891",
- "username": "HuKuTo",
- "fullName": "HuKuTo",
- "avatarUrl": "https://www.gravatar.com/avatar/8608ffc699fa08df5a3c15fc271ad96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-02 05:33:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14185677",
- "username": "mojkripto_com",
- "fullName": "mojkripto_com",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14185677/medium/138fcdff5417707835c5e5c07482fc9c.jpg",
- "joined": "2020-04-02 03:23:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14153057",
- "username": "LQS_FR_linguist",
- "fullName": "LQS_FR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/0cf48fed2dada8814d963ea205313494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-11 15:31:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14169771",
- "username": "Elparano",
- "fullName": "Elparano",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14169771/medium/dfa5364b652e14968d3170961f4d3c76.jpeg",
- "joined": "2020-03-23 21:29:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14154565",
- "username": "c_m_official",
- "fullName": "🤖💵💵💰💰.y.at (c_m_official)",
- "avatarUrl": "https://www.gravatar.com/avatar/f20a1fea072e61334195bf0ccbdeee57?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-16 12:58:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14154609",
- "username": "mustafaturan",
- "fullName": "Mustafa Turan (mustafaturan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14154609/medium/3855733ddf0efc6bcbdf6889afd13a76.png",
- "joined": "2021-05-11 09:46:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14157025",
- "username": "baro0k",
- "fullName": "baro0k",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14157025/medium/1994360c948b9729c3545a31a0062b44.jpg",
- "joined": "2020-03-25 20:43:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14158555",
- "username": "Tested",
- "fullName": "Raffy (Tested)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158555/medium/b86cc3992311f7cb381f5a20d087929d.png",
- "joined": "2020-10-22 15:55:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14158645",
- "username": "cevdetzgr",
- "fullName": "Cevdet Özgür (cevdetzgr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158645/medium/023c48f1718bd7e044d1c71eb8d47983.jpg",
- "joined": "2020-03-15 23:15:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14158815",
- "username": "Cthuj",
- "fullName": "Cthuj",
- "avatarUrl": "https://www.gravatar.com/avatar/4d1f9384e8d29a8535fd57276b95cd36?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-24 08:59:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14159293",
- "username": "yb191080",
- "fullName": "NAKON90120952 (yb191080)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14159293/medium/1fdcda9f5e1b51692fef0e63b8e79473.jpg",
- "joined": "2020-03-16 10:38:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14159957",
- "username": "mishkap93",
- "fullName": "Michael Pisarev (mishkap93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14159957/medium/8de714a2a632207bc4ae635c5092d9dc.jpeg",
- "joined": "2020-03-16 22:23:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14163185",
- "username": "armedis1981",
- "fullName": "ArmKristall (armedis1981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14163185/medium/d8b46146293816408b627ebaf0784171.jpeg",
- "joined": "2020-03-19 01:48:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14163925",
- "username": "vorot93",
- "fullName": "Artem Vorotnikov (vorot93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14163925/medium/299883c7c1782433d71c6d983be9057c.jpeg",
- "joined": "2020-03-19 12:48:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14165251",
- "username": "paagol",
- "fullName": "dipankar das (paagol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14165251/medium/0a90a90a126a5c80cc162947ef7e2fc8.jpg",
- "joined": "2020-03-20 12:06:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14168049",
- "username": "jrpongaron08",
- "fullName": "Jayr Pongaron (jrpongaron08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14168049/medium/04e64cd4c99c87ae1674132ca79f12c2.jpeg",
- "joined": "2020-03-22 16:28:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14170883",
- "username": "Bruno.beee",
- "fullName": "Bronislav Babik (Bruno.beee)",
- "avatarUrl": "https://www.gravatar.com/avatar/d1c3fecc068064d1e4beab4b58f126c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-15 15:10:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14183877",
- "username": "ThanosJi",
- "fullName": "ThanosJi",
- "avatarUrl": "https://www.gravatar.com/avatar/a39c1050df0d567090a82fe41674a1cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-01 08:35:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14172881",
- "username": "47hzwhale",
- "fullName": "Ӓlibek Aytjan (47hzwhale)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14172881/medium/dfd0e5efd5dac49f200b7bd24503eb4c.jpg",
- "joined": "2021-08-30 11:20:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14173249",
- "username": "samtimes",
- "fullName": "samtimes news (samtimes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14173249/medium/813bbf70b91633dca45bbfc0332490b8.jpeg",
- "joined": "2020-03-25 19:07:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14173445",
- "username": "Alalwi",
- "fullName": "Ali Al Alawi (Alalwi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14173445/medium/b33c069f498903274976c2808d31bdf1.jpg",
- "joined": "2020-03-30 22:29:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14173635",
- "username": "amin57000",
- "fullName": "amin57000",
- "avatarUrl": "https://www.gravatar.com/avatar/397e845df1a52ce8b6305b1a7d40dd02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-26 03:32:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14174333",
- "username": "i_SamAyorinde",
- "fullName": "i_SamAyorinde",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14174333/medium/69db42c4ac75229aecee4cb75dc8a444.jpg",
- "joined": "2020-03-26 12:00:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14177681",
- "username": "0972947249zz",
- "fullName": "ปอง หลอน (0972947249zz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14177681/medium/6c9d44a9d7e493a08b19992d4f4a90b2.jpeg",
- "joined": "2020-03-28 17:07:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14178915",
- "username": "nyctophilia",
- "fullName": "nyctophilia",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14178915/medium/b2ba2bc5aeeb3a281024f7eb55e3862f.png",
- "joined": "2020-05-13 16:48:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14179045",
- "username": "albiDmtr",
- "fullName": "Albert Domotor (albiDmtr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14179045/medium/5a2888caee97884225fc31cf26e784f1.png",
- "joined": "2020-03-29 15:29:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14180001",
- "username": "hikmetnadas4",
- "fullName": "Kimsesiz Adam (hikmetnadas4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14180001/medium/94b4dac52038a25167cbc5bc62992af5.jpeg",
- "joined": "2020-03-30 07:59:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14180423",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/890cf2f6a665ef5a84f30963fe5f32b0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-30 12:03:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14180479",
- "username": "LQS_BN_linguist",
- "fullName": "Debjit Sarkar (LQS_BN_linguist)",
- "avatarUrl": "https://www.gravatar.com/avatar/b5cc2b3a1a09f2b31913f407846d0f9f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-30 12:58:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14181387",
- "username": "ashleyjr6",
- "fullName": "ashleyjr6",
- "avatarUrl": "https://www.gravatar.com/avatar/3027b9efb9b598a48bfff530313a1c5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-31 02:37:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14181997",
- "username": "samuel.brb19",
- "fullName": "un_sam _sauvage (samuel.brb19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14181997/medium/0aaf4c266fa4700ccec8bcadb09440b6.jpg",
- "joined": "2021-03-30 17:48:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14347080",
- "username": "anis7365",
- "fullName": "anis7365",
- "avatarUrl": "https://www.gravatar.com/avatar/b7cbad0b5cbea96bdc97c42edcdc00db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-18 01:37:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14349092",
- "username": "Gabsolad",
- "fullName": "Gabsolad",
- "avatarUrl": "https://www.gravatar.com/avatar/92381063f28321dc2772fc0c17c19e9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-20 04:43:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14086827",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/c53f0cf95ed195278cfe72a15f88f591?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-23 09:12:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546022",
- "username": "TKHK4312",
- "fullName": "104 H17W1 (TKHK4312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546022/medium/1009bcdd2f3a11a1fdb5ff98ef1f0c50.jpeg",
- "joined": "2020-12-22 05:55:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14543516",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/448e671eb249237954aa7c8245f716a4?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-20 07:27:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14544610",
- "username": "anezdoank84",
- "fullName": "Muhammad Ariesta (anezdoank84)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544610/medium/4421d54e18059665ee9037d0bef6216c.jpg",
- "joined": "2020-12-21 05:14:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14544944",
- "username": "emersonlaurentino",
- "fullName": "Emerson Laurentino (emersonlaurentino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544944/medium/307497c490b2c0b11fd011f5f1938cf8.jpeg",
- "joined": "2021-08-16 17:12:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14544978",
- "username": "Cedrich2s",
- "fullName": "Cedrich2s",
- "avatarUrl": "https://www.gravatar.com/avatar/da32a667975ad9925dd4d51d9952b665?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 10:19:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545218",
- "username": "CleVer85",
- "fullName": "Денис Ільїн (CleVer85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545218/medium/07ce2d1254dab4d9dcb1550ee75bb694.jpg",
- "joined": "2020-12-21 13:57:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545254",
- "username": "Makezu",
- "fullName": "Makezu",
- "avatarUrl": "https://www.gravatar.com/avatar/d2523f584b6f392d895229c22d570f0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 14:39:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545266",
- "username": "kilion",
- "fullName": "kilion",
- "avatarUrl": "https://www.gravatar.com/avatar/43a7307f28765065183496715847b48a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 14:47:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545334",
- "username": "Ed1",
- "fullName": "Ed1",
- "avatarUrl": "https://www.gravatar.com/avatar/3b77bdfdd3c21245ed6b5e23ccf976c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 02:02:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545368",
- "username": "Anlaky",
- "fullName": "Anlaky",
- "avatarUrl": "https://www.gravatar.com/avatar/f8bdd868ba5c22fc854adce47220e168?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-21 16:17:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545694",
- "username": "dadabosade",
- "fullName": "dadabosade",
- "avatarUrl": "https://www.gravatar.com/avatar/a8c1904ef00ca5a6c97c44407ad82488?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 00:01:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545698",
- "username": "androidy",
- "fullName": "mohammed al-abri (androidy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545698/medium/4144cf90366f7ae4eaf551b0ad22a0b2.jpeg",
- "joined": "2020-12-21 23:23:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14545802",
- "username": "lacontra",
- "fullName": "lacontra",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14545802/medium/b39638ebf5c2d8620189f776469687b5.png",
- "joined": "2020-12-22 02:26:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546158",
- "username": "mahesh.rba",
- "fullName": "R Mahesh (mahesh.rba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546158/medium/c97755abdd8e61793d456b3c584269a9.png",
- "joined": "2020-12-22 08:14:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14541604",
- "username": "ivomarinovic2",
- "fullName": "ivomarinovic2",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14541604/medium/00626370d1fd9409081e94f7cca08433.jpg",
- "joined": "2020-12-18 14:49:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546254",
- "username": "amimaro",
- "fullName": "Amir Zahlan (amimaro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546254/medium/73a29952d54f5deafce7f54bd13688b1.jpeg",
- "joined": "2020-12-22 09:25:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546284",
- "username": "ladidan",
- "fullName": "ladidan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546284/medium/3fed287323fd3ced8bb2e80624f9bc6f.png",
- "joined": "2020-12-22 09:51:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546464",
- "username": "LucyCroft",
- "fullName": "LucyCroft",
- "avatarUrl": "https://www.gravatar.com/avatar/4f53453c3674623f046a36d946c614c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-22 12:30:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546584",
- "username": "fesslerem",
- "fullName": "fesslerem",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546584/medium/daeb2ca91f3cbe8c17cf78e73c56694a.png",
- "joined": "2020-12-22 14:14:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546698",
- "username": "7wupsii7",
- "fullName": "7wupsii7",
- "avatarUrl": "https://www.gravatar.com/avatar/cc6734d2b9e0c7329551b522ccf1b47f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-22 15:56:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546828",
- "username": "Mxitep",
- "fullName": "Mxitep",
- "avatarUrl": "https://www.gravatar.com/avatar/f901b2e87e345e332ff2c116f51fb1ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-23 14:27:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546956",
- "username": "ipungpurwono",
- "fullName": "ipungpurwono",
- "avatarUrl": "https://www.gravatar.com/avatar/ff7e1263652b38c8dd2e36ae6cb5f3ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-22 22:30:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14546994",
- "username": "axency",
- "fullName": "Axency (axency)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14546994/medium/3ebf66fb6f311d2e8188c54663f43c20.jpeg",
- "joined": "2020-12-22 23:27:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547346",
- "username": "sionhegye777",
- "fullName": "János Fülöp (sionhegye777)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547346/medium/ceb5ba2533b3c90326286baf4b0d997e.jpeg",
- "joined": "2020-12-23 07:05:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547590",
- "username": "q00n",
- "fullName": "q00n",
- "avatarUrl": "https://www.gravatar.com/avatar/859a56cd2c2b0277865d6e2e3829e13a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-23 10:44:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547614",
- "username": "vazgecenlerkulubu1",
- "fullName": "Vazgeçenler Kulübü (vazgecenlerkulubu1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547614/medium/27f23116b4ff555960b412569349579d.png",
- "joined": "2020-12-23 11:04:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14547948",
- "username": "sonja.richter89",
- "fullName": "Sonja Ri (sonja.richter89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14547948/medium/7b4873057f37d4a3bc90b1f338a9362c.PNG",
- "joined": "2020-12-27 07:17:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14543206",
- "username": "Hbz830",
- "fullName": "Hbz830",
- "avatarUrl": "https://www.gravatar.com/avatar/0f3f5ce36675fcf127a3cbca1409779e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 13:42:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14540192",
- "username": "jkbishbish",
- "fullName": "John Bishop (jkbishbish)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14540192/medium/d7ec76648f3d50e6c8396b4430550f0e.jpeg",
- "joined": "2020-12-17 12:49:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548424",
- "username": "Umka88",
- "fullName": "Umka88",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548424/medium/85348454f5761688ba8fe6a37aef2e68.jpeg",
- "joined": "2020-12-24 01:46:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14519290",
- "username": "x.amel",
- "fullName": "Amelia Lin (x.amel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14519290/medium/6ff6c098087030df852f77775038bb19.jpg",
- "joined": "2020-12-02 04:32:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14505360",
- "username": "konovalenko1990miha",
- "fullName": "Міхаіл Коноваленко (konovalenko1990miha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14505360/medium/81612903e2bb240e7ff8365f5f3b42d8.jpg",
- "joined": "2021-03-23 21:54:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14506010",
- "username": "arafat877",
- "fullName": "arafat bouchafra (arafat877)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14506010/medium/36b5c3cd4edc933544e9998ee647314e.jpeg",
- "joined": "2021-03-14 19:09:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14507362",
- "username": "Luigi21",
- "fullName": "Lu191 (Luigi21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14507362/medium/676880005d29829fb599f68ee2556813.png",
- "joined": "2020-11-23 10:30:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14507958",
- "username": "decentralcoin2.0",
- "fullName": "Decentral Coin (decentralcoin2.0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14507958/medium/6c1dbee2d4e6eeb7d5a807dffca112b8.jpg",
- "joined": "2021-05-14 04:47:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14510648",
- "username": "mexmas",
- "fullName": "mexmas",
- "avatarUrl": "https://www.gravatar.com/avatar/162cc4b4f3d25644baeb3fb7a71885fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-25 14:45:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14513238",
- "username": "yeft",
- "fullName": "yeft",
- "avatarUrl": "https://www.gravatar.com/avatar/39be11322956e117df828db0396ab2e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 12:47:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14514456",
- "username": "k2m5t2",
- "fullName": "k2m5t2",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514456/medium/2036a82ec0ad5142bcb922750d92c7bd.png",
- "joined": "2021-01-19 13:57:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14515116",
- "username": "jayadiahmad658",
- "fullName": "dua sejoli berantam sejoli (jayadiahmad658)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515116/medium/6e756f6c10d3988984fa2111b68ab11d.jpeg",
- "joined": "2020-11-29 05:01:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14515446",
- "username": "huy0975050100",
- "fullName": "Huy Quoc (huy0975050100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515446/medium/57d3927c3aedd38a6775f630bad0de3e.jpeg",
- "joined": "2020-11-29 10:32:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14515804",
- "username": "8QIo1",
- "fullName": "8QIo1",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14515804/medium/ba094da230429b3578e174d3e31fc033.png",
- "joined": "2020-11-29 16:17:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14517778",
- "username": "leekarmeng5",
- "fullName": "leekarmeng5",
- "avatarUrl": "https://www.gravatar.com/avatar/16cb72d90659a7b114b33b3ee36751d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 02:42:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14518542",
- "username": "romankharcenko42",
- "fullName": "Роман Харченко (romankharcenko42)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14518542/medium/a8f30f5ce27a9e8dae9b22f385a4bed9.jpeg",
- "joined": "2020-12-02 05:47:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14519338",
- "username": "VKogakis",
- "fullName": "VKogakis",
- "avatarUrl": "https://www.gravatar.com/avatar/ed231874be0072432e1d398c0f96267f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-02 04:42:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14538368",
- "username": "chitrongnick06",
- "fullName": "Chitnarong Yapho (chitrongnick06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14538368/medium/5ab3cc50cf7c04f652dc29303cacfec8.jpeg",
- "joined": "2021-01-12 05:30:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14520190",
- "username": "LQS_IGBO2_linguist",
- "fullName": "LQS_IGBO2_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/dd22e80ae765c0e2b8fbd6ab75b00fc3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-03 06:04:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14524548",
- "username": "bhattg",
- "fullName": "Naveen Bhatt (bhattg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14524548/medium/14197a8630271202eb6371b01ec63028.png",
- "joined": "2020-12-17 11:49:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14526304",
- "username": "luboparil",
- "fullName": "Lubomír Pařil (luboparil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14526304/medium/5b37635575f3e9b51e590dfc9b0c7136.jpeg",
- "joined": "2021-04-02 15:55:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14527438",
- "username": "alina.savchak",
- "fullName": "alina.savchak",
- "avatarUrl": "https://www.gravatar.com/avatar/8858b017ffe17838ee9e03150f7e8d2a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-08 04:55:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14529066",
- "username": "glaucomaximo",
- "fullName": "Glauco Maximo (glaucomaximo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14529066/medium/c6590d401123402ad52bc09065ae4ecc.jpeg",
- "joined": "2021-05-23 22:05:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14532170",
- "username": "Adelino_Francisco",
- "fullName": "Adelino_Francisco",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14532170/medium/1de0a3ea0efc06f96a81d634424fdda6.jpeg",
- "joined": "2020-12-28 01:51:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14532198",
- "username": "jebahar",
- "fullName": "Jebahar Deva Dhason (jebahar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14532198/medium/f5e5643fbfd6007e0aa4cdfef932873f.png",
- "joined": "2020-12-11 12:33:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14533144",
- "username": "modhex",
- "fullName": "Barış Batuhan (modhex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14533144/medium/c83b31a984c6b2f5a80aa7a5ab027e6b.jpeg",
- "joined": "2021-06-24 14:12:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14533158",
- "username": "bnistor4",
- "fullName": "Bogdan (bnistor4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14533158/medium/79ef99c918c14854db8225f6ca79cf11.jpeg",
- "joined": "2021-02-01 03:52:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14534424",
- "username": "allex77755",
- "fullName": "Алексей Алексей (allex77755)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14534424/medium/3b106b72a492eba4b5ae553647e72327.jpg",
- "joined": "2020-12-13 07:32:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14534908",
- "username": "LadyNoir",
- "fullName": "Jane Doe (LadyNoir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14534908/medium/7e9f2c175731e387900c7ec6e3d8554d.JPG",
- "joined": "2020-12-13 18:13:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14535854",
- "username": "LeKritk",
- "fullName": "LeKritk",
- "avatarUrl": "https://www.gravatar.com/avatar/4328bc9d968b39e815f742c4b979c35b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-14 10:40:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548152",
- "username": "tonisanchezdev",
- "fullName": "tonisanchezdev",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548152/medium/db8b130a43f224e86ee40f329ed4d115.jpg",
- "joined": "2020-12-24 10:58:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548516",
- "username": "Armsombon",
- "fullName": "เจตต์ธนาพงษ์ สมบูรณ์ (Armsombon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548516/medium/b41391ee6ee26e5f671c1c331b3eecfe.jpeg",
- "joined": "2021-11-27 02:54:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498820",
- "username": "ambarrojas24",
- "fullName": "Ámbar Rojas (ambarrojas24)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498820/medium/5cc6f73e96e92d4bc0ec93c9bb0a7547.jpeg",
- "joined": "2020-11-16 19:37:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558102",
- "username": "x756115",
- "fullName": "MR.X A.S.D (x756115)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558102/medium/e092a0a6333e6c492ea90b663dcd4182.jpg",
- "joined": "2021-02-25 09:16:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554590",
- "username": "s.morales1994",
- "fullName": "Sergio Morales (s.morales1994)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554590/medium/6131b744b822e28dc51b0e23466c270d.jpeg",
- "joined": "2020-12-29 04:59:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14555382",
- "username": "crackadoo",
- "fullName": "crackadoo",
- "avatarUrl": "https://www.gravatar.com/avatar/37faa0b78123599315b9edfe59ac4a50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-29 16:10:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "6154",
- "username": "translator",
- "fullName": "Jungho Jo (translator)",
- "avatarUrl": "https://www.gravatar.com/avatar/a7b2e150fb58a04645cd6da6db0508dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-11 04:42:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14555766",
- "username": "tokuryoo",
- "fullName": "tokuryoo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555766/medium/c3219692eb549ef2a8ed8cb1f745db3e.jpg",
- "joined": "2020-12-30 00:41:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556540",
- "username": "Elgavvaa26",
- "fullName": "Elgavvaa26",
- "avatarUrl": "https://www.gravatar.com/avatar/c860b4f4c620c46b909216378299c3f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-30 14:22:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556592",
- "username": "rr440407",
- "fullName": "QIUYU ZHANG (rr440407)",
- "avatarUrl": "https://www.gravatar.com/avatar/dd7c43e7a307f73b2b6542de52f10734?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-30 15:16:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556868",
- "username": "Toms_Amway",
- "fullName": "Voper Tom (Toms_Amway)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14556868/medium/e73365d23b16289c375cdc7b684c7150.jpeg",
- "joined": "2020-12-30 23:58:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14556966",
- "username": "Yu-s",
- "fullName": "Yusuke Ishizuka (Yu-s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14556966/medium/ab7ff2a88c2b228fee9fe42519d0f916.jpeg",
- "joined": "2020-12-31 00:51:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557116",
- "username": "LQS_CZ_David",
- "fullName": "LQS_CZ_David",
- "avatarUrl": "https://www.gravatar.com/avatar/d1b270bb1ae7d524c68e0b990b150008?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-31 04:38:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557298",
- "username": "KhalidM",
- "fullName": "KhalidM",
- "avatarUrl": "https://www.gravatar.com/avatar/6cc88181eb07d095c6edde8246ad9d76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-31 08:32:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557368",
- "username": "jacknjones561",
- "fullName": "V. A. (jacknjones561)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14557368/medium/3b8101c4982e72b3678f0ec668d2b7d6.jpg",
- "joined": "2020-12-31 10:05:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14557890",
- "username": "Saswatisb28",
- "fullName": "Saswatisb28",
- "avatarUrl": "https://www.gravatar.com/avatar/9ae67b079b177bc3bfe5679fffe9f8a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-31 23:43:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558188",
- "username": "crypto.scout.ita",
- "fullName": "Crypto Scout (crypto.scout.ita)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558188/medium/20deedb6f30a90a346f62cd892d22330.jpeg",
- "joined": "2021-01-01 07:35:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554066",
- "username": "hoguzturk",
- "fullName": "Huseyin Uguzturk (hoguzturk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554066/medium/c8d5fc3d77552cc8d81a1c013e851f3e.jpg",
- "joined": "2020-12-28 18:16:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558246",
- "username": "samgaspa123",
- "fullName": "samgaspa123",
- "avatarUrl": "https://www.gravatar.com/avatar/385b6e54a9d8d0c144243f11d0f63e76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 08:25:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558364",
- "username": "Zachinquarantine",
- "fullName": "Zachinquarantine",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558364/medium/f255e187347bd3356751f4c43d10f4be.jpeg",
- "joined": "2021-05-07 09:25:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558386",
- "username": "dzhondrov",
- "fullName": "Тодор Джондров (dzhondrov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558386/medium/0e0cdc590e7bfaf44fbde5088fb82284.jpeg",
- "joined": "2021-01-01 11:08:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558526",
- "username": "bskrksyp9",
- "fullName": "Bhaskar Kashyap (bskrksyp9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558526/medium/7af7d9f64aea4b324cd8b35b37fa78c8.png",
- "joined": "2021-01-01 13:22:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558584",
- "username": "Tioma",
- "fullName": "Tioma",
- "avatarUrl": "https://www.gravatar.com/avatar/279ab5cb47362bcad5d14fb876c44a9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 14:25:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558616",
- "username": "Rodol62",
- "fullName": "Rodol62",
- "avatarUrl": "https://www.gravatar.com/avatar/0bc03697084d2272d769431cca41efec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 14:39:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558890",
- "username": "muhammedfadlarslan",
- "fullName": "Muhammed Fadıl Arslan (muhammedfadlarslan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558890/medium/381ff304f12355d66c226b2be8a7c63d.jpeg",
- "joined": "2021-01-05 19:25:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559010",
- "username": "rvasatyam9",
- "fullName": "rvasatyam9",
- "avatarUrl": "https://www.gravatar.com/avatar/e45887dc560a72c40615ded7a6f6197a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-01 23:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559282",
- "username": "Aronia",
- "fullName": "Aronia",
- "avatarUrl": "https://www.gravatar.com/avatar/cde72b554f3f1f67b2abc443614961a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 06:44:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559422",
- "username": "markxoe",
- "fullName": "Mark Oude Elberink (markxoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559422/medium/7531e2bf469cf5f588d633eccb3ab1ad.jpeg",
- "joined": "2021-01-27 08:43:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559546",
- "username": "antoine84",
- "fullName": "antoine84",
- "avatarUrl": "https://www.gravatar.com/avatar/3ae639e6b3883afd1bc1f158478a0cdd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 10:44:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559620",
- "username": "gregpich",
- "fullName": "gregpich",
- "avatarUrl": "https://www.gravatar.com/avatar/8dd9cf66464582d6640266702283d181?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 11:55:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554170",
- "username": "eriknoronha",
- "fullName": "Erik Noronha (eriknoronha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554170/medium/b6bf26ec67d0187f0829c5a6256d68b2.jpeg",
- "joined": "2020-12-28 20:07:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14554002",
- "username": "AmonVJhin",
- "fullName": "Charon Jhin (AmonVJhin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14554002/medium/5059d0c39f37b1ce70dad969feec5f2b.jpeg",
- "joined": "2020-12-28 16:37:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548590",
- "username": "psc2321",
- "fullName": "Seongchoon Park (psc2321)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548590/medium/f5528d7f057dd720d8c7498d0499b712.jpeg",
- "joined": "2020-12-24 05:06:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551426",
- "username": "sady.souza",
- "fullName": "sady.souza",
- "avatarUrl": "https://www.gravatar.com/avatar/6ef5237fbd889fbc625756d68ad63a5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 15:38:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548736",
- "username": "rojasafelipe91",
- "fullName": "Felipe Alfonso Rojas Araya (rojasafelipe91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548736/medium/eeb1f188ab9959eddb3275ae693664b2.jpg",
- "joined": "2020-12-24 07:57:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14548994",
- "username": "fathymahmou",
- "fullName": "Mahmoud Fathy (fathymahmou)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14548994/medium/92dcf85432b5c86ec374332aa919645e.jpeg",
- "joined": "2020-12-24 12:46:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549078",
- "username": "Begram75",
- "fullName": "Begram75",
- "avatarUrl": "https://www.gravatar.com/avatar/90d4875066b032666ef0e499658f4fda?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-24 14:18:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549250",
- "username": "brizzo1982",
- "fullName": "Daniele Brizzolari (brizzo1982)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549250/medium/f498eb35d5a5c6213f6a5aff97ae3c73.jpeg",
- "joined": "2020-12-24 17:53:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549416",
- "username": "fymingf",
- "fullName": "Min Fu (fymingf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549416/medium/fd35815355034e41f00470db0bbea34d.jpg",
- "joined": "2020-12-24 23:09:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14549776",
- "username": "Nerimax",
- "fullName": "Massimo Neri (Nerimax)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14549776/medium/cca0133c143af94806c140d861b4b0d4.jpeg",
- "joined": "2020-12-25 07:15:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550264",
- "username": "mr.gustavo.ramos",
- "fullName": "Gus Ram (mr.gustavo.ramos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14550264/medium/554eb671c71a65dafaef15d70cbaa11f.jpeg",
- "joined": "2020-12-25 15:31:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550294",
- "username": "jleyendeckeratx",
- "fullName": "Jerry Louis Leyendecker, Living Soul (jleyendeckeratx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14550294/medium/ff2ad6121dcde0784a27d73ddac4077b.jpeg",
- "joined": "2021-10-22 03:53:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550742",
- "username": "Mischa555",
- "fullName": "Mischa555",
- "avatarUrl": "https://www.gravatar.com/avatar/5b550c4cab3d22fd3ba47c95c0a857ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 03:44:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14550974",
- "username": "Arlind2000",
- "fullName": "Arlind2000",
- "avatarUrl": "https://www.gravatar.com/avatar/4ac57bab98686af7080edbe4b5208cef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 08:17:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551086",
- "username": "SMreussite",
- "fullName": "SMreussite",
- "avatarUrl": "https://www.gravatar.com/avatar/04fbb262ac93a36e418011d4894c7990?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 10:28:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551216",
- "username": "PoeMoe",
- "fullName": "Вова Вересовой (PoeMoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14551216/medium/c323076bd71473559b5b64d2eafcb65f.jpg",
- "joined": "2020-12-26 12:29:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551466",
- "username": "jucsaba",
- "fullName": "jucsaba",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14551466/medium/59a3ef15e6bff31db5ec092837673271.png",
- "joined": "2020-12-26 16:38:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553630",
- "username": "rudygt",
- "fullName": "Rudy Alvarez (rudygt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553630/medium/9e2a515a92ed47bf1105715fe4be0b3f.jpeg",
- "joined": "2020-12-28 10:26:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14551612",
- "username": "Yehei",
- "fullName": "Yehei",
- "avatarUrl": "https://www.gravatar.com/avatar/6967f7ca67e84ada88819b839dd3f416?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-26 19:27:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14552668",
- "username": "PAEPE",
- "fullName": "Paulo Peres (PAEPE)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14552668/medium/3244c6b581c128c9acfbe381d35db6f3.png",
- "joined": "2020-12-27 14:22:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553038",
- "username": "philippseifert",
- "fullName": "Philipp Seifert (philippseifert)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553038/medium/57eeff85645c6b316f8fd2338ead7e06.JPG",
- "joined": "2020-12-27 22:33:50"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 9,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14553182",
- "username": "vivekb",
- "fullName": "vivekb",
- "avatarUrl": "https://www.gravatar.com/avatar/5a348707da8d1a1a44972442e2f73d02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 02:25:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553260",
- "username": "JudasLuo",
- "fullName": "JudasLuo",
- "avatarUrl": "https://www.gravatar.com/avatar/d57d9372ebe67ca8666febb5dc59ab2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 05:00:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 38,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553338",
- "username": "User20202",
- "fullName": "User20202",
- "avatarUrl": "https://www.gravatar.com/avatar/bb4b9b33d356e7b17db4b2c866996add?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-28 05:30:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553420",
- "username": "Blockchaineur",
- "fullName": "Thibault Langlois-Berthelot (Blockchaineur)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553420/medium/ea46ae87fbc87da1a97ae30fc4c7cbb0.jpeg",
- "joined": "2020-12-28 07:08:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553432",
- "username": "franzihei",
- "fullName": "Franziska Heintel (franzihei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553432/medium/1f1a5fa4da0d90d1c7853118ebe80f22.jpeg",
- "joined": "2020-12-28 07:16:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553452",
- "username": "aliguvez",
- "fullName": "Ali Guvez (aliguvez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553452/medium/3b3e2896659055ac72f48e3ae3c1b60e.jpg",
- "joined": "2021-01-08 06:07:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553474",
- "username": "donnoh",
- "fullName": "Luca Donno (donnoh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553474/medium/7ba6d6419135cee445a073a5c4277d4a.jpeg",
- "joined": "2020-12-28 08:09:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553490",
- "username": "ferranrego",
- "fullName": "Ferran (ferranrego)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553490/medium/3d8c83e08bf6efa11a2c16d1a30d8106.jpeg",
- "joined": "2020-12-28 08:08:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553512",
- "username": "paromix",
- "fullName": "Minho Yoo (paromix)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553512/medium/420c9f69984b66d1f5ac728802da42ad.jpg",
- "joined": "2020-12-28 08:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14553586",
- "username": "Otec_mk",
- "fullName": "Otec_mk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553586/medium/f7f9e730efd68d9bbf92991f88470a7e.jpg",
- "joined": "2020-12-28 09:48:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14500864",
- "username": "iyamgondraneos",
- "fullName": "Iyam Gondraneos (iyamgondraneos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14500864/medium/5b11180320d82d67e7110613c9ef66fe.jpg",
- "joined": "2020-11-18 08:45:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498608",
- "username": "eadmann",
- "fullName": "eadmann",
- "avatarUrl": "https://www.gravatar.com/avatar/fc0dcad3181041f188e5fabb824b55da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-16 15:09:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14349526",
- "username": "Jaylukmann",
- "fullName": "Jimoh Lukman Adeyemi (Jaylukmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14349526/medium/1f1e32261af97a37ab61584658c290d4.jpeg",
- "joined": "2020-07-20 10:47:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14380594",
- "username": "jyoo",
- "fullName": "Jung Sup (James) Yoo (jyoo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14380594/medium/ea54b35795b0eabf865962d3a3931b37.jpeg",
- "joined": "2020-08-16 00:01:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14371884",
- "username": "rjesei12",
- "fullName": "Jessie Ramirez (rjesei12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14371884/medium/ce419fc0c82cb677ffd73e8fa167c069.jpeg",
- "joined": "2020-08-08 21:01:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14371926",
- "username": "zenata1",
- "fullName": "Hakim Oubouali (zenata1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14371926/medium/8da789ab9e40b088fe29bdeba9514eab.png",
- "joined": "2021-03-30 19:06:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14372734",
- "username": "nilslberg",
- "fullName": "Nils Lundberg (nilslberg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14372734/medium/8e7ff729c6a37721feec66e8da5f4cbd.jpeg",
- "joined": "2020-08-09 17:46:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14373706",
- "username": "kbeker",
- "fullName": "Karol Beker (kbeker)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14373706/medium/c89f32888e25c6408fa3bd56a7911670.png",
- "joined": "2020-08-10 12:47:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14374108",
- "username": "faye831",
- "fullName": "faye831",
- "avatarUrl": "https://www.gravatar.com/avatar/5467a440303748a93ae001d092539545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-01 22:53:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14375966",
- "username": "tigger_ik_thai",
- "fullName": "Chicken Alone (tigger_ik_thai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14375966/medium/0ff66585f092e7bf690ff8fcbc2af4b7.png",
- "joined": "2021-03-31 09:05:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14375988",
- "username": "rajeshkumar757575",
- "fullName": "Rajesh Kumar S (rajeshkumar757575)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14375988/medium/a81f95900709adc13e0a72e0c37ecb70.jpeg",
- "joined": "2020-08-12 07:45:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14375990",
- "username": "Rathcha",
- "fullName": "Rathcha",
- "avatarUrl": "https://www.gravatar.com/avatar/c55086b349b09615e6fede99d572f19a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-12 08:32:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14376302",
- "username": "The_Wayvy",
- "fullName": "The_Wayvy",
- "avatarUrl": "https://www.gravatar.com/avatar/77f996c6a864c1be21408c5af52e3b1c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 18:33:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14376958",
- "username": "TPTSeoul",
- "fullName": "TPTSeoul",
- "avatarUrl": "https://www.gravatar.com/avatar/5175bf557469cf5be83bb53f7ad1ae37?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-13 15:51:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14378524",
- "username": "toya8118",
- "fullName": "Sorasuk Sakon (toya8118)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14378524/medium/9c73355a594a13b26d97fb4af23b4621.jpg",
- "joined": "2020-08-14 04:02:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14380532",
- "username": "sun876",
- "fullName": "sunny p (sun876)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14380532/medium/6cb633e24e6d544dd93c98997c51481c.jpg",
- "joined": "2020-08-15 22:23:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14382396",
- "username": "AlbertChenKai",
- "fullName": "Albert Chen (AlbertChenKai)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14382396/medium/375ae4397b5884ff0516d4eea525a0e8.jpeg",
- "joined": "2020-08-17 16:01:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14369986",
- "username": "miroelfj",
- "fullName": "miroelfj",
- "avatarUrl": "https://www.gravatar.com/avatar/06a74f0fe0a357ebbfc23eaed729f543?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-07 00:47:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14382632",
- "username": "gabe_san_",
- "fullName": "gabe_san_",
- "avatarUrl": "https://www.gravatar.com/avatar/ba104028940a36ea18502399fe70aef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 22:24:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14383758",
- "username": "617087085",
- "fullName": "Abuukar Cali Macow Addres Abuukar Cali (617087085)",
- "avatarUrl": "https://www.gravatar.com/avatar/8602c5c97583123cc015acfbe94bc890?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-06 18:16:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14386026",
- "username": "msuresh85",
- "fullName": "Suresh Kumar (msuresh85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14386026/medium/9ce1fa7bce1e86459117924566fcb1e0.jpg",
- "joined": "2020-08-20 23:23:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14386068",
- "username": "minaminao",
- "fullName": "Naoya Okanami (minaminao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14386068/medium/f08582fddeff0960412994f51377126c.png",
- "joined": "2020-08-21 00:57:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14388568",
- "username": "rooban23",
- "fullName": "rooban23",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14388568/medium/6a05ebb98fa58cc89906373b55ba631e.png",
- "joined": "2020-09-15 08:41:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14393312",
- "username": "ZER0-X",
- "fullName": "zer0-x (ZER0-X)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14393312/medium/d6857670dfe4854ec2e6238d53b71407.png",
- "joined": "2021-02-24 02:08:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14395298",
- "username": "Kamal1",
- "fullName": "Kamal Abdulhadi Ibrahim (Kamal1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395298/medium/fa86858a72816941fe0eab675ecab356.jpg",
- "joined": "2020-08-29 03:41:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14396236",
- "username": "Luiz6ustav0",
- "fullName": "Luiz (Luiz6ustav0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14396236/medium/86bae9bdd34bdbfa5d7c28149ba7a489.jpeg",
- "joined": "2020-08-29 13:33:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14399350",
- "username": "keith.lacey",
- "fullName": "keith.lacey",
- "avatarUrl": "https://www.gravatar.com/avatar/dc182ea4bb4aef300079fb0f191d9d51?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-06 15:48:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14400640",
- "username": "Gumana",
- "fullName": "Gumana",
- "avatarUrl": "https://www.gravatar.com/avatar/a6c9e47198ce59e2f70918bf4c47f358?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-02 10:34:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14401162",
- "username": "ftorresbriseno",
- "fullName": "Fanny Alejandra Torres Briseño (ftorresbriseno)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14401162/medium/34f1aeea92bcd02c05235bf486354148.jpeg",
- "joined": "2020-09-02 21:41:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14402352",
- "username": "winkybupt",
- "fullName": "winkybupt",
- "avatarUrl": "https://www.gravatar.com/avatar/f8437629a6bbe3dba71dee7eb19a2bbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 11:56:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14370922",
- "username": "nonthawat37",
- "fullName": "nonthawat37",
- "avatarUrl": "https://www.gravatar.com/avatar/91108541bfd24eaa1c6fdef1308f8bd1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-07 22:12:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14369122",
- "username": "LQS_FI_linguist",
- "fullName": "LQS_FI_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/f41ca314dbb884a59c257099110b0129?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-06 07:13:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14402986",
- "username": "harshvardhan-shah",
- "fullName": "Harshvardhan (harshvardhan-shah)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14402986/medium/06efcf3310e426f6067b44c3f9d5da47.png",
- "joined": "2020-09-04 09:53:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14359912",
- "username": "henkkarop",
- "fullName": "Henri Ropponen (henkkarop)",
- "avatarUrl": "https://www.gravatar.com/avatar/65122d511e2911c2ab686e1bfe2fb168?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-29 09:55:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14353294",
- "username": "lubo.cur123",
- "fullName": "Lubo Čurgala (lubo.cur123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14353294/medium/f76ec1fcc5914c88cdb27fd0db2e64d8.jpeg",
- "joined": "2020-07-23 16:11:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14353306",
- "username": "kvdbve34",
- "fullName": "HSD Channel (kvdbve34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14353306/medium/413ef0013c32d733ecc690e5d7445d0e.png",
- "joined": "2021-04-07 01:29:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14354662",
- "username": "zuthien5196",
- "fullName": "zuthien5196",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14354662/medium/3ab7b5c41c6d9deb332313fec1db78ce.png",
- "joined": "2020-07-24 14:16:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14355292",
- "username": "CreaZyp154",
- "fullName": "CreaZyp154",
- "avatarUrl": "https://www.gravatar.com/avatar/e5a5039f8551e5de7bf7146ffb31a928?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-26 07:26:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14356104",
- "username": "cryptoseeker",
- "fullName": "cryptoseeker",
- "avatarUrl": "https://www.gravatar.com/avatar/6b6158035dae7efa632101945b8c3eb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-26 03:47:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14356614",
- "username": "punheo1176411",
- "fullName": "Heo Nguyễn (punheo1176411)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14356614/medium/9c7c8c06efe1591e849d1501c6784590.jpeg",
- "joined": "2020-07-26 13:53:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14356978",
- "username": "Nasco",
- "fullName": "Fidelis Animam (Nasco)",
- "avatarUrl": "https://www.gravatar.com/avatar/6da834728ad3775bc597a2f8a7fe48e5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-26 22:39:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14357214",
- "username": "sensational.aziz",
- "fullName": "Aziz Kenjaev (sensational.aziz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357214/medium/7618d3f6cc496443c61213b14c28b12d.jpeg",
- "joined": "2020-07-27 14:41:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14357586",
- "username": "ubunteroz",
- "fullName": "Surya Handika Putratama (ubunteroz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357586/medium/4a3bea1ed33291bb01efa4318a919438.jpeg",
- "joined": "2020-07-27 10:46:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14358488",
- "username": "jpaulet",
- "fullName": "jp_aulet (jpaulet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14358488/medium/f01f4d5062ccf8b6c32bcdc58e58f950.jpeg",
- "joined": "2020-07-28 06:50:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14359374",
- "username": "shahzad.shahid02",
- "fullName": "shahzad shahid (shahzad.shahid02)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14359374/medium/83a1af05764dfe82667ce51d9cdd8d5a.jpeg",
- "joined": "2020-07-29 00:16:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14359710",
- "username": "faww",
- "fullName": "faww",
- "avatarUrl": "https://www.gravatar.com/avatar/a6efe428b003f14e2a9a4397a736a08d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-29 06:45:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14359932",
- "username": "ssaraji",
- "fullName": "Soheil Saraji (ssaraji)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14359932/medium/2c78146103b347a22ebf8bd7cc17071b.jpeg",
- "joined": "2020-07-29 10:14:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14368838",
- "username": "emrecan001",
- "fullName": "EmreCan Ayas (emrecan001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14368838/medium/6b54a909cde1ed991887e4625ccd2a4e.jpeg",
- "joined": "2020-08-06 03:01:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360544",
- "username": "jasz3217",
- "fullName": "jasz3217",
- "avatarUrl": "https://www.gravatar.com/avatar/9b3d429ac54ba9dc9240bf77d0166b2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-29 22:55:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360590",
- "username": "raadalubeedi",
- "fullName": "raadalubeedi",
- "avatarUrl": "https://www.gravatar.com/avatar/1f877a0be060adf54c581b179cf7194e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-30 00:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360632",
- "username": "nongjize",
- "fullName": "nongjize",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14360632/medium/419cfc459e1d68e1303b1e7b8554c2f5.jpeg",
- "joined": "2020-07-30 02:24:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14360816",
- "username": "mayookh3508",
- "fullName": "Mayookh M T (mayookh3508)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14360816/medium/d455976171e216f92c60e592a2e2ca8c.jpeg",
- "joined": "2020-07-30 05:22:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14361208",
- "username": "Miromiro",
- "fullName": "Miromiro",
- "avatarUrl": "https://www.gravatar.com/avatar/aa387780c4bb8c898d834391e8c2b190?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-30 10:13:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14361586",
- "username": "zippoxer",
- "fullName": "Moshe Revah (zippoxer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14361586/medium/a4f460817c40656ad9863a2100816e77.png",
- "joined": "2020-07-30 16:53:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14362952",
- "username": "WARFAST",
- "fullName": "translator (WARFAST)",
- "avatarUrl": "https://www.gravatar.com/avatar/9c1c22281a5ab74e15f173814b17e861?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 05:26:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14364086",
- "username": "elenasapnit",
- "fullName": "ELENA SAPNIT (elenasapnit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364086/medium/593b8599802ba4ca6aeecbdb4bb11966.jpeg",
- "joined": "2020-08-02 06:01:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14364198",
- "username": "rezaa_kh",
- "fullName": "Reza Khojasteh (rezaa_kh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364198/medium/755513245ba7ad31b5565724a43e7757.jpeg",
- "joined": "2020-08-02 08:02:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14364644",
- "username": "me.airee",
- "fullName": "Snachi (me.airee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14364644/medium/beb7fb27693baf8b3d4d4aa4fbeb8a4c.jpeg",
- "joined": "2021-05-16 20:43:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14365000",
- "username": "hossein221",
- "fullName": "hossein221",
- "avatarUrl": "https://www.gravatar.com/avatar/5f80ac870f00c6725715b770cdf1cbee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-03 03:15:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14367416",
- "username": "simiria1980",
- "fullName": "иван семеренько (simiria1980)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14367416/medium/211a965aa2c0eef05cc9a8c36489a01c.jpeg",
- "joined": "2021-10-27 07:58:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14367748",
- "username": "annekhate23",
- "fullName": "annekhate23",
- "avatarUrl": "https://www.gravatar.com/avatar/117ccadad9d81b86083707da49b60964?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-05 05:03:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14402624",
- "username": "Tom5656",
- "fullName": "Supoht jobdee (Tom5656)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14402624/medium/c48ee62c7d3e37b9d60d426139546da7.jpg",
- "joined": "2020-09-04 12:30:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14404560",
- "username": "servanozel",
- "fullName": "Şerwan Özel (servanozel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14404560/medium/cf09192f96468b012ef35a77df993095.jpeg",
- "joined": "2020-09-30 11:16:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498322",
- "username": "OhRobin",
- "fullName": "Robin Oh (OhRobin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498322/medium/ecb2956497edc80f84f3eca39b6e0057.jpeg",
- "joined": "2020-11-16 09:43:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14467440",
- "username": "nivetha23",
- "fullName": "nivetha23",
- "avatarUrl": "https://www.gravatar.com/avatar/72a722999233fec71aee226dab24f3f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-10-23 00:53:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14451648",
- "username": "vadimibr",
- "fullName": "Sunday Night (vadimibr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14451648/medium/00ffc7066a6e832c974569d04fc320d2.png",
- "joined": "2020-10-14 21:01:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14453924",
- "username": "rungrot922j",
- "fullName": "chocolate and cake (rungrot922j)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14453924/medium/36863c65ecd19173d8783dda10b2ce3a.jpeg",
- "joined": "2020-10-12 18:55:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14454330",
- "username": "ahteewat123",
- "fullName": "Athiwat Klauythong (ahteewat123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14454330/medium/7b3646170a6320e44583d59e738f0db9.jpeg",
- "joined": "2020-10-13 03:53:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14454884",
- "username": "howdyAnkit",
- "fullName": "ANKIT_PAL (howdyAnkit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14454884/medium/b1d7baf77a5bcf683b116f3ae6052c9d.jpeg",
- "joined": "2020-10-13 11:14:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14456286",
- "username": "k0s",
- "fullName": "k0s",
- "avatarUrl": "https://www.gravatar.com/avatar/1319ba80f7b88aa379b5b0265e116238?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-10-17 13:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14456614",
- "username": "matousch",
- "fullName": "David Matoušek (matousch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14456614/medium/36397004003e01786ac8e254a78c6e74.jpeg",
- "joined": "2020-10-14 16:11:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14456878",
- "username": "Osama210",
- "fullName": "Osama ma (Osama210)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14456878/medium/f1044b2a8cc01db820b77f89b4d9d8c6.jpg",
- "joined": "2020-10-14 21:47:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14460678",
- "username": "ranjanmanishr",
- "fullName": "Manish Ranjan (ranjanmanishr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14460678/medium/3821327168d8e9ac03243100466d9fa1.jpeg",
- "joined": "2020-10-17 20:53:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14461372",
- "username": "hayalet35",
- "fullName": "hayalet35",
- "avatarUrl": "https://www.gravatar.com/avatar/839adfbf4335b6e32461620ee01902c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 12:56:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14463078",
- "username": "poojaranjan",
- "fullName": "Pooja Ranjan (poojaranjan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14463078/medium/0f7b024651717543c907bb53c95160bf.jpeg",
- "joined": "2020-10-19 16:52:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14463136",
- "username": "RLlane2126",
- "fullName": "Lane rashaad (RLlane2126)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14463136/medium/c1181368fcbb1e6baf3e64eaab8227e1.jpeg",
- "joined": "2020-10-19 17:53:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14466218",
- "username": "LQS_ESEM_linguist",
- "fullName": "LQS_ESEM_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/d5f26cf99fa7c6116b75f499f8de93ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 13:41:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14470932",
- "username": "vinbrain.test",
- "fullName": "VinBrain Test (vinbrain.test)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14470932/medium/1c937ed466dea6312c65aedda9cee500.jpg",
- "joined": "2020-10-26 04:21:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14450042",
- "username": "Roxana_Calderon",
- "fullName": "Roxana_Calderon",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14450042/medium/e15c003f09ec85859808ac43512501c6.png",
- "joined": "2020-10-09 17:21:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14480842",
- "username": "Jtaylor89015",
- "fullName": "Jtaylor89015",
- "avatarUrl": "https://www.gravatar.com/avatar/7b9f3366ecd39a7b54e1d62e107fd0d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-02 14:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14481500",
- "username": "Diana1941",
- "fullName": "Diana1941",
- "avatarUrl": "https://www.gravatar.com/avatar/0bf123a83b3e58235bcbc4f2dae13aab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 11:49:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14481706",
- "username": "dimateos",
- "fullName": "dimateos",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14481706/medium/989c3f3f12d3763446738367b2d40c0e.jpeg",
- "joined": "2020-11-17 04:34:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14482564",
- "username": "simona0823",
- "fullName": "Mingyue Feng (simona0823)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14482564/medium/7dbbc716fc051260c3b37e7f13a08cf7.jpeg",
- "joined": "2020-11-03 21:37:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14486942",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/16268ea60e2e299c2435880d14652dcc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-07 09:37:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14490312",
- "username": "karocyt",
- "fullName": "Kévin Azoulay (karocyt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14490312/medium/992555240c2c722030165bf182e80e76.jpeg",
- "joined": "2020-11-10 02:10:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14492630",
- "username": "freonesuka",
- "fullName": "Андрей Вальтер (freonesuka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14492630/medium/0feb2d78f45cfdcb6f92f5061ffc44e8.jpg",
- "joined": "2021-10-07 21:10:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 14
- },
- {
- "user": {
- "id": "14493582",
- "username": "ibLeDy",
- "fullName": "Iago Alonso (ibLeDy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14493582/medium/df1bec608e42094e00afb3578fe423f6.jpeg",
- "joined": "2020-12-27 16:55:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14494918",
- "username": "Scmars",
- "fullName": "Scmars",
- "avatarUrl": "https://www.gravatar.com/avatar/ccfcfbcbe6827510871a1c9c5524d450?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-13 11:24:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14497466",
- "username": "Tomasz80053950",
- "fullName": "Tomasz80053950",
- "avatarUrl": "https://www.gravatar.com/avatar/210a492b28765302274b11cef115900e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-15 17:31:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14497686",
- "username": "pisuthd",
- "fullName": "ohmz (pisuthd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14497686/medium/ba1721d461a19e33745ecafefde6eaad.jpeg",
- "joined": "2020-11-15 23:31:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14498178",
- "username": "3kqgt0cl",
- "fullName": "Donald Iljazi (3kqgt0cl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14498178/medium/17a52dd71aa2eb0f27fae7203510d233.jpg",
- "joined": "2020-11-28 05:18:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14450262",
- "username": "Tatianne2000",
- "fullName": "Tatianne2000",
- "avatarUrl": "https://www.gravatar.com/avatar/8b6a35fac29cf1de99ebf651649ee149?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-10-14 22:15:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14449392",
- "username": "ssggg2015",
- "fullName": "غادة الذياب (ssggg2015)",
- "avatarUrl": "https://www.gravatar.com/avatar/01a678cb8914f292f088fb3b3fe28af8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-24 01:34:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14406046",
- "username": "pidproc",
- "fullName": "Process Admin (pidproc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14406046/medium/f451ca8dc97fd25ace517f11543ca10e.jpg",
- "joined": "2020-09-07 04:22:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14424588",
- "username": "crowdsourcekurdi",
- "fullName": "Crowdsource Kurdish (crowdsourcekurdi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14424588/medium/f5640057ffa61f6c90deb847b4c2b622.jpeg",
- "joined": "2021-09-29 04:00:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14407620",
- "username": "1mbsuperstar",
- "fullName": "Сірьожа Мельник (1mbsuperstar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14407620/medium/18d3d18e422dda2fa484ffb0be7a3991.jpeg",
- "joined": "2020-12-21 19:54:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14408684",
- "username": "sadanaitongnun",
- "fullName": "SGTDANAITONGNUN TH# แม๊กเหนือเมฆ (sadanaitongnun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14408684/medium/2f40952af4e1418b6c27bfe6b919a705.jpeg",
- "joined": "2020-09-09 00:46:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14410638",
- "username": "Gedalyahu",
- "fullName": "Gedalyahu",
- "avatarUrl": "https://www.gravatar.com/avatar/39dc5b730920239058530e0a6e7654e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-10 12:27:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14410848",
- "username": "vanohaa",
- "fullName": "Ivan Bodnariuk (vanohaa)",
- "avatarUrl": "https://www.gravatar.com/avatar/73810f162ad0c27e24731010b1fe8b4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-05 14:24:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14411552",
- "username": "LQS_HU_Linguist",
- "fullName": "LQS_HU_Linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/debd0759ebd4f0a2323b63d06d3fbd33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 07:21:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14411642",
- "username": "MissNox",
- "fullName": "MissNox",
- "avatarUrl": "https://www.gravatar.com/avatar/21a0cee81c109157df10761da1b51ae4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 08:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14411940",
- "username": "Nadzir",
- "fullName": "Nadzir",
- "avatarUrl": "https://www.gravatar.com/avatar/0dd0b2398b7e611878a0735e74639aee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 13:11:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14414268",
- "username": "enricserra90",
- "fullName": "Enric Serra (enricserra90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14414268/medium/e35a7a7c2b65ad37a36cc01551c392b0.jpeg",
- "joined": "2020-09-13 15:34:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14415348",
- "username": "ttrautmann",
- "fullName": "Tamás Trautmann (ttrautmann)",
- "avatarUrl": "https://www.gravatar.com/avatar/cf1d9b1df5cfc03c3668484da038d8ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 08:03:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14416498",
- "username": "MorettiViktoria",
- "fullName": "MorettiViktoria",
- "avatarUrl": "https://www.gravatar.com/avatar/0bfe032234f740134afbf961ff2d6fd7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-15 09:44:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14417018",
- "username": "davidstrouk",
- "fullName": "David Strouk (davidstrouk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14417018/medium/abde2f21855045b52255d4dbd6b18190.png",
- "joined": "2020-09-15 19:31:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14422568",
- "username": "twenty1pi",
- "fullName": "twenty1pi",
- "avatarUrl": "https://www.gravatar.com/avatar/a10ab863f67b2e78f9da77550bf2e6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-19 11:15:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14424634",
- "username": "Salak",
- "fullName": "Salak",
- "avatarUrl": "https://www.gravatar.com/avatar/150f8f7be10596a7463c0a32a0f7f28f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-20 16:25:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14445396",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/7e280a0a542ba9750dd699afb03db9a2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 14:04:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14427020",
- "username": "mvelebit",
- "fullName": "mvelebit",
- "avatarUrl": "https://www.gravatar.com/avatar/8b3c7265b6372156c006785b501942b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-22 08:10:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14428258",
- "username": "Vilberg",
- "fullName": "Vilberg",
- "avatarUrl": "https://www.gravatar.com/avatar/d9f7001df65571d9688e1eeeebde7dd6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-23 05:19:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14428746",
- "username": "phfives55",
- "fullName": "phil Fives (phfives55)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14428746/medium/afd1cf532b731c5e2173ab126d03c880.jpg",
- "joined": "2020-09-23 11:18:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14432240",
- "username": "pedroocalado",
- "fullName": "Pedro Calado (pedroocalado)",
- "avatarUrl": "https://www.gravatar.com/avatar/ddcc06f414afca43cae54ab7b8089dcc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-25 17:49:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14434570",
- "username": "lamacat",
- "fullName": "lamacat",
- "avatarUrl": "https://www.gravatar.com/avatar/091a7fa80c8946b11412338bd1f89be4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 13:15:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14435238",
- "username": "tongtongpsc",
- "fullName": "tongtongpsc",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14435238/medium/92e24e643cd96da6cb32237c1aa8e51a.jpg",
- "joined": "2020-09-28 10:21:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14436666",
- "username": "Kozimbek",
- "fullName": "Kozim Kamalov (Kozimbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14436666/medium/adfa4eb257a0fa89de213f4d71e579f9.jpeg",
- "joined": "2020-09-29 12:18:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14437788",
- "username": "talgatbek",
- "fullName": "Talgatbek Kainarov (talgatbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14437788/medium/613193fea546da673bb8490a504d993d.jpg",
- "joined": "2021-09-26 07:55:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14438822",
- "username": "radidetrove24393",
- "fullName": "fix Antakara (radidetrove24393)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14438822/medium/c936e3a14b873f9790b81e9a55f56126.jpeg",
- "joined": "2021-01-09 01:37:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14440508",
- "username": "Alina_RU",
- "fullName": "Alina_RU",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14440508/medium/1fa0afd59cad693e0b9ffab7bc776948.jpg",
- "joined": "2020-10-09 16:59:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14440850",
- "username": "arrobaxbit",
- "fullName": "arrobaxbit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14440850/medium/55b28941c57977ac6c45498770abb6ed.jpg",
- "joined": "2021-01-15 17:35:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14442164",
- "username": "nigraff",
- "fullName": "Николай Графф (nigraff)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442164/medium/a1facd7a2ba5c9f84b2a3240bafd3c02.jpeg",
- "joined": "2020-10-03 16:24:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14442984",
- "username": "marseluca",
- "fullName": "Luca Marseglia (marseluca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442984/medium/2f899f501af675c0081dff102f33b2ab.jpg",
- "joined": "2021-08-22 08:31:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14088799",
- "username": "adgasdghdh",
- "fullName": "adgasdghdh",
- "avatarUrl": "https://www.gravatar.com/avatar/c89739739291baeb4d8c08b016a70196?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-25 05:30:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14086465",
- "username": "iCalcreator",
- "fullName": "Kjell-Inge Gustafsson (iCalcreator)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14086465/medium/0de37044e44ab1615c40877703668c3b.png",
- "joined": "2020-01-23 03:43:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559632",
- "username": "lvchnk88",
- "fullName": "Sergii Levchenko (lvchnk88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559632/medium/2f466f4630615ab7f0494094c24736e9.jpeg",
- "joined": "2021-01-02 12:09:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13714487",
- "username": "DarkSpace",
- "fullName": "DarkSpace",
- "avatarUrl": "https://www.gravatar.com/avatar/13f5d2754af68e865c6477536f0fb7cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 12:07:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13619757",
- "username": "0101010101",
- "fullName": "0101010101",
- "avatarUrl": "https://www.gravatar.com/avatar/81ba7a099b6d6dd66b2f0161af097f4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-08 07:29:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13623483",
- "username": "DraxGaming",
- "fullName": "DraxGaming",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13623483/medium/27537657d62787337cf275fbe3a8a2f2.png",
- "joined": "2020-06-01 05:58:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13628871",
- "username": "koveek",
- "fullName": "koveek",
- "avatarUrl": "https://www.gravatar.com/avatar/7fff4af5d2e94d78e8e0bbc6d863e3bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 11:55:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13629413",
- "username": "haikyuu.99",
- "fullName": "Muhammad Pandam Pramudya (haikyuu.99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13629413/medium/b9910bfed553c9bb03b18ff1d614273b.jpg",
- "joined": "2020-12-22 11:30:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13639035",
- "username": "aingbobotoh1933",
- "fullName": "Sayid Almahdy (aingbobotoh1933)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13639035/medium/65e772fffb5e14f329029586e6f2e090.jpeg",
- "joined": "2019-11-03 18:36:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13645461",
- "username": "Rixcian",
- "fullName": "Rixcian",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13645461/medium/49e26bb6cb92868a712624036a627dc3.png",
- "joined": "2021-07-23 11:22:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13652957",
- "username": "danilolutz",
- "fullName": "Danilo Lutz (danilolutz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13652957/medium/838bc05277fe089bf5ff0d82a48e1ed1.jpeg",
- "joined": "2021-07-30 08:18:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13658603",
- "username": "JMCoquoz",
- "fullName": "JMCoquoz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13658603/medium/67649e4943de146146cee3deb99fae47.jpg",
- "joined": "2021-03-03 04:26:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13671867",
- "username": "blackeye-_",
- "fullName": "แบล็ค' อาย' (blackeye-_)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13671867/medium/a28dd7416176046e7e7959916d4bd2c4.jpeg",
- "joined": "2019-10-22 22:19:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13697059",
- "username": "manfer33",
- "fullName": "Manuel J. Fernández (manfer33)",
- "avatarUrl": "https://www.gravatar.com/avatar/f9dee6ccff03adacb1ace021fba057b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 18:22:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13702183",
- "username": "kawlove250139",
- "fullName": "สุกัญญา ตาลรัศมี (kawlove250139)",
- "avatarUrl": "https://www.gravatar.com/avatar/ce27be1547552d05485034c2836c578a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-26 11:22:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13706399",
- "username": "ivan_pleva",
- "fullName": "Ivan Pleva (ivan_pleva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13706399/medium/af4d8f749b7fb15836378ad368ac7279.jpg",
- "joined": "2020-05-13 05:22:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13714631",
- "username": "oonid",
- "fullName": "oon arfiandwi (oonid)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13714631/medium/613b365f3428c6f23b3ea3cf1d7549ec.jpg",
- "joined": "2020-07-29 12:17:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13616778",
- "username": "spoorthi_s",
- "fullName": "Spoorthi Satish (spoorthi_s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13616778/medium/b3ca39ba82be6d81f60d6f90aeb7f5b0.jpeg",
- "joined": "2021-05-14 12:17:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13715077",
- "username": "alexkoala",
- "fullName": "AlexKoala (alexkoala)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13715077/medium/9b0a31ce6045c9e83de3117021fff314.png",
- "joined": "2020-05-29 12:25:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13718717",
- "username": "Bartolumiu",
- "fullName": "Bartolumiu",
- "avatarUrl": "https://www.gravatar.com/avatar/e5de67486ef5e5afe9cc67b56a6eef23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-02 08:36:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13720923",
- "username": "adjobs70",
- "fullName": "e.g NguyenVietThao (adjobs70)",
- "avatarUrl": "https://www.gravatar.com/avatar/e4e72c286eeabd8c5e5dc107f0bd4922?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-24 19:52:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13728695",
- "username": "toms049",
- "fullName": "Tom Stanek (toms049)",
- "avatarUrl": "https://www.gravatar.com/avatar/0bcedfa4e3dee63ee940c3006e936e0a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-16 15:54:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13730929",
- "username": "sahebkarami",
- "fullName": "sahebkarami",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13730929/medium/6b96168cdf21a2193efb9ead397222f0.jpeg",
- "joined": "2019-11-25 14:40:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13731191",
- "username": "syahmin",
- "fullName": "syahmin",
- "avatarUrl": "https://www.gravatar.com/avatar/04ff2c9453e2fc98ec6c11e5a1d21441?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-20 10:24:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13738699",
- "username": "ekkarat.w",
- "fullName": "เอกรัตน์ วารีสิงห์ (ekkarat.w)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13738699/medium/61352d9012049e663411138ce58e21bf.jpg",
- "joined": "2020-02-20 00:58:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13744177",
- "username": "Asix",
- "fullName": "Alexei Onishchuk (Asix)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13744177/medium/dbee0e581341d2b96a5a12c620b1e5fa.png",
- "joined": "2020-07-19 20:48:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13744749",
- "username": "matias.desalvo",
- "fullName": "matias.desalvo",
- "avatarUrl": "https://www.gravatar.com/avatar/32771b691306ed8b3debf34518df0bc6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 23:44:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13756347",
- "username": "glazec",
- "fullName": "glaze (glazec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13756347/medium/461f182cdd50992bffca120a23e5c7eb.jpeg",
- "joined": "2021-05-26 22:49:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13756885",
- "username": "Kenjii",
- "fullName": "Kenjii",
- "avatarUrl": "https://www.gravatar.com/avatar/2676e1ee36216229cfc692b9ce1e859c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 12:07:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13774815",
- "username": "Olena_O",
- "fullName": "Olena_O",
- "avatarUrl": "https://www.gravatar.com/avatar/c95ae0e9666392cdd66ff50a70b5d63e?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 18:11:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13618985",
- "username": "itsthesola10",
- "fullName": "Karim Vergnes (itsthesola10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13618985/medium/7dc1a64f667dd13f60de7487b886d8d3.jpeg",
- "joined": "2021-02-18 10:05:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13613906",
- "username": "Leopinto",
- "fullName": "Leopinto",
- "avatarUrl": "https://www.gravatar.com/avatar/1eb6a8d18a610c5a592046fe77b5dd28?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 02:01:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13805545",
- "username": "crowbit",
- "fullName": "crowbit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13805545/medium/8b944306602f95c5d9adce2ef8bb68e7.jpg",
- "joined": "2021-09-05 08:08:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13523337",
- "username": "ligeirinho",
- "fullName": "Marcelo Cardoso (ligeirinho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13523337/medium/780314e8c3d2fc36eb47aafbfef1cbcf.jpg",
- "joined": "2021-08-20 16:08:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13480165",
- "username": "Moravia_Translator1_ES",
- "fullName": "Moravia_Translator1_ES",
- "avatarUrl": "https://www.gravatar.com/avatar/7453748d7457fc017bca0cb565a29b34?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-17 06:03:51"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13483129",
- "username": "matteopey",
- "fullName": "matteopey",
- "avatarUrl": "https://www.gravatar.com/avatar/ed7439b989f1706476071b7071ff7ff0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 09:17:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13486558",
- "username": "kadd",
- "fullName": "K. GÜNAY (kadd)",
- "avatarUrl": "https://www.gravatar.com/avatar/c4e1447da738a3d65201db3b960a9d3b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-05 08:04:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13495634",
- "username": "aleksnder74",
- "fullName": "Александр Кирьянов (aleksnder74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13495634/medium/2bb6c9935c48233c344c42e22f7a0b64.jpg",
- "joined": "2021-05-16 21:04:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13497805",
- "username": "Catalan_MIUIProofreader",
- "fullName": "Catalan_MIUIProofreader",
- "avatarUrl": "https://www.gravatar.com/avatar/f7de0dc6ba59bf22dd9e57543f6ef4b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-29 22:17:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13500944",
- "username": "krisfremen",
- "fullName": "krisfremen",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13500944/medium/5a2ea6e9d1e7a6138d3eaf8f83a36b84.jpeg",
- "joined": "2021-02-14 20:26:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13505487",
- "username": "gorkemakova",
- "fullName": "Görkem Akova (gorkemakova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13505487/medium/d53a04e33d027fa9892cd33ce25d077b.jpg",
- "joined": "2020-01-09 15:56:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13510211",
- "username": "MirageIonova",
- "fullName": "Alberto Gómez Herrera (MirageIonova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png",
- "joined": "2020-10-01 18:59:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13512385",
- "username": "sleepy-maker",
- "fullName": "Koji Kanao (sleepy-maker)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13512385/medium/2063c31bc02bc3ecab628d6369b74048.jpeg",
- "joined": "2021-04-10 01:14:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13513343",
- "username": "IwAn11",
- "fullName": "IwAn11",
- "avatarUrl": "https://www.gravatar.com/avatar/a4816e34602d9fd985da36f8b9144514?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-23 11:13:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13516356",
- "username": "L-mir",
- "fullName": "L-mir",
- "avatarUrl": "https://www.gravatar.com/avatar/b4ad9a5979153176c83895bc5139cd7f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 22:08:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13517199",
- "username": "gustavnovotny",
- "fullName": "gustavnovotny",
- "avatarUrl": "https://www.gravatar.com/avatar/b6e4bd86c6b2e9c4863855bde9250545?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 12:11:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13543707",
- "username": "romanenkoisnot",
- "fullName": "Илья Романенко (romanenkoisnot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13543707/medium/f14c7c2e75adcbdf41c85ab9906f0c31.jpg",
- "joined": "2020-12-28 06:31:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13607408",
- "username": "P1X3L0V4",
- "fullName": "Anna Karpińska (P1X3L0V4)",
- "avatarUrl": "https://www.gravatar.com/avatar/006df509781bf12e7a75c092a2b8d9c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 02:56:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13544774",
- "username": "LukaK",
- "fullName": "Luka Kropec (LukaK)",
- "avatarUrl": "https://www.gravatar.com/avatar/4536fcbc2dc226c427318126070e090d?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 15:15:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 18,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "13546290",
- "username": "YBHwang",
- "fullName": "Yuchan Hwang (YBHwang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13546290/medium/5bed4686e2d38160c92ffa384999c958.jpeg",
- "joined": "2021-06-22 11:18:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13554238",
- "username": "snns999",
- "fullName": "MOHD AL. (snns999)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13554238/medium/b000a0a79abe7bd6e039852d7e741c9d.jpg",
- "joined": "2021-10-22 05:11:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13555226",
- "username": "mactkg",
- "fullName": "Kenta Hara (mactkg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13555226/medium/4d625152a469f4a844d2381d81b4af2f.png",
- "joined": "2021-08-10 08:15:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13555518",
- "username": "linxd",
- "fullName": "linxd",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13555518/medium/7857fc7cd3690f272e61c6c33185c508.png",
- "joined": "2021-05-20 21:49:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13558846",
- "username": "danielwoo394",
- "fullName": "CrazyBirdie1 (danielwoo394)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13558846/medium/8190d85641d5001ee3ac3766b1dc5896.jpeg",
- "joined": "2020-07-20 06:45:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13559834",
- "username": "DasMergo",
- "fullName": "Seied Ali Mirkarimi (DasMergo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559834/medium/1022545f1391447b44113ac76076957a.jpg",
- "joined": "2021-07-21 14:57:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13577083",
- "username": "editor-Ajian",
- "fullName": "editor-Ajian",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13577083/medium/48cf1f040e4eba541c0d759d1a94f417.png",
- "joined": "2019-09-15 22:29:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13590729",
- "username": "Dmitryrusskih",
- "fullName": "Dmytro Russkikh (Dmitryrusskih)",
- "avatarUrl": "https://www.gravatar.com/avatar/7321434d839dfc7400c5fcd6717b8e6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-07 09:08:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13599656",
- "username": "e2f_kr_c3",
- "fullName": "e2f_kr_c3",
- "avatarUrl": "https://www.gravatar.com/avatar/a3012f2dfcffdaf275b1e4275e48fe21?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-01 18:23:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13604472",
- "username": "kratos1325",
- "fullName": "Kratos16 (kratos1325)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13604472/medium/344388761ac2be39a4205c172f98d22b.jpg",
- "joined": "2021-01-09 22:23:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13605239",
- "username": "cobject",
- "fullName": "cobject",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13605239/medium/625d6683b8f2d702392d3ac8b15c5494.png",
- "joined": "2019-07-01 23:36:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13785527",
- "username": "iTwalkers",
- "fullName": "iTwalkers",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13785527/medium/91145be2a09a7801ebf8bcce44e121a1.jpg",
- "joined": "2021-01-29 09:52:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13817659",
- "username": "Xam089951",
- "fullName": "Xam089951",
- "avatarUrl": "https://www.gravatar.com/avatar/51a567d03e673417de7b5d347bf65156?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 18:14:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13475905",
- "username": "horjeacosmin",
- "fullName": "Cosmin Horjea (horjeacosmin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13475905/medium/c85df7cdae79c8a2a630b30e6fc6685d.jpg",
- "joined": "2019-10-29 16:04:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959141",
- "username": "peijie",
- "fullName": "Peijie (peijie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959141/medium/82f925f467905ab620b70a4b48eb25e8.jpg",
- "joined": "2019-08-22 07:38:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13925029",
- "username": "retzger",
- "fullName": "retzger",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13925029/medium/4e55c5a9398e56ef1a3039b76a81f120.png",
- "joined": "2019-12-14 19:14:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13928105",
- "username": "neapper.com",
- "fullName": "neapper.com",
- "avatarUrl": "https://www.gravatar.com/avatar/46a67ab73362f10c9598cb5adf447405?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-05 05:22:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13931633",
- "username": "khg0712",
- "fullName": "HyungGyu Kim (khg0712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13931633/medium/f51a62e6400540a88293510ae3412172.png",
- "joined": "2021-04-24 16:29:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13935389",
- "username": "mzfshark",
- "fullName": "Mauricio Shark (mzfshark)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13935389/medium/02b9a2c2cace48461830694df7bece6b.jpg",
- "joined": "2021-03-10 06:22:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13937453",
- "username": "umeshjha1998",
- "fullName": "Umesh Jha (umeshjha1998)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13937453/medium/11a2603b1de4e5ee8da759de59f6df47.jpg",
- "joined": "2021-08-09 15:28:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13938553",
- "username": "ahmetemin08",
- "fullName": "Ahmet Emin Koçal (ahmetemin08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13938553/medium/93499dd97244086f423ea0611c82e186.jpg",
- "joined": "2019-10-25 17:11:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13939747",
- "username": "klaudek-pakula",
- "fullName": "klaudek-pakula",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13939747/medium/b08dc14cf85baffa048518d87afa3c14.jpeg",
- "joined": "2021-04-24 10:54:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13942767",
- "username": "anujgupta",
- "fullName": "anujgupta",
- "avatarUrl": "https://www.gravatar.com/avatar/3e0558ca7fc96b0bb61a87b236685ad8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-06 09:30:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13951877",
- "username": "oht-test",
- "fullName": "oht-test",
- "avatarUrl": "https://www.gravatar.com/avatar/9a42762d92c2e4ed876198ca878178d9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-24 07:10:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13957651",
- "username": "souptacular",
- "fullName": "souptacular",
- "avatarUrl": "https://www.gravatar.com/avatar/8e5665155922ace7efbb4907f8d88d53?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-20 23:39:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13958039",
- "username": "wimel",
- "fullName": "wimel",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13958039/medium/b08ed358513657e8b3d502329886ff60.png",
- "joined": "2019-08-27 12:02:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959135",
- "username": "Jokyash",
- "fullName": "Kaji (Jokyash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959135/medium/94f75079747815393802e1f7d584eafb.jpg",
- "joined": "2019-08-22 07:26:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959163",
- "username": "bobjiang",
- "fullName": "Bob Jiang (bobjiang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959163/medium/f0592e36e25621172a739a84f69d3099.jpeg",
- "joined": "2019-08-22 08:03:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13923113",
- "username": "css",
- "fullName": "css",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13923113/medium/78cc90f7fd2e2aa6ee282405ceb9fd1d.jpg",
- "joined": "2020-11-18 11:28:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959165",
- "username": "hanzoh",
- "fullName": "Mayato Hattori (hanzoh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959165/medium/5b5d25560b26caab0ff4c839424126ab.jpg",
- "joined": "2019-08-22 08:04:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959209",
- "username": "Filtertron",
- "fullName": "Jean Zundel (Filtertron)",
- "avatarUrl": "https://www.gravatar.com/avatar/1cbc889d0c73021eb6848405250cace1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 08:46:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959227",
- "username": "Hachemih",
- "fullName": "Hachemih",
- "avatarUrl": "https://www.gravatar.com/avatar/161a6484fb9c8e2b3cb0f68aa7090c92?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 09:07:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959263",
- "username": "quantumfranci",
- "fullName": "quantumfranci",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959263/medium/630a8a52fde725ae1cc684e056bff44f.jpg",
- "joined": "2019-08-22 09:30:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959345",
- "username": "will17",
- "fullName": "will17",
- "avatarUrl": "https://www.gravatar.com/avatar/75985612c9ae20b39b4703866e19899d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 10:54:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959389",
- "username": "inlak16",
- "fullName": "inlak16",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png",
- "joined": "2019-08-22 11:41:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 17,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "13959409",
- "username": "Crnls",
- "fullName": "Cornelius Ihle (Crnls)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959409/medium/6dd1d0fc14e003674c159aa9e911c4cb.jpg",
- "joined": "2019-08-22 11:56:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959413",
- "username": "jonnycrypto",
- "fullName": "jonnycrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/e5920de8c353bca8434dd58a9e272436?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 11:58:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959431",
- "username": "pedrorivera",
- "fullName": "Pedro Rivera (pedrorivera)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959431/medium/5b94294dd0b65203871821c8f2c74f4c.png",
- "joined": "2019-08-22 12:11:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959445",
- "username": "kalloc",
- "fullName": "kalloc",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959445/medium/e238337a29b4a7653ec4998a15677820.jpeg",
- "joined": "2019-08-22 12:23:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959455",
- "username": "fede.viar",
- "fullName": "Fede Viarnés (fede.viar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959455/medium/c26b345de3294b71a14505b3fb93b412.jpeg",
- "joined": "2019-08-22 12:35:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959473",
- "username": "xaler",
- "fullName": "xaler",
- "avatarUrl": "https://www.gravatar.com/avatar/e0b31348b98eb415336505db3b130695?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 12:54:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13924693",
- "username": "weshope611",
- "fullName": "Wes Hope (weshope611)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13924693/medium/bdd0b5d643bb83ead9e861806d32a823.jpg",
- "joined": "2019-12-13 08:08:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13918813",
- "username": "hanhscylla",
- "fullName": "hanhscylla",
- "avatarUrl": "https://www.gravatar.com/avatar/52b56e8b78cf50ec4d8dd7e522e22fc8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 06:14:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13826385",
- "username": "ma.de",
- "fullName": "ma.de",
- "avatarUrl": "https://www.gravatar.com/avatar/ccee80f57de9d8173f772ba497374be1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-07 03:21:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13878813",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/dbab6b6e01c9a1ec979b27c96ef1c095?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-28 08:11:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13830805",
- "username": "kecrily",
- "fullName": "Percy (kecrily)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13830805/medium/93feb6bb91075026d6409acb05c90edd.jpeg",
- "joined": "2021-07-05 04:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13831937",
- "username": "atamerco23",
- "fullName": "Ata Çağan Atamer (atamerco23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13831937/medium/e1a794be136eb53ee2ec1d58afe8f370.jpg",
- "joined": "2021-08-06 09:13:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13839387",
- "username": "lenhung9171",
- "fullName": "thi hong nhung le (lenhung9171)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13839387/medium/c76f0542f471c21514c999658555c994.jpg",
- "joined": "2019-12-13 06:12:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13843383",
- "username": "rezarria",
- "fullName": "rezarria",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13843383/medium/d397cd99de14a9d74f3962239e0db91a.jpg",
- "joined": "2021-06-08 07:28:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13845025",
- "username": "Bajoodle",
- "fullName": "Bajoodle",
- "avatarUrl": "https://www.gravatar.com/avatar/9a43f170b18626ddce403ce0b81ced35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-11 15:41:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13854995",
- "username": "muten85",
- "fullName": "muten85",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13854995/medium/201d1d1193a904192e9d8a18d70d0556.png",
- "joined": "2021-06-04 08:08:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13856939",
- "username": "Fooftilly",
- "fullName": "Nikola Perović (Fooftilly)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13856939/medium/fa8d8cedef0ed56ad4d28a37bf19e389.jpeg",
- "joined": "2020-12-21 15:33:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13857721",
- "username": "durgutkoray",
- "fullName": "KORAY DURGUT (durgutkoray)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13857721/medium/4d6521ed37dba353c0cd46985e370a50.jpg",
- "joined": "2019-11-27 02:47:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13862297",
- "username": "wiaruskos",
- "fullName": "Farystank (wiaruskos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13862297/medium/e9b8fc637a18cce3fd1bc30527fb9ee5.jpg",
- "joined": "2021-10-02 10:34:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13869145",
- "username": "cnpltdncsln",
- "fullName": "Canpolat Dinçaslan (cnpltdncsln)",
- "avatarUrl": "https://www.gravatar.com/avatar/5b6f1971e37ccb9eebf449270971ca7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-17 17:53:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13872587",
- "username": "n1clud3",
- "fullName": "Mykola Malovanyi (n1clud3)",
- "avatarUrl": "https://www.gravatar.com/avatar/4bf74ea2c06025b594062f699550ccc8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 12:51:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13872871",
- "username": "AntwnhsM.",
- "fullName": "Antwnhs M. (AntwnhsM.)",
- "avatarUrl": "https://www.gravatar.com/avatar/b478b15a022566e1891c6ec6055af76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-31 05:36:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13887845",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/5f683c07ef9498a01aa0775006bef84c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-10 02:53:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13910767",
- "username": "doublek84",
- "fullName": "doublek84",
- "avatarUrl": "https://www.gravatar.com/avatar/38392e5ce2987a16f10ccb8b78e094e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-07 20:13:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13893213",
- "username": "RelliuG",
- "fullName": "Isaac Silva (RelliuG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13893213/medium/88d6b8bda7b6073efd27b5a1799694cc.jpeg",
- "joined": "2021-09-06 08:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13894501",
- "username": "yuchtyan",
- "fullName": "yuchtyan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13894501/medium/beb50eb157c8ed6305719b269fe5e56d.png",
- "joined": "2021-08-28 20:26:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13902877",
- "username": "wanseob",
- "fullName": "Wanseob Lim (wanseob)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13902877/medium/1f83176d2935849b5c4a30ef03cee94b.jpg",
- "joined": "2019-07-01 23:06:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903009",
- "username": "igntsh",
- "fullName": "Heo Ignatius (igntsh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903009/medium/04ae0d1fd930da54d2c40b2d5e37e31c.jpg",
- "joined": "2019-07-02 02:09:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903047",
- "username": "hunryu",
- "fullName": "Hun Ryu (hunryu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903047/medium/6a9d0bbe46a24533019f33bee254b265.jpg",
- "joined": "2019-07-02 02:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903057",
- "username": "Jumin_Jessica",
- "fullName": "Jumin_Jessica",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903057/medium/049fcb6eb765b002ac5e5ee318fc3960.png",
- "joined": "2019-07-02 03:06:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903063",
- "username": "somniumism",
- "fullName": "SeungMin Lee (somniumism)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903063/medium/504504c3a481b7774dba86fbd2872016.jpeg",
- "joined": "2019-07-02 03:09:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903111",
- "username": "philnshoo",
- "fullName": "Sangphil Kim (philnshoo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903111/medium/48315081e91573a7ac2f784e04651cbc.png",
- "joined": "2019-07-02 03:40:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903145",
- "username": "gjwjdangod",
- "fullName": "gjwjdangod",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903145/medium/4b79af04dc03c8bcbae79a1ed64a907b.jpeg",
- "joined": "2019-07-02 04:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903167",
- "username": "hskang9",
- "fullName": "Hyungsuk Kang (hskang9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903167/medium/db2b2e0dd9d6e8eb028cb29c3808a7a4.jpeg",
- "joined": "2019-07-02 04:25:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13903787",
- "username": "vinhci5",
- "fullName": "Vinh (vinhci5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903787/medium/41c8c511377c86ed67aa786be0c4ea33.png",
- "joined": "2020-05-17 05:31:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13904511",
- "username": "jeedani",
- "fullName": "jeedani",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13904511/medium/6862a85849c0483552067158ca0f3b07.jpg",
- "joined": "2019-07-03 03:46:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13905675",
- "username": "joshstark",
- "fullName": "joshstark",
- "avatarUrl": "https://www.gravatar.com/avatar/071d079eb7b1142c236a62f7a0592f77?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-03 12:54:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13475981",
- "username": "imfasa",
- "fullName": "imfasa",
- "avatarUrl": "https://www.gravatar.com/avatar/5d8ff0d4ff92058c76fdd3aa74adbad2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-17 10:12:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13475148",
- "username": "windasd",
- "fullName": "windasd",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13475148/medium/aaff72927eab9014c4675b42d0b3dcb6.jpg",
- "joined": "2021-04-10 10:28:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959495",
- "username": "ONeZetty",
- "fullName": "ONeZetty",
- "avatarUrl": "https://www.gravatar.com/avatar/3c9ec2f98f967e8cf1dccfdf30eef6d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 13:19:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12673086",
- "username": "alvaro3639",
- "fullName": "Alvaro Gutierrez (alvaro3639)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12673086/medium/c4dd31ecaaffcae28a9ec421a8a12248.jpg",
- "joined": "2021-06-12 07:52:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12582189",
- "username": "flaan4me",
- "fullName": "Sufian Rassam (flaan4me)",
- "avatarUrl": "https://www.gravatar.com/avatar/b61f24358881ca908f1f3d418d45b10d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 14:23:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12582943",
- "username": "sorumfactory",
- "fullName": "shlv2001 (sorumfactory)",
- "avatarUrl": "https://www.gravatar.com/avatar/b4ac638295a8e37fc67b5b5a5bc3df2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-01 22:59:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12590247",
- "username": "gursingh",
- "fullName": "Gursharnjit Singh (gursingh)",
- "avatarUrl": "https://www.gravatar.com/avatar/911f7049d7660c93e2d0e01245ee2d4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-07-11 14:40:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12591126",
- "username": "aikyu99",
- "fullName": "MeArjiet (aikyu99)",
- "avatarUrl": "https://www.gravatar.com/avatar/b0232e61a3ecdc0f29ed9ee87af4a6fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 05:47:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12596551",
- "username": "lidiam",
- "fullName": "Lidia Mayoral (lidiam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12596551/medium/4d64ba444829e0a830179079cbf8fd80.png",
- "joined": "2021-08-09 21:19:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12606390",
- "username": "tapikdj",
- "fullName": "Артем Неволько (tapikdj)",
- "avatarUrl": "https://www.gravatar.com/avatar/bc926fae7ca33e4bf7849ec14b11ed7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 05:50:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12607142",
- "username": "marc_jonkers",
- "fullName": "Marc Jonkers (marc_jonkers)",
- "avatarUrl": "https://www.gravatar.com/avatar/2e7a050677249e9cf7b2de6d2b709489?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 02:09:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12629826",
- "username": "ley2xc",
- "fullName": "agung mujiono (ley2xc)",
- "avatarUrl": "https://www.gravatar.com/avatar/60013fdc1b746df9da89f5f6f0624fba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 12:33:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12646084",
- "username": "punjabiangem",
- "fullName": "punjabiangem",
- "avatarUrl": "https://www.gravatar.com/avatar/00b6bbe15939f15a820ed0fadf8bf834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 10:24:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12646942",
- "username": "polhenarejos",
- "fullName": "Pol Henarejos (polhenarejos)",
- "avatarUrl": "https://www.gravatar.com/avatar/06188d13a0a5f26e95a6136d18bde4a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-23 07:03:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12658643",
- "username": "dirt3009",
- "fullName": "Emir (dirt3009)",
- "avatarUrl": "https://www.gravatar.com/avatar/55605080b2490591262896be930bed38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 04:36:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12664938",
- "username": "andibing",
- "fullName": "Andi Chandler (andibing)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12664938/medium/b8be63e4dcb2e791ced1ffc9e3a049a5.jpg",
- "joined": "2020-10-06 21:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12673951",
- "username": "LQS_VI_linguist",
- "fullName": "Truc Tran (LQS_VI_linguist)",
- "avatarUrl": "https://www.gravatar.com/avatar/ddd8677c1593059e7cd709b56c0e4161?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-06 23:27:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12578470",
- "username": "aalam",
- "fullName": "Aman Alam (aalam)",
- "avatarUrl": "https://www.gravatar.com/avatar/a95a917b5788edc7a1a0625a936673c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-27 02:23:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12682536",
- "username": "Lulucmy",
- "fullName": "Lulucmy",
- "avatarUrl": "https://www.gravatar.com/avatar/3994e4ec5a07df9f43acb68f5c0e179f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 09:56:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 41,
- "negativeVotes": 18,
- "winning": 0
- },
- {
- "user": {
- "id": "12691038",
- "username": "iwtp",
- "fullName": "iwtp",
- "avatarUrl": "https://www.gravatar.com/avatar/ba86d5d7df4e1ba52f2405116c6afeea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 19:53:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12692614",
- "username": "panxiuqing",
- "fullName": "panxiuqing",
- "avatarUrl": "https://www.gravatar.com/avatar/60f6cf954ccbfc9bc0d26281ebcf540b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-10 12:52:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12700500",
- "username": "venugopal",
- "fullName": "venugopal",
- "avatarUrl": "https://www.gravatar.com/avatar/46dfe217f6eac5314f0e9f84d4ed1e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-02 17:47:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12702618",
- "username": "p30on",
- "fullName": "Yaser Doosti (p30on)",
- "avatarUrl": "https://www.gravatar.com/avatar/a7cd3eede73e079a057b4cb26e31e242?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 15:49:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12724708",
- "username": "nunovilhenasantos",
- "fullName": "Nuno Filipe Vilhena Santos (nunovilhenasantos)",
- "avatarUrl": "https://www.gravatar.com/avatar/bb2901991414cfaa74f427e945f89db4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-21 11:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12743610",
- "username": "sandivisi",
- "fullName": "Sandivisi Aditya (sandivisi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12743610/medium/fb25e01cb06466273111be3eec0cdd6a.png",
- "joined": "2021-08-28 10:54:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12747218",
- "username": "pawelpz3",
- "fullName": "Pezet Pz (pawelpz3)",
- "avatarUrl": "https://www.gravatar.com/avatar/5792fadcae2059fa64a2e4ffa3f8046b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 17:22:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12751112",
- "username": "Tomedes",
- "fullName": "Tomedes",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12751112/medium/b3745def024cf8f1b86720ce503f84b2.png",
- "joined": "2020-06-30 05:55:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12759752",
- "username": "seppewyns",
- "fullName": "Seppe (seppewyns)",
- "avatarUrl": "https://www.gravatar.com/avatar/4ceda449ddbb73e2b42b6bb0a63dcdbb?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-01 11:49:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12766214",
- "username": "Gelesztaa",
- "fullName": "Szabolcsi Attila (Gelesztaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12766214/medium/52bf3bd85db3027d98cd771139ea7a00.gif",
- "joined": "2021-03-08 13:06:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12803415",
- "username": "zafozafov",
- "fullName": "Znahari Dinkov (zafozafov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12803415/medium/06655ec20301f2f42a64f050c4623d0d.jpg",
- "joined": "2020-05-15 18:18:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12579111",
- "username": "ofek18",
- "fullName": "Green Army (ofek18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12579111/medium/7a32cf48eea062741b673c3bfc07b9b3.gif",
- "joined": "2021-05-25 02:39:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12555329",
- "username": "felirami",
- "fullName": "felirami",
- "avatarUrl": "https://www.gravatar.com/avatar/c69b9b1cb5ed82229c4c58e97f84f3d4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 03:47:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12824112",
- "username": "MaksymZhykharyev",
- "fullName": "Максим Жихарев (MaksymZhykharyev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12824112/medium/c1e9e0ad6f560f3d3d17c8db3433988e.png",
- "joined": "2021-02-17 02:27:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12350818",
- "username": "anod1",
- "fullName": "anod1",
- "avatarUrl": "https://www.gravatar.com/avatar/736fb92e34dd85675a9e1b3c35369197?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-12 08:48:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "8975",
- "username": "applingua",
- "fullName": "applingua",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/8975/medium/cea91d511b0d0f620f3204b59526e175.jpg",
- "joined": "2020-06-30 05:54:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "17032",
- "username": "Tomasdd",
- "fullName": "Tomas Darius Davainis (Tomasdd)",
- "avatarUrl": "https://www.gravatar.com/avatar/00fca4999843cb0ed6bf3a01841600f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 15:17:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "18711",
- "username": "NCAA",
- "fullName": "NCAA",
- "avatarUrl": "https://www.gravatar.com/avatar/11ce5effae85ae26135368340cbb32fe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 08:58:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "19793",
- "username": "cadu",
- "fullName": "Carlos Pires (cadu)",
- "avatarUrl": "https://www.gravatar.com/avatar/5dab29d0374c56ade27013e06d8e5db3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 06:04:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "25293",
- "username": "shayanbahal",
- "fullName": "Shayan Eskandari (shayanbahal)",
- "avatarUrl": "https://www.gravatar.com/avatar/c5f8ce766436d59f7a4f0ac793265775?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-06 00:35:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "25420",
- "username": "Ryo567",
- "fullName": "Eugenio \"Ryo567\" Martínez Seguín (Ryo567)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/25420/medium/c407ca20cecfad35ba1bc9ef42232137.png",
- "joined": "2021-08-08 11:28:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "29120",
- "username": "Kleindberg",
- "fullName": "Bogdan (Kleindberg)",
- "avatarUrl": "https://www.gravatar.com/avatar/e40ca423ce7ab38671e676346bc6bf5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 11:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "32128",
- "username": "alconost",
- "fullName": "Alconost Inc. (alconost)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/32128/medium/2905cc1653d55b6a5d65b6d2dbce525e.png",
- "joined": "2020-06-30 05:52:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "34625",
- "username": "mazi",
- "fullName": "Matija Mazi (mazi)",
- "avatarUrl": "https://www.gravatar.com/avatar/67f64e2f93176cc0b469607a2b0d2450?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-30 15:34:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12335754",
- "username": "MostafaAlSayed",
- "fullName": "Mostafa Al Sayed (MostafaAlSayed)",
- "avatarUrl": "https://www.gravatar.com/avatar/a94708d63d7365a25b967474caecf104?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-28 15:26:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12343167",
- "username": "spolischook",
- "fullName": "spolischook",
- "avatarUrl": "https://www.gravatar.com/avatar/e106204e09df019627176fcfddcd6f7b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-13 16:56:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12344679",
- "username": "Goudarz",
- "fullName": "Goudarz Jafari (Goudarz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12344679/medium/440e37e365fb0450a6999de7b907f214.jpg",
- "joined": "2020-12-13 12:52:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12375993",
- "username": "nobilistefano",
- "fullName": "istefano92 (nobilistefano)",
- "avatarUrl": "https://www.gravatar.com/avatar/1c7437a7fcac9b4202488c1eb882f4f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 18:28:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12544745",
- "username": "muthuveerappan",
- "fullName": "muthuveerappan (muthuveerappan)",
- "avatarUrl": "https://www.gravatar.com/avatar/4f70279c7db5abd89dd9adb4c924cc38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-04-18 23:22:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12381015",
- "username": "shuuji3",
- "fullName": "TAKAHASHI Shuuji (shuuji3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12381015/medium/35e3557fd61d85f9a5b84545d9e3feb4.png",
- "joined": "2021-05-01 21:41:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12397171",
- "username": "shohagkhan",
- "fullName": "Mahbub Alam Khan (shohagkhan)",
- "avatarUrl": "https://www.gravatar.com/avatar/173a5a80a89c2af52d1b2c17d48e97cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-04 06:40:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12406629",
- "username": "cristianolima",
- "fullName": "Cristiano Lima (cristianolima)",
- "avatarUrl": "https://www.gravatar.com/avatar/50c2f3d8215ab743f053fe1fc1107222?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 02:14:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12441464",
- "username": "Ibragimov",
- "fullName": "Victor Ibragimov (Ibragimov)",
- "avatarUrl": "https://www.gravatar.com/avatar/ef1064d6709a9ec1e62ec115a0d499b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-16 07:41:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12441550",
- "username": "cgural",
- "fullName": "Caner Güral (cgural)",
- "avatarUrl": "https://www.gravatar.com/avatar/22d0b52ded4edd015db826b1b723f6f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 14:22:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12455773",
- "username": "uzeconomist",
- "fullName": "Hamza Foziljonov (uzeconomist)",
- "avatarUrl": "https://www.gravatar.com/avatar/72756a61e0c4489135139c4fd27da269?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 06:56:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12457393",
- "username": "rchk",
- "fullName": "Henrik Mattsson-Mårn (rchk)",
- "avatarUrl": "https://www.gravatar.com/avatar/e2e474e6bbb88bb35698cd85fc1ab43b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-21 18:28:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12461334",
- "username": "nirankoon",
- "fullName": "nirankoon.singpraseuth (nirankoon)",
- "avatarUrl": "https://www.gravatar.com/avatar/421b149b57fe0309019147a3d409b3c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 03:10:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12461843",
- "username": "zafer2071",
- "fullName": "Zafer DÜNDAR (zafer2071)",
- "avatarUrl": "https://www.gravatar.com/avatar/270c4203069bf7f54759d3e467525234?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 16:03:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12462699",
- "username": "oaxacagold",
- "fullName": "oaxacagold",
- "avatarUrl": "https://www.gravatar.com/avatar/2b185181d30d3072fb8fac8dc22ed8ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-25 23:57:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12476506",
- "username": "rodrigohenrik",
- "fullName": "Rodrigo Henrik (rodrigohenrik)",
- "avatarUrl": "https://www.gravatar.com/avatar/cf014358a25e10213239dd22e2814072?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 22:11:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12502848",
- "username": "hran",
- "fullName": "Andrii Khronenko (hran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12502848/medium/d6f0d637bd22c832aafd30f8cf964b5f.png",
- "joined": "2021-01-22 14:53:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12529583",
- "username": "Khan27",
- "fullName": "ShahinF27 (Khan27)",
- "avatarUrl": "https://www.gravatar.com/avatar/0cf99c0cb60485c150ea182afa7669f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-22 03:16:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12816876",
- "username": "RicochetLT",
- "fullName": "RicochetLT",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12816876/medium/519ca5836fe261c023e5058f0a68e98d.png",
- "joined": "2021-10-12 07:07:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12857382",
- "username": "antimonus",
- "fullName": "antimonus",
- "avatarUrl": "https://www.gravatar.com/avatar/0190b7865417356ee99a32f278bd94be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 07:25:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13473469",
- "username": "jules.seigneur77",
- "fullName": "Jules Seigneur (jules.seigneur77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13473469/medium/4118d6e220ce9b45529503a39159dc48.jpg",
- "joined": "2021-03-20 06:21:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13388045",
- "username": "VengaReview_ES",
- "fullName": "VengaReview_ES",
- "avatarUrl": "https://www.gravatar.com/avatar/f7187abb7b5476b5fbbd85723ebd53a9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-12 01:34:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13317516",
- "username": "olka",
- "fullName": "olka",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13317516/medium/de56e77543599bd2c434479001852e5b.jpg",
- "joined": "2021-08-04 07:39:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13322598",
- "username": "hunikal",
- "fullName": "Eslam Mahmoud (hunikal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13322598/medium/87163ed4a6dc5c7f9e34cc1591cc099c.jpg",
- "joined": "2021-05-07 18:52:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13324263",
- "username": "kevin_zheng",
- "fullName": "Kevin Zheng (kevin_zheng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13324263/medium/87c9fca618ec71f19fab40c6d4fec84d.jpg",
- "joined": "2021-01-09 11:58:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13328854",
- "username": "petraki",
- "fullName": "Přemysl Čermák (petraki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13328854/medium/4385b86d39f657caa0890af44d0c3bb4.jpg",
- "joined": "2020-12-28 07:26:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13329417",
- "username": "acebi",
- "fullName": "Arda Çebi (acebi)",
- "avatarUrl": "https://www.gravatar.com/avatar/f62970e56ba77f929293ff9733419dce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 11:58:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13330091",
- "username": "Neurone",
- "fullName": "Giuseppe Bertone (Neurone)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13330091/medium/3b845ffc974bc9d909b60d7ed4ca5bf8.jpeg",
- "joined": "2021-09-10 19:16:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13331706",
- "username": "translatebyhumans",
- "fullName": "Translate By Humans (translatebyhumans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13331706/medium/1a06f6ee09c0210f6d350aec25385860.png",
- "joined": "2020-06-30 05:59:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13361406",
- "username": "ncruzdesign",
- "fullName": "Nuno Cruz (ncruzdesign)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13361406/medium/4805729ad7e4c215d94e863de63b9ee7.jpg",
- "joined": "2021-10-18 07:27:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13366748",
- "username": "kendallcastillo4",
- "fullName": "Ken Castillo #Saiyan (#saiyan) (kendallcastillo4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13366748/medium/2661a6fda541b739a3f306da2e23ace1.jpg",
- "joined": "2021-04-04 05:06:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13367554",
- "username": "zangjin5025",
- "fullName": "Jin Zang (zangjin5025)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13367554/medium/8a1560ea16a1b7de6dcaf75adbd46d5c.jpg",
- "joined": "2021-02-02 14:37:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13375858",
- "username": "Cathness",
- "fullName": "Cathness",
- "avatarUrl": "https://www.gravatar.com/avatar/b48af8ec66562fd5e96178857052738f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 15:27:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13382440",
- "username": "palevoo",
- "fullName": "palevoo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13382440/medium/f701348fb9eaed2d4e2b22853c5e42af.png",
- "joined": "2021-09-01 18:29:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13388084",
- "username": "tom.savela",
- "fullName": "Slipstejn (tom.savela)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13388084/medium/d60a2780076220b818dd3e5fc713340b.jpg",
- "joined": "2020-07-30 14:24:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13306330",
- "username": "Predatorix",
- "fullName": "Predatorix",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13306330/medium/3f9fa5756d0e506fae6e0c6ada57cfba.png",
- "joined": "2021-06-14 17:54:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13389283",
- "username": "sirrius",
- "fullName": "sirrius",
- "avatarUrl": "https://www.gravatar.com/avatar/f8550157051d28281f853a9a37809118?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-15 09:37:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13396896",
- "username": "xdt322",
- "fullName": "Andre Fuentes (xdt322)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13396896/medium/e1b1ff721de1da9afe469cfaa28e6cb3.jpg",
- "joined": "2019-09-17 13:30:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13399779",
- "username": "billchenchina",
- "fullName": "Billchenchina (billchenchina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13399779/medium/58bcd08752d9c90aadf0d369f9272cc9.jpeg",
- "joined": "2021-03-02 13:26:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13414247",
- "username": "faxriddin",
- "fullName": "Faxriddin Baltayev Pardabayevich (faxriddin)",
- "avatarUrl": "https://www.gravatar.com/avatar/2ccaf1f1c8637d94b0702e8d1d606be5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-08 11:59:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13419366",
- "username": "EzigboOmenana",
- "fullName": "EzigboOmenana",
- "avatarUrl": "https://www.gravatar.com/avatar/7dcc22982518fd214e4db47ca34ad5dd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 04:25:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13426340",
- "username": "aitorla",
- "fullName": "aitorla",
- "avatarUrl": "https://www.gravatar.com/avatar/92407cd6fab51fd7b6d083d9f853515c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 08:32:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13431261",
- "username": "xenearz",
- "fullName": "Ashe Hecarim (xenearz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13431261/medium/e33ad5f9e6387f73021064c1853950ec.jpg",
- "joined": "2020-12-21 03:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "13432036",
- "username": "Jay-Way",
- "fullName": "Jay-Way",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13432036/medium/d8fc2570988848e2d0bd21ceeab36080.png",
- "joined": "2020-08-19 04:58:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13442389",
- "username": "dnse",
- "fullName": "DNSE (dnse)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13442389/medium/a6e71d4e535abf3b6d5c954658a93c70.jpg",
- "joined": "2021-02-01 23:15:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13446847",
- "username": "gokhandogru",
- "fullName": "Gökhan Doğru (gokhandogru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13446847/medium/d0397a5e28fc1f0250f56c6a9e7e933f.JPG",
- "joined": "2021-05-09 06:24:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13459452",
- "username": "nwongnor",
- "fullName": "Heart Beach (nwongnor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13459452/medium/428ad434e95cd784ff7864593f3c37e6.jpg",
- "joined": "2019-11-23 21:51:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13466755",
- "username": "PfurtschellerP",
- "fullName": "PfurtschellerP",
- "avatarUrl": "https://www.gravatar.com/avatar/715821ec3b74a4ac559d57312abf8212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 18:28:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13308304",
- "username": "Gus0918",
- "fullName": "Gus0918",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13308304/medium/6b8d3da2ad1b424fe0b9b5c8b9656990.jpeg",
- "joined": "2021-08-27 23:39:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13300379",
- "username": "roblox.alek009",
- "fullName": "Alexander M.S (roblox.alek009)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13300379/medium/a1413f12e1b7a6a4d631fd71c61e71c8.png",
- "joined": "2021-01-31 06:11:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12895198",
- "username": "lacriment",
- "fullName": "Taha İbrahim (lacriment)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12895198/medium/0e6b5e9d61eb2b57e7f98330c84a6c3d.png",
- "joined": "2019-11-04 01:54:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13146447",
- "username": "Inlingo",
- "fullName": "Inlingo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13146447/medium/fde97b6d11b8b8a7b220291df3911ac6.png",
- "joined": "2020-06-30 05:53:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12926776",
- "username": "mejlus",
- "fullName": "Egidijus Griešnovas (mejlus)",
- "avatarUrl": "https://www.gravatar.com/avatar/8ec6a8da77fd961397b9919437b50e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-09 06:16:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12930933",
- "username": "kerocate",
- "fullName": "kerocate",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12930933/medium/98233a4ea01a32d666991eedd9c30a9a.png",
- "joined": "2021-07-23 13:16:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12948080",
- "username": "omarmear",
- "fullName": "Omar Faruque (omarmear)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12948080/medium/1ca86fa82896019c17c87f3c0814de94.JPG",
- "joined": "2020-03-19 12:22:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12960135",
- "username": "feamcor",
- "fullName": "Fábio Corrêa (feamcor)",
- "avatarUrl": "https://www.gravatar.com/avatar/5a9aba8ef994ea1690e4dcd0ba5530ce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 06:52:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12960382",
- "username": "SiderealArt",
- "fullName": "曹恩逢 (SiderealArt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12960382/medium/efd52e2c41be32bfd52569ac15d228b7.jpg",
- "joined": "2021-03-09 21:11:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13015456",
- "username": "padila50",
- "fullName": "Padila Yakub (padila50)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13015456/medium/eecd637c95c792b732531362bdfc5eca.jpg",
- "joined": "2021-04-11 21:27:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13017030",
- "username": "yavorysynka",
- "fullName": "Olga Yavorska (yavorysynka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13017030/medium/0ee0bf7d9ee331160d16e596b5e3f102.jpg",
- "joined": "2019-12-04 10:58:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13029232",
- "username": "radium83",
- "fullName": "radium83",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13029232/medium/a5a0acf5bbd820d36d120bf38dab0b0f.png",
- "joined": "2021-03-23 09:37:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13081328",
- "username": "spolrot",
- "fullName": "Simon Polrot (spolrot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13081328/medium/ed09cf991faa0301f004879cac6df50b.jpg",
- "joined": "2019-09-28 05:19:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13094015",
- "username": "Helldelta",
- "fullName": "Helldelta",
- "avatarUrl": "https://www.gravatar.com/avatar/24aec05b5426673452ad2142981dbbe1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-25 15:04:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13128387",
- "username": "hamzafirat",
- "fullName": "hamzafirat",
- "avatarUrl": "https://www.gravatar.com/avatar/d4289ccee9cb36820af69804368abfd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-11-01 12:50:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13132415",
- "username": "ahmetsencift",
- "fullName": "Ahmet Şençift (ahmetsencift)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13132415/medium/08e3bdf19ef0e1cf313e9d6c5c82c0e5.jpg",
- "joined": "2021-06-28 09:16:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13153052",
- "username": "Ando_Translations",
- "fullName": "Ando Translations (Ando_Translations)",
- "avatarUrl": "https://www.gravatar.com/avatar/84bdc76b08dbe3e86bed9c89fa6a3dc1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-04 03:14:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13300225",
- "username": "lyubomyr888",
- "fullName": "lyubomyr888",
- "avatarUrl": "https://www.gravatar.com/avatar/e76d945a28b65f1aebf7b110307bd8ef?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-28 08:33:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13167683",
- "username": "pabloogando5",
- "fullName": "Pablo Ogando Ferreira (pabloogando5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13167683/medium/f00513535821bd2c4b7abf3380a51be0.jpeg",
- "joined": "2021-11-25 04:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13180742",
- "username": "gostovicvukasin46",
- "fullName": "Vukasin Gostovic (gostovicvukasin46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13180742/medium/a45a8a6c1ac78c9310b25f12ea1ea688.jpg",
- "joined": "2021-01-15 08:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13187413",
- "username": "ridhoaliga",
- "fullName": "Ridho Aliga (ridhoaliga)",
- "avatarUrl": "https://www.gravatar.com/avatar/43f58da1a3e76a8bde665a986496b096?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 05:37:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13188316",
- "username": "pakokrew",
- "fullName": "Pacien Boisson (pakokrew)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13188316/medium/dc5354eac07cccb2529a5e207b1fad5b.jpeg",
- "joined": "2021-01-31 06:45:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13193338",
- "username": "brunoviniciusrp",
- "fullName": "Bruno Vinícius Veronez de Jesus (brunoviniciusrp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13193338/medium/9f0dcf40dbd88d79fb56251f14440d90.jpg",
- "joined": "2021-05-04 18:47:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13200563",
- "username": "umatos99",
- "fullName": "Ulisses Silva (umatos99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13200563/medium/7595c22d7ec598c605890934a944f824.jpg",
- "joined": "2020-12-28 06:51:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13205115",
- "username": "ttrasto",
- "fullName": "ttrasto",
- "avatarUrl": "https://www.gravatar.com/avatar/d6887059146f9374ee746ba3489ec9cb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-11-22 11:10:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13208056",
- "username": "apradoc",
- "fullName": "Adrián Prado (apradoc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13208056/medium/a89cc9560a1d3adc243bd48f65bafa64.jpeg",
- "joined": "2021-02-07 06:10:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13208316",
- "username": "yuriypylypchuk",
- "fullName": "Yuriy (yuriypylypchuk)",
- "avatarUrl": "https://www.gravatar.com/avatar/20792792a16dfd01cb6612c393799535?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 04:57:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13234426",
- "username": "begiganellari1997",
- "fullName": "Begi Ganellari (begiganellari1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13234426/medium/19bc1758cb75b7fef26996e15b3b23cc.jpg",
- "joined": "2021-01-25 11:00:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13243539",
- "username": "gilbertginsberg",
- "fullName": "Steven Gilbert (gilbertginsberg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13243539/medium/a9e7442c74a08d1eab055e952f41fa44.jpeg",
- "joined": "2019-08-09 00:39:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13256540",
- "username": "Scruffy",
- "fullName": "Scruffy",
- "avatarUrl": "https://www.gravatar.com/avatar/6945acf728d14d64c7b660a31ddd9f8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-21 06:18:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13279693",
- "username": "bioloniks",
- "fullName": "Сергей Радионов (bioloniks)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13279693/medium/3a7f9c2d097ddbfe4036fae40aed2efb.jpg",
- "joined": "2020-07-21 05:45:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959485",
- "username": "gabrocheleau",
- "fullName": "Gabriel Rocheleau (gabrocheleau)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959485/medium/c03b8e7ceadf394bdc3dfcf4e04b29ae.jpeg",
- "joined": "2019-08-22 13:08:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959651",
- "username": "bettinabf",
- "fullName": "bettinabf",
- "avatarUrl": "https://www.gravatar.com/avatar/bdb17aa599969672335422360cbeb86b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-22 16:22:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14086443",
- "username": "rak810",
- "fullName": "rak810",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14086443/medium/39269b4f7301c0e4b2ddb56fa91b7b24.png",
- "joined": "2020-01-23 03:17:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14041940",
- "username": "LQS_CS_linguist",
- "fullName": "LQS_CS_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/ee4f2fc9762c71e291da718a14a814ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-26 02:50:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14037405",
- "username": "Otavio-Camargo",
- "fullName": "Otavio-Camargo",
- "avatarUrl": "https://www.gravatar.com/avatar/4e43ecad970917504784ec513ecb547c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-16 17:09:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14037693",
- "username": "felipericieri",
- "fullName": "Felipe Ricieri (felipericieri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14037693/medium/37316d8301d2d83d6f4edbca9a0d5206.jpeg",
- "joined": "2021-05-31 08:38:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14038309",
- "username": "planepisode",
- "fullName": "Suraneti Rodsuwan (planepisode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14038309/medium/ad02fc352bbe13108d588527c438815d.jpeg",
- "joined": "2019-11-18 10:13:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14038506",
- "username": "ceynh212121",
- "fullName": "Emrah Basbug (ceynh212121)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14038506/medium/56c0c675c69229e868983b232d07edf7.jpeg",
- "joined": "2019-11-18 18:26:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14038844",
- "username": "ghasshee",
- "fullName": "ghasshee",
- "avatarUrl": "https://www.gravatar.com/avatar/d5e787a3cc1c343ee53b3e346a4d7908?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-19 09:59:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14039061",
- "username": "lunas",
- "fullName": "lunas",
- "avatarUrl": "https://www.gravatar.com/avatar/5f41a3311af774d7f7e5395fb1c0f8db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-19 19:15:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14039115",
- "username": "thezacjordan",
- "fullName": "Zach Jordan (thezacjordan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14039115/medium/91ad930a2c55427339dda8c030e86eff.jpeg",
- "joined": "2019-11-19 23:27:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14039178",
- "username": "sandy_sung",
- "fullName": "sandy_sung",
- "avatarUrl": "https://www.gravatar.com/avatar/7c96f2a8b23f9ee8db66ab0b0fd1c5ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-20 03:13:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14039900",
- "username": "YuriiKillerBee",
- "fullName": "YuriiKillerBee",
- "avatarUrl": "https://www.gravatar.com/avatar/3690e6911d55e40540040baf2632926e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-21 09:56:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14040008",
- "username": "Ochtadin",
- "fullName": "Ochtadin",
- "avatarUrl": "https://www.gravatar.com/avatar/daeb380dcf4c98b583b9eb61a259e58c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-21 14:16:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14040513",
- "username": "emmafritzberg",
- "fullName": "Emma Fritzberg (emmafritzberg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14040513/medium/074733460ae8d667fd66deb589df2991.jpeg",
- "joined": "2019-11-22 13:40:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14041184",
- "username": "karansingh1559",
- "fullName": "Karan Singh (karansingh1559)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14041184/medium/3970c74b939831afbc683941fd5847bf.jpeg",
- "joined": "2019-11-23 16:12:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14042441",
- "username": "Solexplorer",
- "fullName": "Solexplorer",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14042441/medium/efa15b8331a5e51208658d9e00824c68.jpeg",
- "joined": "2019-11-26 04:36:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14036488",
- "username": "YeFuchao",
- "fullName": "YeFuchao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14036488/medium/e14fc236265b9a05d9bd437045e252b2.jpg",
- "joined": "2021-05-11 10:26:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14042973",
- "username": "lujdzso",
- "fullName": "lujdzso",
- "avatarUrl": "https://www.gravatar.com/avatar/dbd707ffb0ae5db0e2255749897a27b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-26 16:04:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14043271",
- "username": "crazylex",
- "fullName": "crazylex",
- "avatarUrl": "https://www.gravatar.com/avatar/1a8786e165cd64a39cd7fda7bf7bf97a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-27 05:53:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14043331",
- "username": "Belkacem2015",
- "fullName": "Belkacem (Belkacem2015)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14043331/medium/3a99fc80bf81b592af9a2b96767e3c9f.jpg",
- "joined": "2019-11-27 07:45:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14044196",
- "username": "ankushpartapsingh",
- "fullName": "ankushpartapsingh",
- "avatarUrl": "https://www.gravatar.com/avatar/5035829814ea0fa92b8b8e237b2e0d86?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-28 16:02:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14044564",
- "username": "3bdelrhmann",
- "fullName": "Abdelrhman Mohamed (3bdelrhmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14044564/medium/6d2569fb21f5327b814707a35215d3ae.jpeg",
- "joined": "2019-11-29 09:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14044792",
- "username": "LQS_SV_linguist",
- "fullName": "LQS_SV_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/ba028f2d3f1cc09f57c63b38141671d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-29 18:29:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14045791",
- "username": "zabir3",
- "fullName": "zabir3",
- "avatarUrl": "https://www.gravatar.com/avatar/240afaddfd72387021d4d6adff8a8376?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-01 17:57:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14046408",
- "username": "senno.schuttel",
- "fullName": "senno.schuttel",
- "avatarUrl": "https://www.gravatar.com/avatar/242d7fbeeb72f39d2f30629ae7fb04bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-02 20:49:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14046447",
- "username": "bolbo0x",
- "fullName": "bolbo (bolbo0x)",
- "avatarUrl": "https://www.gravatar.com/avatar/64a80a8ef05eb451ede2579735f1bbe5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-02 23:47:18"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 11,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14046771",
- "username": "bayd",
- "fullName": "can d (bayd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14046771/medium/64f6ad3254ccf384070bde26cce963a2.jpeg",
- "joined": "2019-12-03 10:24:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14047067",
- "username": "molecula451",
- "fullName": "Paul (molecula451)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14047067/medium/c9557eae6e796e2d6dbf0039bb95b7fc.jpeg",
- "joined": "2019-12-04 01:36:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14047252",
- "username": "saksmm",
- "fullName": "saksmm",
- "avatarUrl": "https://www.gravatar.com/avatar/7bbd67e605d8c4f79153ac6d5a7aa740?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-04 08:18:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14037125",
- "username": "CHOILOKYI",
- "fullName": "CHOILOKYI",
- "avatarUrl": "https://www.gravatar.com/avatar/2e6568df3cf75f8fe821c045e849e225?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-20 14:31:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14036291",
- "username": "AmoweOlubusayo",
- "fullName": "AmoweOlubusayo",
- "avatarUrl": "https://www.gravatar.com/avatar/49406c4b7ba28aff04ef1e072bac8bb7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-14 14:44:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14047665",
- "username": "AlexSSD7",
- "fullName": "Alex S. (AlexSSD7)",
- "avatarUrl": "https://www.gravatar.com/avatar/ab81732b711d154bb1b3d4e030bbff46?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 09:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033202",
- "username": "Huynhanh883",
- "fullName": "Huynhanh83 (Huynhanh883)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033202/medium/9283f613d1807b20fdbc4c7a07a54ed1.png",
- "joined": "2019-11-21 01:17:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030478",
- "username": "LQS_PTBR_linguist",
- "fullName": "LQS_PTBR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/02c91c3d77c3bed75edc672e2df15004?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-06 01:57:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 33,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030607",
- "username": "Andhew1987",
- "fullName": "Andhew1987",
- "avatarUrl": "https://www.gravatar.com/avatar/5c6a8c00ceab5a98223f4b9c145793dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 11:39:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030627",
- "username": "developerfred",
- "fullName": "Fred @codingsh (developerfred)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14030627/medium/03ffd8e59b3a41cd97571d840f1789c7.png",
- "joined": "2019-11-09 13:33:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030666",
- "username": "LQS_SL_linguist",
- "fullName": "LQS_SL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/d8bbdd1ddae3369c37aee919a054d00d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 13:45:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030800",
- "username": "eleodorim",
- "fullName": "eleodorim",
- "avatarUrl": "https://www.gravatar.com/avatar/58dbddececb3e0b328341564769b2bb7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 21:31:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030921",
- "username": "chiachio",
- "fullName": "chiachio",
- "avatarUrl": "https://www.gravatar.com/avatar/8907dd6dc7d7119d6e8a7cab53ead3ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 14:39:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031128",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/10e8d8716425d5c19617c846a01d2e48?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-05 10:11:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031162",
- "username": "georgerobescu",
- "fullName": "George Robescu (georgerobescu)",
- "avatarUrl": "https://www.gravatar.com/avatar/d5bd003ea10b0c572230826f5bf6704b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-05 11:39:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031546",
- "username": "amir.fatahi.btc",
- "fullName": "amirhossein fatahifar (amir.fatahi.btc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14031546/medium/def8f80240872a61b77ab6535a782df6.jpeg",
- "joined": "2019-11-06 06:41:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031780",
- "username": "Rajeshkushvahav",
- "fullName": "Rajeshkushvahav",
- "avatarUrl": "https://www.gravatar.com/avatar/3d9146116712d70e438935a5c630916d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-06 14:16:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14031890",
- "username": "Saravud2534",
- "fullName": "SARAWUT NAKKOED (Saravud2534)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14031890/medium/d907438d4cc32dc13aab3685892a4e52.jpeg",
- "joined": "2019-11-23 03:28:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14032039",
- "username": "atshn.gunduz",
- "fullName": "Ateşhan Gündüz (atshn.gunduz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14032039/medium/c18e7d0f24b527c7dc5b01dc005cc5eb.jpeg",
- "joined": "2019-11-07 03:01:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033224",
- "username": "rudy.hirusta",
- "fullName": "Rudy Hirusta (rudy.hirusta)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033224/medium/2b2622a81698524fb73ccc6afdd36bb0.jpeg",
- "joined": "2019-11-09 04:56:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035842",
- "username": "bing.galaxy05",
- "fullName": "galaxy bing (bing.galaxy05)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035842/medium/7746e9de99ca0c7bb61db920ed027dde.png",
- "joined": "2019-11-13 21:52:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033767",
- "username": "fberdun",
- "fullName": "Franco Berdun (fberdun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033767/medium/177c87c86951c68fe708b1a66e88d8bc.jpeg",
- "joined": "2019-11-10 05:51:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033992",
- "username": "RedStillPlays",
- "fullName": "RedStillPlays",
- "avatarUrl": "https://www.gravatar.com/avatar/b162408428680fb3d6be1b7382414e47?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 14:44:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034084",
- "username": "vanderleiekobe",
- "fullName": "Vanderlei Lima (vanderleiekobe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034084/medium/47eab71fe955de8809e44de257853bd9.jpeg",
- "joined": "2019-11-10 18:34:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034158",
- "username": "uwantege",
- "fullName": "Sandra Hart (uwantege)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034158/medium/a6bdd9bda222d79f82d48bb59a65b538.jpeg",
- "joined": "2019-11-10 23:31:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034162",
- "username": "getasso",
- "fullName": "getasso",
- "avatarUrl": "https://www.gravatar.com/avatar/abff64230b71b30d7b186cceaea20441?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-10 23:59:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034260",
- "username": "LQS_AR_linguist",
- "fullName": "LQS_AR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/4299e95f2805914901d31d70d3e716d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-11 04:01:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034542",
- "username": "kukkaimangpor",
- "fullName": "Kai Suriyont (kukkaimangpor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14034542/medium/42c138f8b0633dc37c653cc9d6157f3b.jpeg",
- "joined": "2019-11-11 13:36:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14034838",
- "username": "Emilia90",
- "fullName": "Emilia90",
- "avatarUrl": "https://www.gravatar.com/avatar/80df382c8272171bb7b5cf6e91e851e5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-12 02:57:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035029",
- "username": "nestoruk93",
- "fullName": "Vasyl Nestoruk (nestoruk93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035029/medium/3cfffe4656bea0462aacb77fc6429694.jpeg",
- "joined": "2019-11-12 09:06:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035167",
- "username": "airidassomka",
- "fullName": "Airidas Šomka (airidassomka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035167/medium/55db96bd735658814900ddae0754991e.jpeg",
- "joined": "2019-11-12 14:47:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035402",
- "username": "paolague",
- "fullName": "paolague",
- "avatarUrl": "https://www.gravatar.com/avatar/0ef6b1b99c148f7bcc3f732cb282808b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-13 04:19:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14035594",
- "username": "essame.samman",
- "fullName": "Essame Samman (essame.samman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14035594/medium/7bed72a4e8e6db4496fcd670c99575c2.jpg",
- "joined": "2019-11-13 11:10:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14047362",
- "username": "shailesh.nift",
- "fullName": "shailesh kumar (shailesh.nift)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14047362/medium/188b22e96fabe3e3ec66c9b930f49e7c.jpeg",
- "joined": "2019-12-04 12:12:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14048477",
- "username": "N-C-M",
- "fullName": "Neenu Chacko (N-C-M)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048477/medium/da5258d8f19d1a2a0b643904d7246453.png",
- "joined": "2019-12-06 12:35:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029802",
- "username": "Mudhofar",
- "fullName": "Mudhofar",
- "avatarUrl": "https://www.gravatar.com/avatar/054e46489a158050a37bf88094d781e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-03 01:45:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14075673",
- "username": "CryptoRose",
- "fullName": "CryptoRose",
- "avatarUrl": "https://www.gravatar.com/avatar/a239a889a6916f9579747e0c6168a5d3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-14 01:55:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14060807",
- "username": "cristianalexjoy",
- "fullName": "Cristian Alex-joy (cristianalexjoy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14060807/medium/f563053fbece6f9b5e4d3f8c11989b1e.jpeg",
- "joined": "2019-12-31 08:01:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14060897",
- "username": "neeraj2000Kumar",
- "fullName": "Neeraj Kumar (neeraj2000Kumar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14060897/medium/434f70fb0e7f7e9ba044704d8ba2b668.jpeg",
- "joined": "2019-12-31 11:40:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14062736",
- "username": "bichvan2408",
- "fullName": "bichvan2408",
- "avatarUrl": "https://www.gravatar.com/avatar/187c06e896a88f5c2f4873d472b79cd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-03 07:07:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14063281",
- "username": "franjoespejo",
- "fullName": "franjoespejo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14063281/medium/ca49be1a485757d76849be06da8432ce.jpeg",
- "joined": "2020-01-03 14:31:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14063663",
- "username": "lapointed338",
- "fullName": "Dominic Lapointe (lapointed338)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14063663/medium/f827847f36281a560fbcb6d06773c58e.jpg",
- "joined": "2020-01-03 23:34:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14064533",
- "username": "m11ad",
- "fullName": "m11ad",
- "avatarUrl": "https://www.gravatar.com/avatar/b516ad50e176b56ff745f84e8778ae19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-04 16:05:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14065171",
- "username": "aleksandrpereslavcev5",
- "fullName": "Александр Переславцев (aleksandrpereslavcev5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14065171/medium/624fef659758d550b1ca9de67bb1b349.jpg",
- "joined": "2020-01-05 07:41:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14067507",
- "username": "MainzenanZ0935313252",
- "fullName": "MainzenanZ 0935313252 (MainzenanZ0935313252)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14067507/medium/91d036661e766bf018813a0cb34f0188.jpeg",
- "joined": "2020-01-07 07:13:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14069573",
- "username": "Buntymittal",
- "fullName": "Kamal Kumar Mittal (Buntymittal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14069573/medium/802afa60459eaeff40981741eab6272c.jpeg",
- "joined": "2020-01-08 22:05:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14070193",
- "username": "ahmedcoe",
- "fullName": "Ahmed Alutaibi (ahmedcoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14070193/medium/b750710f4770c698f87958f3af233ff1.jpeg",
- "joined": "2020-01-09 11:16:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14072349",
- "username": "kmmmeissa",
- "fullName": "Karam Eissa (kmmmeissa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14072349/medium/f204930b2c06b2fd5e15f1728cd4cb5c.jpg",
- "joined": "2020-01-11 03:33:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14073727",
- "username": "vartotoja",
- "fullName": "Greta Bartuševičiūtė (vartotoja)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14073727/medium/09866073873ac38e81712006f7f1b43e.jpg",
- "joined": "2020-01-13 04:38:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14075861",
- "username": "ClaireBeydon",
- "fullName": "Claire Beydon (ClaireBeydon)",
- "avatarUrl": "https://www.gravatar.com/avatar/91c39f2896fb48bdd42c5cc53e42d2ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-14 10:33:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14059101",
- "username": "Julayi",
- "fullName": "Julayi",
- "avatarUrl": "https://www.gravatar.com/avatar/3bc13f1e0186692b5f7a5dc87450cb17?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-27 23:53:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14076463",
- "username": "EceBelgin",
- "fullName": "EceBelgin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14076463/medium/0f9f99426f4b3be4a7b50b719686556d.png",
- "joined": "2020-01-14 15:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14077391",
- "username": "dreikronen84",
- "fullName": "Anatoliy Wenzel (dreikronen84)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14077391/medium/32ee13f98c3481415326327342926328.png",
- "joined": "2020-01-15 09:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14077417",
- "username": "cyreum",
- "fullName": "cyreum",
- "avatarUrl": "https://www.gravatar.com/avatar/8edb42a60b6a4511b662dba5c8d7af1a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-15 10:28:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14078043",
- "username": "sdfabiosilva",
- "fullName": "Fábio Silva (sdfabiosilva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14078043/medium/224ecf881424870b23a4517c55f6ba95.jpeg",
- "joined": "2020-01-15 21:48:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14079977",
- "username": "adi1382",
- "fullName": "Aditya verma (adi1382)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14079977/medium/35c8e9d061b6e00b370b3fa92d44a887.jpeg",
- "joined": "2020-01-17 12:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14080359",
- "username": "naphahanarsa",
- "fullName": "นภา หาษอาษา (naphahanarsa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14080359/medium/a1d25b23699d8fbc6b9c32726d20f5fc.jpeg",
- "joined": "2020-01-18 05:45:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14080781",
- "username": "dgordg85",
- "fullName": "Антон Петров (dgordg85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14080781/medium/6801087e5ea5a3b7bdf56a8fdea0cf82.jpg",
- "joined": "2021-01-07 12:58:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14082329",
- "username": "Binh0103",
- "fullName": "Binh0103",
- "avatarUrl": "https://www.gravatar.com/avatar/afea9cb2f068a8958cba2e7f997985d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-19 19:50:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14083105",
- "username": "SoulFly34",
- "fullName": "SoulFly34",
- "avatarUrl": "https://www.gravatar.com/avatar/fe80c8ece7b0dc2c4b18e7d86ec7cd5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-20 10:05:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14083463",
- "username": "Sparrow34",
- "fullName": "Alperen Yıldız (Sparrow34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14083463/medium/d68a69a187037085a09efdd2f951569a.png",
- "joined": "2020-02-22 01:39:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14084853",
- "username": "agnieszkaposzwa6",
- "fullName": "Agnieszka Poszwa (agnieszkaposzwa6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14084853/medium/cf706f82a2556f8272f0e1619a9ceacc.jpeg",
- "joined": "2020-01-21 15:49:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14085797",
- "username": "cleo.bikram",
- "fullName": "cleo.bikram",
- "avatarUrl": "https://www.gravatar.com/avatar/14b1608a6d925a717a1397bc4bfe9233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-22 10:36:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14060128",
- "username": "duythanhvn",
- "fullName": "Duy–Thanh Doan (duythanhvn)",
- "avatarUrl": "https://www.gravatar.com/avatar/ab1686ddd5d865251df3333e9e4aa7f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 11:17:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14058798",
- "username": "eeasytest",
- "fullName": "testFirst testLast (eeasytest)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058798/medium/3935cfd8fa3c8349dc9e9d2ad0e13f15.jpg",
- "joined": "2019-12-27 08:15:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14048507",
- "username": "hknaltinbas",
- "fullName": "Hakan Altınbaş (hknaltinbas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048507/medium/98569053b2625adaa3f717b50e5e2463.jpeg",
- "joined": "2019-12-06 13:38:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14052148",
- "username": "mikaelrb",
- "fullName": "Mikael Robert (mikaelrb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14052148/medium/0194400d73fdeeb0e12eec633f88034d.jpeg",
- "joined": "2019-12-13 16:20:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14048904",
- "username": "hakan.korkz",
- "fullName": "hakan korkmaz (hakan.korkz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14048904/medium/5f08caa613c1f97c14c0ad0c6f4fb8f6.jpeg",
- "joined": "2021-02-27 02:29:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14049843",
- "username": "baby636",
- "fullName": "baby636",
- "avatarUrl": "https://www.gravatar.com/avatar/04c44f48fdbdc2be0897d0be8a52bcff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 01:03:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14049937",
- "username": "hcf12",
- "fullName": "hcf12",
- "avatarUrl": "https://www.gravatar.com/avatar/d48c2c9a90d337d55293388a210ac404?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-09 12:21:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14050095",
- "username": "gepko",
- "fullName": "Global Ekoloji Projeleri Katılım Ortaklığı (gepko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14050095/medium/a07765f2d598879838406e3d1fed2684.png",
- "joined": "2019-12-09 18:54:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14050356",
- "username": "marcusjaatinen",
- "fullName": "Marcus Jaatinen (marcusjaatinen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14050356/medium/5a5f4294a5e73b25c202a7fbddaf1cc6.jpg",
- "joined": "2020-06-14 16:55:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14050935",
- "username": "LQS_ID_linguist",
- "fullName": "LQS_ID_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/9e25efa0472c314604bdbebac0a9f8af?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-11 08:00:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14050969",
- "username": "juanfahler",
- "fullName": "juanfahler",
- "avatarUrl": "https://www.gravatar.com/avatar/7d55f23b74c20ace1d5f6dabcae4047b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-11 09:17:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051341",
- "username": "qiaoliang89",
- "fullName": "Liang Qiao (qiaoliang89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14051341/medium/7958cbfce27c72eb181f0c63edf4d83b.jpeg",
- "joined": "2021-06-15 23:06:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051411",
- "username": "amitkumar991",
- "fullName": "amitkumar991",
- "avatarUrl": "https://www.gravatar.com/avatar/7b8b83234a33cc99121c31623479c38e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-12 06:23:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051414",
- "username": "ADRIANO688",
- "fullName": "Adrian Toth (ADRIANO688)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14051414/medium/c9c42882f0cd997241b652f91c55db02.jpeg",
- "joined": "2019-12-12 06:29:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14051596",
- "username": "anise_W",
- "fullName": "anise_W",
- "avatarUrl": "https://www.gravatar.com/avatar/52d7136b87106a558c2bff9acdadcd95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-12 12:41:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14052002",
- "username": "modartoken",
- "fullName": "modartoken",
- "avatarUrl": "https://www.gravatar.com/avatar/94f294d32c08b4e1984053b2910d76f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-13 10:04:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14052846",
- "username": "anohelpi",
- "fullName": "Ákos Garamvölgyi (anohelpi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14052846/medium/700a61979c27accc889abbca342a529d.jpg",
- "joined": "2019-12-15 08:08:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14058516",
- "username": "iamsagar012",
- "fullName": "Md. Appel Mahmud Sagar (iamsagar012)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14058516/medium/c931da6c67f952f3dec5f76a6f8cb35d.jpeg",
- "joined": "2019-12-26 17:15:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14053145",
- "username": "Taio",
- "fullName": "Taio",
- "avatarUrl": "https://www.gravatar.com/avatar/467486cfe33b78b748f82b45012e9b00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-20 01:39:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14053629",
- "username": "erick.taszo",
- "fullName": "erick.taszo",
- "avatarUrl": "https://www.gravatar.com/avatar/a5869612f0ea3d90e3d8e2f336acbc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-16 20:55:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14053950",
- "username": "kalentinvs",
- "fullName": "Валентин Коломенский (kalentinvs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14053950/medium/eabb0addc1168ebfecf4bf4715c233dd.jpeg",
- "joined": "2020-03-05 08:43:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14054996",
- "username": "unsoindovo",
- "fullName": "unSo IndoVo (unsoindovo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14054996/medium/15300e76cadf9169ffc8f4f2d2da8656.jpg",
- "joined": "2019-12-19 03:54:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14055632",
- "username": "Oymate",
- "fullName": "Oymate",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14055632/medium/6307fe5e309a2baaa3b414482d2f4fe7.png",
- "joined": "2020-04-30 07:07:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14056130",
- "username": "gokselp",
- "fullName": "gokselp",
- "avatarUrl": "https://www.gravatar.com/avatar/107787c1212fc885c38a26858fe295d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-30 04:52:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14056606",
- "username": "sekoo196351",
- "fullName": "Serkan Aydın (sekoo196351)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14056606/medium/c1669d0e4cebfb1ec83ab85c00b01f83.jpeg",
- "joined": "2019-12-22 10:25:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14056918",
- "username": "LQS_DE_SR",
- "fullName": "LQS_DE_SR",
- "avatarUrl": "https://www.gravatar.com/avatar/69f27da60e0b3b3772cbbd55a97ef260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-12-23 05:38:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057178",
- "username": "takira182542",
- "fullName": "Somsak Takira (takira182542)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057178/medium/919e590a4f53fe42033a55c90cefdd9f.jpeg",
- "joined": "2019-12-23 15:32:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057347",
- "username": "mlekshmanap",
- "fullName": "Lekshmana Perumal M (mlekshmanap)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057347/medium/e593ac8284d3431905aaf7e04105bfac.jpg",
- "joined": "2019-12-24 02:23:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057576",
- "username": "sercanbasaran",
- "fullName": "Sercan Başaran (sercanbasaran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057576/medium/87f3ebf91dd2cf3be230d1dc717a4967.jpeg",
- "joined": "2019-12-24 11:44:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14057606",
- "username": "Dobrevmotorsport",
- "fullName": "Асен Добрев (Dobrevmotorsport)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14057606/medium/01dca40d206446fe96ac6f46d8d04616.jpeg",
- "joined": "2019-12-24 13:33:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14058399",
- "username": "Balgair",
- "fullName": "Balgair",
- "avatarUrl": "https://www.gravatar.com/avatar/a318cde2d96baed55dddfe59a1a91a1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-04 16:09:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14030216",
- "username": "udinujang",
- "fullName": "Sayid Almahdy (udinujang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14030216/medium/a9f8489aeec48632cf519aa826d8350c.jpg",
- "joined": "2019-11-03 18:38:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029406",
- "username": "Wasana25",
- "fullName": "Wasana25",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14029406/medium/730576770be72edc87135b6656f43c8f.jpg",
- "joined": "2019-11-02 07:06:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959731",
- "username": "akira-19",
- "fullName": "Akira (akira-19)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959731/medium/1f9a8ac6d0eb9900e42157a952c5dca6.png",
- "joined": "2019-08-22 18:43:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13982529",
- "username": "abdosheham",
- "fullName": "abdosheham",
- "avatarUrl": "https://www.gravatar.com/avatar/f70f515e114fd158b0f1781efb43726c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-13 19:26:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13973069",
- "username": "LQS_CHS_linguist",
- "fullName": "LQS_CHS_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/4848f87680943cbc4389240c602aeb2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-05 10:43:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 23,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13974365",
- "username": "LQS_Italian",
- "fullName": "LQS_Italian",
- "avatarUrl": "https://www.gravatar.com/avatar/67c435dc825cb94ac38e8522d4c57c31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-06 12:31:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13975691",
- "username": "samajammin",
- "fullName": "Sam Richards (samajammin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13975691/medium/3e46a11d03a06145d4fadc5cecc54b4c.jpeg",
- "joined": "2019-09-07 15:30:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13976107",
- "username": "HelaBasa",
- "fullName": "Store (HelaBasa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976107/medium/ab4177e8d90665d4603e548488d15c68.jpg",
- "joined": "2021-08-25 06:53:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13976753",
- "username": "rise_risemary",
- "fullName": "5cronipod (rise_risemary)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976753/medium/a3f61b480c5030ceaab415b125e68f98.jpg",
- "joined": "2020-05-21 16:20:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13978687",
- "username": "bellinas90",
- "fullName": "Jose Bell (bellinas90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978687/medium/97645182393553543eff0f6d2d313d8c.jpeg",
- "joined": "2019-09-10 09:47:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13978949",
- "username": "AdamStudenik",
- "fullName": "Adam Studenik 🧮 (AdamStudenik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978949/medium/74a9ae3a5b9b779e869b55803b25c48a.jpg",
- "joined": "2019-09-10 13:50:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13978963",
- "username": "alexiskefalas",
- "fullName": "Alexis Kefalas (alexiskefalas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13978963/medium/fd2dd1fcfdaef0be5f80c40874f675ec.jpeg",
- "joined": "2019-09-10 14:10:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13979819",
- "username": "petr.eli.cz",
- "fullName": "Petr Eliáš (petr.eli.cz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13979819/medium/acece5759ed12f18bedfd2ef2e5f11fa.jpeg",
- "joined": "2019-10-19 05:02:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13979987",
- "username": "mateodaza",
- "fullName": "Mateo Daza (mateodaza)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13979987/medium/f1d7232073eea4d16ded491ebdbaba92.jpeg",
- "joined": "2019-09-11 12:05:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13979995",
- "username": "Mohamedwaly015",
- "fullName": "Mohamedwaly015",
- "avatarUrl": "https://www.gravatar.com/avatar/30352d56de0ac0d5dee42ea36bf6a1d4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-11 12:12:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13980841",
- "username": "phernandes277",
- "fullName": "phernandes277",
- "avatarUrl": "https://www.gravatar.com/avatar/44755ec05f9c60c54ddba8eda72bfde1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-12 07:16:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13983627",
- "username": "dina24samir",
- "fullName": "Dina Samir (dina24samir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13983627/medium/dc15713cc63793d033ad768808783f1f.jpg",
- "joined": "2019-09-14 18:56:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13971441",
- "username": "lucidtranslations",
- "fullName": "lucidtranslations",
- "avatarUrl": "https://www.gravatar.com/avatar/8260e1494a988a5c98616aae905d4496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-14 07:05:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "13984073",
- "username": "boomik305",
- "fullName": "boomik305",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13984073/medium/cd6558d2d1d5f72c3198dfe653b1eb8e.png",
- "joined": "2021-04-15 04:32:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13985383",
- "username": "xxmrmemedroidxx",
- "fullName": "xXMr MemeXx (xxmrmemedroidxx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13985383/medium/5f88fcd17dee6d833bcb95594bedd4ee.jpeg",
- "joined": "2021-01-08 08:14:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986271",
- "username": "ybb",
- "fullName": "Yiğit Burak (ybb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986271/medium/805f65ce273d713fc7c68735b4bc2e7b.jpg",
- "joined": "2021-03-18 08:39:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986387",
- "username": "rafarocha",
- "fullName": "rafarocha",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/a0c3812dc8e52a7ab934944250304328.jpeg",
- "joined": "2019-09-17 10:36:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986393",
- "username": "ivanch",
- "fullName": "José Henrique Ivanchechen (ivanch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986393/medium/f7d4c9676c7577fc56ce937af1b6dd37.jpeg",
- "joined": "2019-09-17 17:50:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986647",
- "username": "da447m",
- "fullName": "da447m",
- "avatarUrl": "https://www.gravatar.com/avatar/fa46389d10e6ec78a6b874a90fdfdc62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-17 15:56:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13986795",
- "username": "wayne.wong",
- "fullName": "wayne.wong",
- "avatarUrl": "https://www.gravatar.com/avatar/9765db61a5099cc3f17e60bb5ea23a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-05-21 23:06:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13987909",
- "username": "bro_afif",
- "fullName": "bro_afif",
- "avatarUrl": "https://www.gravatar.com/avatar/d407cd2bb8be375c17060905b501d279?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-18 21:02:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988359",
- "username": "Alex-crowdin1",
- "fullName": "Alex-crowdin1",
- "avatarUrl": "https://www.gravatar.com/avatar/1f1fb859727ed0498314b12d234a3468?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-19 08:30:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988515",
- "username": "martyna91",
- "fullName": "martyna91",
- "avatarUrl": "https://www.gravatar.com/avatar/c4682eadd702f68030402011a6676bc6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 13:01:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988731",
- "username": "andresbonilla",
- "fullName": "andresbonilla",
- "avatarUrl": "https://www.gravatar.com/avatar/f462cd104ed966dbc4cd324b9f00e002?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-19 15:07:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13988859",
- "username": "treecz",
- "fullName": "Jan Stránský (treecz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13988859/medium/1dc2e70a169815577dbd2cc191cbcbc2.jpeg",
- "joined": "2019-09-19 17:38:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13971447",
- "username": "LQSReviewFr",
- "fullName": "LQSReviewFr",
- "avatarUrl": "https://www.gravatar.com/avatar/39a45008bd00a53a540ea8d8cdd6a28d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-04 04:04:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13970333",
- "username": "DeepCrypto",
- "fullName": "DeepCrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/15a0efa64471f50de8019ff11749268a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-03 04:37:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13991789",
- "username": "hacktar",
- "fullName": "hacktar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13991789/medium/5376e976d7fc676eb5b92f45175e23ac.jpeg",
- "joined": "2019-09-23 03:43:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13961685",
- "username": "MasaUno",
- "fullName": "MasaUno",
- "avatarUrl": "https://www.gravatar.com/avatar/4509de031e55cd15aa8242d0e2569d0a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-25 01:52:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959887",
- "username": "emukhin",
- "fullName": "emukhin",
- "avatarUrl": "https://www.gravatar.com/avatar/b7de7b5aa443ebf593eb268a5df82ed2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 00:27:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959933",
- "username": "gabririgo",
- "fullName": "gabririgo",
- "avatarUrl": "https://www.gravatar.com/avatar/01c68c406b8aa7925f73841aef24fe9d?s=64&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 01:41:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959935",
- "username": "JaneK96",
- "fullName": "JaneK96",
- "avatarUrl": "https://www.gravatar.com/avatar/24a54d61c9dce4433e96434fc85902dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 01:50:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959951",
- "username": "amchercashin",
- "fullName": "amchercashin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959951/medium/c19cf61cdac1006def518f01829a8980.png",
- "joined": "2019-08-23 02:29:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959957",
- "username": "vincentlg",
- "fullName": "Vincent Le Gallic (vincentlg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959957/medium/6fecfb73bd02428094be6af1fd2de44a.png",
- "joined": "2019-08-23 03:04:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959989",
- "username": "yennis",
- "fullName": "yennis",
- "avatarUrl": "https://www.gravatar.com/avatar/c07bba6a9bf7e875e5cff721b5be7349?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 03:25:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960093",
- "username": "mkalinin",
- "fullName": "mkalinin",
- "avatarUrl": "https://www.gravatar.com/avatar/de1acbd374d8e50125e39afbc744e387?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 05:33:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960195",
- "username": "DamianoDamiano",
- "fullName": "DamianoDamiano",
- "avatarUrl": "https://www.gravatar.com/avatar/1ddbde4d55a9208b8b7e7bb82151f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 07:22:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960301",
- "username": "BlindNotDeaf",
- "fullName": "BlindNotDeaf",
- "avatarUrl": "https://www.gravatar.com/avatar/1a728f2b7b505565c96050fabecebb58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 09:34:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960593",
- "username": "pedrosoft",
- "fullName": "pedrosoft",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13960593/medium/b8f8b7bcf3d412cffe6ac3d93183cad2.jpeg",
- "joined": "2019-08-23 16:19:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13960747",
- "username": "Tsunade69",
- "fullName": "Tsunade69",
- "avatarUrl": "https://www.gravatar.com/avatar/9d9c77c3394212390e6a22f581610b56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-23 21:51:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13961683",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/bd6a79f6c41caeb962a065c9e4b593d6?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-25 01:50:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13961973",
- "username": "TakeshiNagahisa",
- "fullName": "TakeshiNagahisa",
- "avatarUrl": "https://www.gravatar.com/avatar/a3b5fae50c3818fe96d8442fe07cfc14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-25 08:52:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13967479",
- "username": "grzegorczykadam9",
- "fullName": "Adam Grzegorczyk (grzegorczykadam9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13967479/medium/cf2e85a4c91c0f31ec7d371c7fa10da4.jpg",
- "joined": "2021-06-18 12:28:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13962275",
- "username": "aed3103",
- "fullName": "Alejandro Escandon (aed3103)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962275/medium/4b2379c9a53c76a5f5a620ca316ed91d.png",
- "joined": "2019-08-25 15:50:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13962433",
- "username": "ethereum.cn",
- "fullName": "ethereum.cn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962433/medium/6a8b7d48c93a310b833e5f26db2aab4f.jpg",
- "joined": "2019-08-25 21:27:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13962749",
- "username": "Hikari.i",
- "fullName": "Hikari.i",
- "avatarUrl": "https://www.gravatar.com/avatar/440fe23a553b8fff798a357525cb099b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-26 05:42:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13962885",
- "username": "wimel85",
- "fullName": "wimel (wimel85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962885/medium/5f59b01867e660913ad275f303018feb.png",
- "joined": "2019-08-26 08:25:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13964197",
- "username": "Ldibartolo",
- "fullName": "Ldibartolo",
- "avatarUrl": "https://www.gravatar.com/avatar/2122a92514b788b40e427154fec7e3d7?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-27 13:27:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13964863",
- "username": "LQSreview",
- "fullName": "LQSreview",
- "avatarUrl": "https://www.gravatar.com/avatar/1fc7231d66b0da5d93cb15581154d35c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-28 05:27:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13964881",
- "username": "gabriellas",
- "fullName": "gabriellas",
- "avatarUrl": "https://www.gravatar.com/avatar/7988a6bb3994c6e8623bc37c6ebf7681?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-28 05:41:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965189",
- "username": "aliatiia",
- "fullName": "Ali Atiia (aliatiia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13965189/medium/5ddc7bef116227679263ca777ac28f38.png",
- "joined": "2019-08-28 11:05:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965277",
- "username": "eman.herawy",
- "fullName": "Eman Herawy (eman.herawy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13965277/medium/72ad97786d19f2619fc1b273b1a834ee.jpg",
- "joined": "2019-08-28 12:41:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965577",
- "username": "crystalwu",
- "fullName": "crystalwu",
- "avatarUrl": "https://www.gravatar.com/avatar/619b03efcd670823daed12ec87a7cef7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-28 21:29:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13965641",
- "username": "nake13",
- "fullName": "nake13",
- "avatarUrl": "https://www.gravatar.com/avatar/d7d36059be41bbf404955ead3cad9087?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-29 00:07:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13966413",
- "username": "miltonwilson",
- "fullName": "miltonwilson",
- "avatarUrl": "https://www.gravatar.com/avatar/ce22174e90d2311116f19d084ac38b6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-08-29 16:19:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13966789",
- "username": "melazouny9",
- "fullName": "Mahmoud (melazouny9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13966789/medium/1a4e6090e25cf850490420c21485aef3.png",
- "joined": "2019-08-30 05:05:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13989107",
- "username": "DjangoM",
- "fullName": "Jaroslav Macej (DjangoM)",
- "avatarUrl": "https://www.gravatar.com/avatar/5e55c27275162876144f25ae45dac6bd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-20 02:34:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13991829",
- "username": "twfhyr",
- "fullName": "Mitu Tan (twfhyr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13991829/medium/ec5ddc6ce26e1723ffdcc48cb11e74c0.jpg",
- "joined": "2019-09-23 04:20:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029391",
- "username": "HHJ111000",
- "fullName": "HHJ111000",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14029391/medium/fd7f9e4a7d07b7ef31ec0cc9815762a4.jpg",
- "joined": "2019-11-02 06:32:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14026590",
- "username": "florijan.kocbek",
- "fullName": "Florijan Kocbek (florijan.kocbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14026590/medium/303298c7b37fc4252b47f87fa21f2825.jpg",
- "joined": "2021-01-06 11:36:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14014865",
- "username": "VitorCarminatti",
- "fullName": "Vitor Carminatti (VitorCarminatti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14014865/medium/f2e87f0515e1dc27581553b414edead1.jpeg",
- "joined": "2019-10-15 15:21:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14015083",
- "username": "deividynegri",
- "fullName": "deividynegri",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14015083/medium/88f845483be35d468223ea911367b8d1.png",
- "joined": "2019-10-15 20:24:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14015265",
- "username": "lachoj",
- "fullName": "lachoj",
- "avatarUrl": "https://www.gravatar.com/avatar/a5f1316621f8a09b76040c949d419569?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-16 02:01:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14016583",
- "username": "adamlaska.ivanov",
- "fullName": "adam ivanov (adamlaska.ivanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14016583/medium/4b266dea24a22397952d46e3d267a75e.jpeg",
- "joined": "2021-04-03 21:51:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14017357",
- "username": "baidarus_pnl",
- "fullName": "baidarus_pnl",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14017357/medium/c679af4cb0b848838a61db70278c4275.jpeg",
- "joined": "2019-10-18 01:35:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14017439",
- "username": "hoainama8",
- "fullName": "Nam Ngô (hoainama8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14017439/medium/8b8b669377a509774445a42c0c45ca23.jpeg",
- "joined": "2019-10-18 03:21:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14021891",
- "username": "hadi.jami",
- "fullName": "Hadi Jami (hadi.jami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14021891/medium/44cc377b4fc43a3e13c36a754b5a469b.jpeg",
- "joined": "2020-02-01 04:12:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14022613",
- "username": "Ashley.li",
- "fullName": "Ashley.li",
- "avatarUrl": "https://www.gravatar.com/avatar/034f5cf453826439c38da40a65993c7a?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-28 05:05:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14023843",
- "username": "4hmetuyar",
- "fullName": "Ahmet UYAR (4hmetuyar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14023843/medium/0cd86910555daae6efafdf0269a52b06.png",
- "joined": "2019-10-24 04:16:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14024065",
- "username": "LQS_NL_linguist",
- "fullName": "LQS_NL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/5636b253d084ca5b3f4e25b9f18ffcdd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-24 08:35:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14024277",
- "username": "LQS_PL_linguist",
- "fullName": "LQS_PL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/05d785da2f97f8f46cae785b698161d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-24 11:30:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14025849",
- "username": "Lanson2232",
- "fullName": "Bünyamin Öztürk (Lanson2232)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14025849/medium/c00e03d2e64733c40233320d87112c33.png",
- "joined": "2021-04-25 22:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14026594",
- "username": "sandykay26",
- "fullName": "sandykay26",
- "avatarUrl": "https://www.gravatar.com/avatar/584a93747fd00cb12dd8f412bd9ec511?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-05 11:30:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14013247",
- "username": "zoul.dev",
- "fullName": "Pavlo Makarov (zoul.dev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14013247/medium/2dc6b8dada85152cca8cacd239f65933.png",
- "joined": "2019-10-14 08:38:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14026881",
- "username": "LQS_FA_linguist",
- "fullName": "LQS_FA_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/0ed7e7989f1998e36a68bc257bec64f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-28 13:07:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027332",
- "username": "m4z31995",
- "fullName": "Mazakoo M4Z3 (m4z31995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027332/medium/cd801d9c064287f739384640ea785026.jpeg",
- "joined": "2019-10-29 10:19:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027518",
- "username": "stezy",
- "fullName": "stezy",
- "avatarUrl": "https://www.gravatar.com/avatar/2c627f5a7900133db27b937dbfa440d8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-29 17:11:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027547",
- "username": "david1011",
- "fullName": "david1011",
- "avatarUrl": "https://www.gravatar.com/avatar/92ca7739cea05e9de8bc0df87c49eab1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-29 19:09:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027837",
- "username": "marianowadijacobo",
- "fullName": "marianowadijacobo",
- "avatarUrl": "https://www.gravatar.com/avatar/03fc7d6f1d1d535f1cebef496c596275?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-07-03 14:21:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027913",
- "username": "lopezi",
- "fullName": "Nuno Lopes (lopezi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027913/medium/2adaffec100d7d6b3135442363319ea4.jpeg",
- "joined": "2019-10-30 11:54:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14027967",
- "username": "antodp",
- "fullName": "Antonio Della Porta (antodp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14027967/medium/0fc81f2e0803280df6ace41634bb9ef6.png",
- "joined": "2019-10-30 13:56:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028051",
- "username": "angaisdev",
- "fullName": "Gabriel Almeida (angaisdev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14028051/medium/674e6659cafc0e431650100a34b6ea58.jpeg",
- "joined": "2019-10-30 16:56:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028287",
- "username": "owans",
- "fullName": "Owanate Amachree (owans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14028287/medium/2d45e3aa4f429c29c36c8cd56cb1bfb8.jpeg",
- "joined": "2019-10-31 05:53:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028617",
- "username": "gamazonka",
- "fullName": "gamazonka",
- "avatarUrl": "https://www.gravatar.com/avatar/41f8df6d28ce530d9cc0ac11408acdda?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-31 14:35:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14028641",
- "username": "samfetch",
- "fullName": "samfetch",
- "avatarUrl": "https://www.gravatar.com/avatar/4970d12ea197406d5f6d7cd3464f81ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-31 15:19:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14029082",
- "username": "LQS_IGBO_linguist",
- "fullName": "LQS_IGBO_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/88301d908987bdfcb8110c8d69cff169?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-01 13:40:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14014303",
- "username": "aturX",
- "fullName": "Atur (aturX)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14014303/medium/4abdce702cf667d98afe35be1e796b46.jpeg",
- "joined": "2020-03-18 22:08:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14013137",
- "username": "Daniele02_777",
- "fullName": "Daniele02_777",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14013137/medium/2c6e3ce0c561d62061fe261d40d95453.jpg",
- "joined": "2019-12-04 14:09:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13992489",
- "username": "shehazrin",
- "fullName": "Sheik Hazrin Bin Sheik Othman (shehazrin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13992489/medium/0c72d2c9f06da9369b1feceaf3d0f648.jpeg",
- "joined": "2020-11-18 10:24:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000275",
- "username": "gstvribs",
- "fullName": "Gustavo Ribeiro (gstvribs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000275/medium/4e40d6163c8df85f9868e1d39806f4a7.jpeg",
- "joined": "2019-10-01 22:07:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13992969",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/61a2b29986bf373c1cb326e69d55346f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 08:11:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13993041",
- "username": "LQS_EL_linguist",
- "fullName": "LQS_EL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/7923c0318fb7718899f5efcf235fa147?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 09:33:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13993311",
- "username": "LQS_SK_linguist",
- "fullName": "LQS_SK_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/db387e60ee7f7fb7ab959a256137f551?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 15:12:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13993399",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/cf73fba9beac9273a32e3bc399924d1f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-24 17:58:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13993717",
- "username": "LQS_RU_linguist",
- "fullName": "LQS_RU_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/e2e6b964a673a040b806c3dff5267f4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-25 03:33:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13993811",
- "username": "LQS_ES_linguist",
- "fullName": "LQS_ES_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/81881e0b0c35c44e87398edeee73cd4b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-25 05:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13994103",
- "username": "Alphaaa",
- "fullName": "Christian Mazzola (Alphaaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994103/medium/8fada44cb640c9f08080ce6ff2955f65.png",
- "joined": "2021-01-28 13:55:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13994593",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/941dd28ef44d36d794a96dfd431881a2?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-26 00:47:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13994825",
- "username": "jeffprestes",
- "fullName": "Jeff Prestes (jeffprestes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994825/medium/4a36bab27f88275f96ebbfa37e9fc518.jpeg",
- "joined": "2019-09-26 07:19:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13995555",
- "username": "muhadire2029",
- "fullName": "muhamed abdo (muhadire2029)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13995555/medium/938c1298bb55094d63701f6e0b2cde67.jpg",
- "joined": "2019-11-11 21:31:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13998233",
- "username": "faraggi",
- "fullName": "Felipe Faraggi (faraggi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13998233/medium/c53a708680d20eb5a3474ca0d27b7f51.png",
- "joined": "2019-09-30 01:57:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000077",
- "username": "bigblackclock",
- "fullName": "bigblackclock",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000077/medium/46b8ff36cb1623fb2a388f58a817b846.png",
- "joined": "2019-10-01 16:08:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000307",
- "username": "bergmannlucas",
- "fullName": "Lucas Bergmann (bergmannlucas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000307/medium/fdd87c00289f2b29277212427f3accdf.jpeg",
- "joined": "2019-10-01 23:32:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14011521",
- "username": "tmartinek3798",
- "fullName": "Tomáš Martinek (tmartinek3798)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14011521/medium/11d2b8b7556c6f6d65d6653cb793380a.jpeg",
- "joined": "2019-10-12 12:26:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000483",
- "username": "harkce",
- "fullName": "harkce",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000483/medium/fc9a15b787ef07f2ff61c89fdad21dd5.jpeg",
- "joined": "2019-10-02 04:37:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14000715",
- "username": "rodgeraraujo",
- "fullName": "Rogerio Araújo (rodgeraraujo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14000715/medium/1f83cb72b3024f8d05bb7f445712ad07.jpeg",
- "joined": "2019-10-02 08:39:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14002947",
- "username": "Danielagb",
- "fullName": "Daniela Gonzalez (Danielagb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14002947/medium/c439b706e38441fced4aa89b523c61e0.jpg",
- "joined": "2019-10-04 09:37:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14004721",
- "username": "asciipron",
- "fullName": "asciipron",
- "avatarUrl": "https://www.gravatar.com/avatar/b061a6f95610ff7309d8abb5b3f6088c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-06 09:45:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14005311",
- "username": "matjaz.verdnik",
- "fullName": "Matjaz Verdnik (matjaz.verdnik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14005311/medium/a78a0fca74ff7b447077bb25c0c17b5a.jpeg",
- "joined": "2019-10-07 01:47:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14005383",
- "username": "dTilen",
- "fullName": "Tilen Držan (dTilen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14005383/medium/bec643ba44c64e50df99683bab7f3efc.png",
- "joined": "2019-10-07 04:10:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14006913",
- "username": "pjgeutjens",
- "fullName": "Pieter Jan Geutjens (pjgeutjens)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14006913/medium/583d19dbd62b786dcf5a3affaf7ad07f.jpeg",
- "joined": "2019-10-09 14:28:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14008029",
- "username": "Izzur",
- "fullName": "Izzur Zuhri (Izzur)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14008029/medium/1927b0d7628d42665fa1bc7b4e63b67c.jpeg",
- "joined": "2019-10-09 04:31:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14008739",
- "username": "amusfq",
- "fullName": "amusfq",
- "avatarUrl": "https://www.gravatar.com/avatar/43507a8d5cd23a2ed4a21a44b4416a1e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-09 18:59:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14009257",
- "username": "shahrooz1",
- "fullName": "shahrooz1",
- "avatarUrl": "https://www.gravatar.com/avatar/ddea0048ea2aa764d2a7cd0ab215e98e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-10 07:28:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14009413",
- "username": "rukuiza",
- "fullName": "rukuiza",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14009413/medium/1b2bfe82608da50af9bc1ec3e8636706.jpeg",
- "joined": "2019-11-05 12:14:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14010359",
- "username": "enochmbaebie",
- "fullName": "Chukwuemeka Mbaebie (enochmbaebie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14010359/medium/6009911d59d161eee816cb0694c5b8b7.jpg",
- "joined": "2019-10-11 07:24:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14011385",
- "username": "CAG07",
- "fullName": "CAG07",
- "avatarUrl": "https://www.gravatar.com/avatar/e30ead2a487194217aa228315238634a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-10-12 10:32:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559630",
- "username": "jorge.arveg",
- "fullName": "Jorge A.R.V (jorge.arveg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559630/medium/fe2910f8bbc5bd2e5c7a41ca4303943b.jpg",
- "joined": "2021-01-02 12:08:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559684",
- "username": "Tristantsch0987",
- "fullName": "Tristantsch0987",
- "avatarUrl": "https://www.gravatar.com/avatar/bcdbf659bc67af95f1ff1723b7d4597c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 12:42:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14701334",
- "username": "ozora-ogino",
- "fullName": "Ozora Ogino (ozora-ogino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14701334/medium/3b0ac84d5b08a7171e0157caba5e6ece.png",
- "joined": "2021-04-07 05:08:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 33,
- "negativeVotes": 21,
- "winning": 0
- },
- {
- "user": {
- "id": "14660922",
- "username": "ysai",
- "fullName": "ysai",
- "avatarUrl": "https://www.gravatar.com/avatar/4f68febf1efc29b70458e1470a703904?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 21:41:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659534",
- "username": "isroilov_06",
- "fullName": "isroilov_06",
- "avatarUrl": "https://www.gravatar.com/avatar/e29a1bf6eda18fc49b625a03ae1c2402?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 00:44:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659742",
- "username": "bintangnndhy",
- "fullName": "Bintang Anandhiya (bintangnndhy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659742/medium/3f71a7bfcbef481a1a77f8f76bd66971.jpg",
- "joined": "2021-03-09 04:07:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659984",
- "username": "danil0x",
- "fullName": "danil0x",
- "avatarUrl": "https://www.gravatar.com/avatar/2db94d8da7600836effd779b4c213b35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 07:25:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660054",
- "username": "chandraciek",
- "fullName": "Chandra Brahmana (chandraciek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660054/medium/d5d65ffbc12b004ac94eeea2312811c0.jpeg",
- "joined": "2021-03-09 08:35:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660090",
- "username": "paidused",
- "fullName": "Quang Huy (paidused)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660090/medium/6564af193237971aaabc8332d9feb9e5.jpeg",
- "joined": "2021-07-04 00:33:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660096",
- "username": "Simple-Tory",
- "fullName": "Simple-Tory",
- "avatarUrl": "https://www.gravatar.com/avatar/e6791a4d6808986b81556ac01fab39f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 08:45:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660306",
- "username": "vitya.demin50",
- "fullName": "Виктор Дёмин (vitya.demin50)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660306/medium/83dea37d852e39c7d6a4bd7d33e4a689.jpeg",
- "joined": "2021-03-09 11:23:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660464",
- "username": "bebarsbjadough",
- "fullName": "BEBARS (bebarsbjadough)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660464/medium/4dc82d0601a4934c302424b4947709e1.jpeg",
- "joined": "2021-03-09 13:20:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660598",
- "username": "DupK",
- "fullName": "Jules Dupont (DupK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660598/medium/a40b20fba99a1de1b947c30caf013c88.jpeg",
- "joined": "2021-03-09 15:20:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660622",
- "username": "bh6123261",
- "fullName": "عبدالرحمن حسين (bh6123261)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660622/medium/3cf987dc25f1178ce8756c6684739a27.jpg",
- "joined": "2021-03-09 15:36:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660654",
- "username": "leon.musikhin",
- "fullName": "Leon Musikhin (leon.musikhin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660654/medium/911df2aec4ab9b4f6f729e55f6ac54e2.jpeg",
- "joined": "2021-03-09 16:08:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660858",
- "username": "Mahmoudalsyd",
- "fullName": "Philosophy فَلْسَفَة (Mahmoudalsyd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660858/medium/18b0483f449f20999652cc9384994164.jpg",
- "joined": "2021-03-09 20:35:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14660944",
- "username": "ko.no.do1023",
- "fullName": "Koko Sweet (ko.no.do1023)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14660944/medium/83d2a56c3ff5320eedd26348707000f9.jpeg",
- "joined": "2021-03-09 22:09:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659478",
- "username": "antoniochiari",
- "fullName": "antoniochiari",
- "avatarUrl": "https://www.gravatar.com/avatar/d4f716b24594355b3bd8c2488a1417f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 23:24:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14661062",
- "username": "patc",
- "fullName": "Patrick Cao (patc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14661062/medium/7c1f28efe49efaf00af7082ef7591046.png",
- "joined": "2021-03-10 00:26:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14661214",
- "username": "PetraTkalcec",
- "fullName": "PetraTkalcec",
- "avatarUrl": "https://www.gravatar.com/avatar/6c2d298c8225c96c53672f4eeb6988e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 04:09:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14661636",
- "username": "marino2105",
- "fullName": "marino2105",
- "avatarUrl": "https://www.gravatar.com/avatar/90b0ccf4eae1678d86f5580c79c1f2bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 18:58:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662172",
- "username": "qp",
- "fullName": "qp",
- "avatarUrl": "https://www.gravatar.com/avatar/f1e6d4721d6ef7b5ad70a36c28876994?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 13:51:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662270",
- "username": "alan4499gomes.rubio",
- "fullName": "Alan Gomez (alan4499gomes.rubio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14662270/medium/81a64ec57910d241c094de5ef529b07c.jpeg",
- "joined": "2021-03-10 15:29:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14662518",
- "username": "malikhan",
- "fullName": "malikhan",
- "avatarUrl": "https://www.gravatar.com/avatar/d2a3abcec873bc191ca69894fa5d5e9f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 20:17:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662564",
- "username": "jyfmidi",
- "fullName": "jyfmidi",
- "avatarUrl": "https://www.gravatar.com/avatar/6f1fb1baa61d75ae216be7217d59d4ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 20:52:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14662728",
- "username": "opencar2018",
- "fullName": "open mind (opencar2018)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14662728/medium/7d894445fa53234eea8bd35962bfebea.jpeg",
- "joined": "2021-03-11 00:52:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663076",
- "username": "LQS_HR_linguist",
- "fullName": "LQS_HR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/b0d21b6ac5ef5d0ffde74179308cd3a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 06:24:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663084",
- "username": "aakashag",
- "fullName": "aakashag",
- "avatarUrl": "https://www.gravatar.com/avatar/1918cee3fb5ee945da642b1413893976?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 06:50:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663288",
- "username": "AssetGrav",
- "fullName": "AssetGrav",
- "avatarUrl": "https://www.gravatar.com/avatar/be2b55f80d47ddaef47a237cc819441a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 08:58:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663476",
- "username": "bray_careto",
- "fullName": "Bray Caréto (bray_careto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663476/medium/f4de50be25f047d5dca157159471930f.jpeg",
- "joined": "2021-03-11 11:14:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659526",
- "username": "o7__o7",
- "fullName": "o7__o7",
- "avatarUrl": "https://www.gravatar.com/avatar/823385d0a4c6221b07ebb09440d38160?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-09 00:30:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659468",
- "username": "snipeeeralamoood",
- "fullName": "MOHMMED_ AL3D (snipeeeralamoood)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659468/medium/c8301face694b762b0d71bf7937605dd.jpeg",
- "joined": "2021-03-08 23:07:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663902",
- "username": "Siy27",
- "fullName": "Siy27",
- "avatarUrl": "https://www.gravatar.com/avatar/b94f9fa65859ae077b875f4c959adc3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 17:50:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657632",
- "username": "Bofteak",
- "fullName": "Mahmoud Elhawary (Bofteak)",
- "avatarUrl": "https://www.gravatar.com/avatar/cbc12faee00d2d7904f31422dacea22c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 15:17:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656698",
- "username": "fish.meng",
- "fullName": "fish.meng",
- "avatarUrl": "https://www.gravatar.com/avatar/5011498f81f69cbeb69a3232bbef16f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 02:32:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656714",
- "username": "ireverdu",
- "fullName": "Iván Revuelta (ireverdu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656714/medium/2c80d8f4dbba229f35d95960783e80da.jpeg",
- "joined": "2021-03-07 00:57:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656954",
- "username": "Khurramsajjad",
- "fullName": "Khurramsajjad",
- "avatarUrl": "https://www.gravatar.com/avatar/78e597ac5e41dfc6583fbc845b5414f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 04:57:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657052",
- "username": "Arafet",
- "fullName": "Arafet",
- "avatarUrl": "https://www.gravatar.com/avatar/8f18b6fea0f16d41cf671a8d65c91bcf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 06:33:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657118",
- "username": "evgasadov",
- "fullName": "Евгений Асадов (evgasadov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657118/medium/468b1c43cdb413475632521eb8b7f031.jpeg",
- "joined": "2021-08-18 12:34:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657196",
- "username": "alnoona0987",
- "fullName": "alnoona0987",
- "avatarUrl": "https://www.gravatar.com/avatar/1ebad767b8dd1d34081b8d0d46a41173?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 08:38:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657222",
- "username": "mnsfhxy",
- "fullName": "mnsfhxy",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657222/medium/379dff48fc25e532bc99a16bd96b38ad.png",
- "joined": "2021-03-07 09:04:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657312",
- "username": "ANDY.ART.123",
- "fullName": "ANDY.ART.123",
- "avatarUrl": "https://www.gravatar.com/avatar/b064ae37de1c1b54974fa6c009cd74a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 10:39:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657340",
- "username": "FadyZarief",
- "fullName": "Fady Zarief (FadyZarief)",
- "avatarUrl": "https://www.gravatar.com/avatar/916820c2307b32d337d9e04d9b485ecb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 10:59:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657486",
- "username": "mmrodrigu",
- "fullName": "mmrodrigu",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657486/medium/17ffaafbbe470986abea2fca3163f554.png",
- "joined": "2021-03-07 13:04:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657558",
- "username": "ravalsta",
- "fullName": "ravalsta",
- "avatarUrl": "https://www.gravatar.com/avatar/1ada6897e49ea580b390abf58cbad551?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 14:21:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657572",
- "username": "ahmed.sami.anous",
- "fullName": "aMED aNOus (ahmed.sami.anous)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657572/medium/857cd2c1d80d0ec319af581b735e168e.jpeg",
- "joined": "2021-03-07 14:30:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657690",
- "username": "Eslamteto",
- "fullName": "Eslam Teto (Eslamteto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657690/medium/c79b7b4d51886db2620827ed6f747c2c.jpeg",
- "joined": "2021-03-07 16:27:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659348",
- "username": "Linar",
- "fullName": "Linar",
- "avatarUrl": "https://www.gravatar.com/avatar/df28643215e3b7af3b4828aa57690a35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 20:14:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657968",
- "username": "Ntdnghiax",
- "fullName": "Ntdnghiax",
- "avatarUrl": "https://www.gravatar.com/avatar/5c36763db8320cdab9c18f5c8000d2b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-07 23:05:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658124",
- "username": "Whisker17",
- "fullName": "Whisker17",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658124/medium/18f9c6ace7e85e56eb86e2b6486789e0.jpeg",
- "joined": "2021-03-08 02:25:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658486",
- "username": "svi728",
- "fullName": "svi728",
- "avatarUrl": "https://www.gravatar.com/avatar/6ccd74eea921748108ee2d87e93a8583?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 06:58:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658598",
- "username": "wahyukristyantoro",
- "fullName": "wahyu kristyantoro (wahyukristyantoro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658598/medium/8fcc6e4c4ab169d95c6122ff4b02f48d.jpeg",
- "joined": "2021-03-08 08:48:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658606",
- "username": "george.trotter",
- "fullName": "George Trotter (george.trotter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658606/medium/6170403fee6a194fd6cd3879c0b021ad.jpeg",
- "joined": "2021-03-08 08:49:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658714",
- "username": "rabihkhattar66",
- "fullName": "Rabih Khattar (rabihkhattar66)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14658714/medium/05db5d5aeff930184ab6bd6ffb367b2b.jpeg",
- "joined": "2021-03-08 10:09:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658870",
- "username": "oleksiy060r",
- "fullName": "oleksiy060r",
- "avatarUrl": "https://www.gravatar.com/avatar/028b7e8eebf57cbc3b3f27848b70b783?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 12:10:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14658876",
- "username": "Industry_Arabic",
- "fullName": "Industry_Arabic",
- "avatarUrl": "https://www.gravatar.com/avatar/5d53f4e53843e1c474c13632321af591?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 12:08:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659020",
- "username": "DanielTaqueto",
- "fullName": "DanielTaqueto",
- "avatarUrl": "https://www.gravatar.com/avatar/2378cc044fca7bcd0a7199b9cbf5f3e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 14:05:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659132",
- "username": "nielapereira",
- "fullName": "Daniela Pereira (nielapereira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659132/medium/2e79e528499ce8a6ff13fe2f0a952299.jpeg",
- "joined": "2021-03-08 15:39:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659232",
- "username": "sacripantitomas",
- "fullName": "Tomás Sacripanti (sacripantitomas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659232/medium/0ad2b5e0ab8f9502bd4c244a3e743f5f.jpeg",
- "joined": "2021-03-08 17:40:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14659246",
- "username": "mohamed.faisal.alabsy",
- "fullName": "Mohammed Faisal (mohamed.faisal.alabsy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14659246/medium/563188834be6f03958979efc191b9f4a.jpg",
- "joined": "2021-03-08 17:59:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663688",
- "username": "Elvis339",
- "fullName": "Elvis (Elvis339)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663688/medium/ee99bf7167513672a05a4bda2ee9e428.jpeg",
- "joined": "2021-03-11 14:04:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14663928",
- "username": "luc4s.eb",
- "fullName": "Lucas Ebana (luc4s.eb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14663928/medium/991c5de7330b7ccbd5581f7bab37f347.jpg",
- "joined": "2021-03-11 18:20:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656648",
- "username": "MuhammedAllam",
- "fullName": "MuhammedAllam",
- "avatarUrl": "https://www.gravatar.com/avatar/fda348b474c2998c19cea4082f8c562a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 23:10:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668592",
- "username": "qq787241930",
- "fullName": "qq787241930",
- "avatarUrl": "https://www.gravatar.com/avatar/0f76bcc6f46fb5b22978785a58711e15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 07:07:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667626",
- "username": "matheusrrugolo",
- "fullName": "Matheus Rodrigues (matheusrrugolo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667626/medium/8f3c59f10649fb1abbd53bee5614aa2b.jpeg",
- "joined": "2021-03-14 13:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667670",
- "username": "pabloviparea",
- "fullName": "Pablo Godoy (pabloviparea)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667670/medium/547312e015ec81a486267261130680bb.jpeg",
- "joined": "2021-03-14 13:34:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667740",
- "username": "Tanuxen",
- "fullName": "Tanuxen",
- "avatarUrl": "https://www.gravatar.com/avatar/d5aa9a3b85f1bf490626bf8b43db6583?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 14:42:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667834",
- "username": "zeza",
- "fullName": "Hüseyin Öztürk (zeza)",
- "avatarUrl": "https://www.gravatar.com/avatar/175567915934b09eaddae2442bef249a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:11:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667862",
- "username": "lingxu0821",
- "fullName": "lingxu0821",
- "avatarUrl": "https://www.gravatar.com/avatar/640a130621a4c8b1db9ac60601d7dfc6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:25:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667876",
- "username": "liuname",
- "fullName": "Emanuil Stefanov Gaydarov (liuname)",
- "avatarUrl": "https://www.gravatar.com/avatar/9a4741aa89baea45008cceff1d48e32b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:38:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667884",
- "username": "ali_alsigad",
- "fullName": "ali_alsigad",
- "avatarUrl": "https://www.gravatar.com/avatar/b477e28e9b32bd5739de56b96c3c220f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 16:48:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667996",
- "username": "Argys199",
- "fullName": "Volkova Irina (Argys199)",
- "avatarUrl": "https://www.gravatar.com/avatar/bed9386d89bf0197e2e80d3a9fea3dd8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 18:40:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668094",
- "username": "nikkikedia",
- "fullName": "nikkikedia",
- "avatarUrl": "https://www.gravatar.com/avatar/ace33e47f779c0731181ae17eae6547c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 20:55:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668114",
- "username": "ttinho",
- "fullName": "ttinho",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14668114/medium/abb6c5088e9fedee0db9d42e5079b776.jpeg",
- "joined": "2021-03-14 21:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668266",
- "username": "zladupka",
- "fullName": "Zla Dupka (zladupka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14668266/medium/9a47ff2fefed04e81000beba521783e9.jpg",
- "joined": "2021-03-15 01:03:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668504",
- "username": "Nefertysa",
- "fullName": "Nefertysa",
- "avatarUrl": "https://www.gravatar.com/avatar/675f361fa49bc0880fc4b5ca96ebd5b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 05:38:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668742",
- "username": "lmichelin",
- "fullName": "Leandro (lmichelin)",
- "avatarUrl": "https://www.gravatar.com/avatar/ea5aff5ddc9ccd86cbecb40868581945?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 09:19:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667410",
- "username": "Den_ziiz",
- "fullName": "ismanto (Den_ziiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667410/medium/137da446e2f798bacb3382aa78ac1441.jpg",
- "joined": "2021-03-14 09:54:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14668990",
- "username": "alejandro_elbaz",
- "fullName": "alejandro_elbaz",
- "avatarUrl": "https://www.gravatar.com/avatar/e5f001a63de9be6ac33a6e1b82ca27fc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 12:24:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669040",
- "username": "skyfackr",
- "fullName": "fackr jiang (skyfackr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669040/medium/c7c3c2f784c18d73a0bb6c9f53665f11.jpeg",
- "joined": "2021-03-15 13:14:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669084",
- "username": "romgille",
- "fullName": "Romain Gille (romgille)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669084/medium/fd229db6a99e7b8d53d09bc0d4c44145.png",
- "joined": "2021-03-15 14:09:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669202",
- "username": "Phintis",
- "fullName": "Phintis",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669202/medium/d020b1d7dfdc5782f15cbce0f6c0752b.jpg",
- "joined": "2021-03-15 15:41:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669234",
- "username": "rahumada22",
- "fullName": "Rodrigo Ahumada (rahumada22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669234/medium/f54888c89d5f6c887cb140abcb841398.jpeg",
- "joined": "2021-03-15 16:06:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669508",
- "username": "Gianmarcodev",
- "fullName": "Gianmarco Venerito (Gianmarcodev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669508/medium/a8a764af2fe9af958a410c723fbd2167.png",
- "joined": "2021-04-05 12:19:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669576",
- "username": "napiyonulas",
- "fullName": "napiyonulas",
- "avatarUrl": "https://www.gravatar.com/avatar/4099b0e05279ac7e7479180cac89ca02?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 22:07:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669614",
- "username": "nosferatu500",
- "fullName": "nosferatu500",
- "avatarUrl": "https://www.gravatar.com/avatar/466b11a9f99fc85d8d6c34495082fd7a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-15 22:45:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669638",
- "username": "Bigchain",
- "fullName": "Виталий Добрый (Bigchain)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669638/medium/542782d0aa0b95801fbf719f0b5578d9.jpg",
- "joined": "2021-03-15 23:32:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669694",
- "username": "txlyre",
- "fullName": "Nika Kalanakova (txlyre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669694/medium/a562de0efbc590c1b69f67c3308c47ed.jpg",
- "joined": "2021-03-16 01:33:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669734",
- "username": "fcab",
- "fullName": "fcab",
- "avatarUrl": "https://www.gravatar.com/avatar/1c42ab8c861169042cb2d5c07074f541?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 02:30:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14669862",
- "username": "YeahJack",
- "fullName": "Jack Xu (YeahJack)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14669862/medium/3b9412b83dceb6cb13b61c67320649b6.jpeg",
- "joined": "2021-03-16 04:56:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667482",
- "username": "vimarket.it",
- "fullName": "Jovan Stankovic (vimarket.it)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667482/medium/b380badf662165920a1873b5f0dfd913.jpg",
- "joined": "2021-03-14 11:28:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667296",
- "username": "shyamsundarb",
- "fullName": "ShyamSundarB (shyamsundarb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667296/medium/c002d83a0fdab4848fc1d3bbd5f1157c.png",
- "joined": "2021-03-14 07:42:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664062",
- "username": "mytyzzz",
- "fullName": "Gao Patrick (mytyzzz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664062/medium/8cec923db7685418ff655d408172d60e.png",
- "joined": "2021-03-11 21:29:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665754",
- "username": "R3z4_Pr0gramm3r",
- "fullName": "Reza Rafsanjani (R3z4_Pr0gramm3r)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665754/medium/72c1f853dc01a48166c2ac4476d4a63a.png",
- "joined": "2021-03-13 02:48:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664124",
- "username": "glpyldrm",
- "fullName": "glpyldrm",
- "avatarUrl": "https://www.gravatar.com/avatar/ab52d3346e48b9478699da6837fa29cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-11 22:52:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664402",
- "username": "alex_1",
- "fullName": "alex_1",
- "avatarUrl": "https://www.gravatar.com/avatar/6e97cd91173b377f7ec419cce9b55c14?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 03:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664432",
- "username": "sewoyl",
- "fullName": "Tom O (sewoyl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664432/medium/76d5a3fb5606dbd3bc3a6d35e32a2f81.jpeg",
- "joined": "2021-03-12 04:33:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664526",
- "username": "genki1246",
- "fullName": "su zu (genki1246)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664526/medium/e44531d52517b4b3d7690a3007724942.png",
- "joined": "2021-03-12 05:46:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14664708",
- "username": "yorihito.tada",
- "fullName": "Yorihito Tada (yorihito.tada)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14664708/medium/eec8e38895d8d1e900a8c4291a18a602.jpeg",
- "joined": "2021-03-12 07:59:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665064",
- "username": "AdesGod",
- "fullName": "AdesGod",
- "avatarUrl": "https://www.gravatar.com/avatar/80ed072114c61d96685504d3ba997a06?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 11:50:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665128",
- "username": "Pierlu_be",
- "fullName": "Pierluigi Belpassi (Pierlu_be)",
- "avatarUrl": "https://www.gravatar.com/avatar/b09dd2530fb46b957c0a8c72efb1fc5b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 12:58:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665264",
- "username": "Cllkvls02",
- "fullName": "Cllkvls02",
- "avatarUrl": "https://www.gravatar.com/avatar/462b5aa0863e2423b58b1bcb0f96bf9a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 15:13:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665320",
- "username": "LQS_PTB_RT",
- "fullName": "LQS_PTB_RT",
- "avatarUrl": "https://www.gravatar.com/avatar/e2e1ec217b4400ae69ce30f94b999250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:18:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665326",
- "username": "Voidentente",
- "fullName": "Voidentente",
- "avatarUrl": "https://www.gravatar.com/avatar/33a14fe0fd1b2d7f1da11e533db88d0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:33:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665348",
- "username": "LQS_PTBR_REV",
- "fullName": "LQS_PTBR_REV",
- "avatarUrl": "https://www.gravatar.com/avatar/cda18561180024c2ec6b0ba1459d5750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:48:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665362",
- "username": "_mohamad5_",
- "fullName": "_mohamad5_",
- "avatarUrl": "https://www.gravatar.com/avatar/16114efa57fc6796274c1e6f45bdd74c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 16:54:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665948",
- "username": "rosdec",
- "fullName": "Rosario De Chiara (rosdec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665948/medium/1c9ce66f9649bddfc810e39ee52ebf90.jpeg",
- "joined": "2021-03-13 05:55:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667214",
- "username": "Monika_crazy",
- "fullName": "Monika_crazy",
- "avatarUrl": "https://www.gravatar.com/avatar/16ef513610aaafe383e565b9b8c34a77?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-14 06:43:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665962",
- "username": "sadegh7708",
- "fullName": "sadegh7708",
- "avatarUrl": "https://www.gravatar.com/avatar/da53f0ad022fda6679397596fd283ae5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 06:16:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666112",
- "username": "tramanhluong228",
- "fullName": "Anh LNT (tramanhluong228)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666112/medium/36fe2b2f8de789d1a17fa3359e5bf0ae.jpeg",
- "joined": "2021-03-13 10:32:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666300",
- "username": "matheusjordano",
- "fullName": "matheusjordano",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666300/medium/114f1708cbf583e87780f21f565f642f.jpg",
- "joined": "2021-03-13 11:15:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666384",
- "username": "gimyu",
- "fullName": "gimyu",
- "avatarUrl": "https://www.gravatar.com/avatar/b9ad81d93b8b8e18dc71e375674714c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 12:33:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666408",
- "username": "gregosaure",
- "fullName": "Gregory Kalscheuer (gregosaure)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666408/medium/99af6b68941ee050aa03bd23c1ec27aa.jpeg",
- "joined": "2021-03-13 12:59:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666524",
- "username": "sosixyu4yi",
- "fullName": "Соси Хуй (sosixyu4yi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666524/medium/011c9b43dfedf888e8365d57ffbdec61.jpg",
- "joined": "2021-03-13 14:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666544",
- "username": "returndiego",
- "fullName": "Diego (returndiego)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666544/medium/5570573972948b1a213a707fba25576a.jpeg",
- "joined": "2021-03-13 14:43:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666636",
- "username": "stasbiskup",
- "fullName": "stasbiskup",
- "avatarUrl": "https://www.gravatar.com/avatar/a7b6d05be5b2423cef20062c615d7a4c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 16:21:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666792",
- "username": "motasem09",
- "fullName": "motasem09",
- "avatarUrl": "https://www.gravatar.com/avatar/842fe46bda78e40c8055d7bb933a446b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 20:26:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666804",
- "username": "leipayne168",
- "fullName": "lei payne (leipayne168)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666804/medium/df90c12157632350cb2bef5a418175b3.jpg",
- "joined": "2021-03-13 20:48:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666846",
- "username": "dharmikp1",
- "fullName": "dharmikp1",
- "avatarUrl": "https://www.gravatar.com/avatar/dc43bed04cfd86d1cb74bd31d667c522?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-13 21:56:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14666926",
- "username": "ruchitrami",
- "fullName": "Ruchit Rami (ruchitrami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14666926/medium/247af4069c989fa0999afad408eba72b.jpeg",
- "joined": "2021-03-13 23:47:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14667186",
- "username": "dawidthur",
- "fullName": "Dawid Mateusz Zimoń (dawidthur)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14667186/medium/1a4ed5be4891a763568337ffde5b57c9.jpeg",
- "joined": "2021-03-14 05:58:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656670",
- "username": "maycol8912",
- "fullName": "maycol8912",
- "avatarUrl": "https://www.gravatar.com/avatar/28be465c04da823a455c2c21cf011984?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 23:42:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656634",
- "username": "r.koshevets",
- "fullName": "Rita Koshevets (r.koshevets)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656634/medium/659d4f2ac9acdee55e0a30b2e99d576b.jpeg",
- "joined": "2021-03-06 22:49:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670242",
- "username": "shortarrow",
- "fullName": "shortarrow",
- "avatarUrl": "https://www.gravatar.com/avatar/bc2f210e572668493a07a486af754c84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 10:39:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645750",
- "username": "lan.kou2976",
- "fullName": "mickael myer (lan.kou2976)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645750/medium/dc2f0aa28844178cd2a1ba31cc023522.jpeg",
- "joined": "2021-02-28 01:56:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644396",
- "username": "dyczol",
- "fullName": "Bartek Dyczkowski (dyczol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14644396/medium/b12621d338ae5281cafad45f97aae563.jpeg",
- "joined": "2021-02-27 01:24:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644426",
- "username": "wode",
- "fullName": "wode",
- "avatarUrl": "https://www.gravatar.com/avatar/6fd40beebf809e90df044c81433928f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 02:33:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644754",
- "username": "nigel-cloud",
- "fullName": "nigel-cloud",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14644754/medium/40c286e0605c5a38bba01f13766d04e2.jpeg",
- "joined": "2021-03-06 20:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644758",
- "username": "hoagiadaithieu",
- "fullName": "Hoa Gia Đại Thiếu (hoagiadaithieu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14644758/medium/80630ced3e91037fca9bcab28fc7b128.jpeg",
- "joined": "2021-02-28 03:03:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644906",
- "username": "yhoga",
- "fullName": "yhoga",
- "avatarUrl": "https://www.gravatar.com/avatar/65a1bd725f2f3981b51c2c13ff503d2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 10:16:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14644950",
- "username": "BadLone",
- "fullName": "BadLone",
- "avatarUrl": "https://www.gravatar.com/avatar/a308713b06b3b9cddf2659aaddc2d250?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 10:45:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645002",
- "username": "langlanems",
- "fullName": "xiaojing zhang (langlanems)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645002/medium/f3da3a6e8dbc9bf313dbfaa888b34063.jpg",
- "joined": "2021-02-27 11:30:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645132",
- "username": "kallmy",
- "fullName": "kallmy",
- "avatarUrl": "https://www.gravatar.com/avatar/247f5ec6170f5e38388b4986c512f827?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 13:40:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645188",
- "username": "Mportugal",
- "fullName": "Jorge Miguel Valtelhas Martins Pinto (Mportugal)",
- "avatarUrl": "https://www.gravatar.com/avatar/3fb92ae584f181bfd6bf851f4ea99c62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 14:25:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645232",
- "username": "Nguyenhop248.",
- "fullName": "Nguyenhop248.",
- "avatarUrl": "https://www.gravatar.com/avatar/b5b11cb812bf50e5f625f6d9cc53244c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-27 14:58:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645360",
- "username": "Podda",
- "fullName": "Podda",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645360/medium/7fe21c8131ede3095aefd1ae698697d6.jpeg",
- "joined": "2021-02-27 17:37:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645480",
- "username": "mohamedkhalfahmed600",
- "fullName": "mohamed khalf (mohamedkhalfahmed600)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645480/medium/bcb8e3612c5663046e9d2f572a1b67ed.jpg",
- "joined": "2021-02-27 19:51:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645914",
- "username": "z13571",
- "fullName": "z13571",
- "avatarUrl": "https://www.gravatar.com/avatar/104959f31fb322d7f84ec51638118448?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 05:03:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643788",
- "username": "Riorong",
- "fullName": "Riorong",
- "avatarUrl": "https://www.gravatar.com/avatar/78318a3a3ae7fa013a7d44589c8f2f7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-26 12:48:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645922",
- "username": "506utyutyuty",
- "fullName": "Marcos D. (506utyutyuty)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645922/medium/defd7b38618b1e500ae3c09e4b6f3f69.jpeg",
- "joined": "2021-02-28 05:09:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14645998",
- "username": "Sercangnc",
- "fullName": "Sercan Genç (Sercangnc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14645998/medium/8f30fe98be89f8eb293918567bbf6bdd.jpeg",
- "joined": "2021-02-28 06:35:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646228",
- "username": "eurinoks",
- "fullName": "eurinoks",
- "avatarUrl": "https://www.gravatar.com/avatar/c50312a6d7df7aa65864a9227c2a6272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 10:09:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646244",
- "username": "mrsunchen0110",
- "fullName": "chen sun (mrsunchen0110)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646244/medium/ced9415dcbce7bb8ea9ded3d7d4809ff.jpg",
- "joined": "2021-02-28 10:18:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646492",
- "username": "Kajachuan",
- "fullName": "Kevin Cajachuán (Kajachuan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646492/medium/7a8ecd5d8dfaacf424ad44f5f47aa24e.jpeg",
- "joined": "2021-10-04 17:21:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 107
- },
- {
- "user": {
- "id": "14646730",
- "username": "udopton",
- "fullName": "udo pton (udopton)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14646730/medium/7d8e325859ee84c6efa0b4d38934382d.jpg",
- "joined": "2021-03-01 16:38:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646822",
- "username": "BenjaminDetre",
- "fullName": "BenjaminDetre",
- "avatarUrl": "https://www.gravatar.com/avatar/92ff582851df3c70085d904e94828b52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 19:32:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14646842",
- "username": "jcanlas13",
- "fullName": "jcanlas13",
- "avatarUrl": "https://www.gravatar.com/avatar/5e386b0731d2423803b522a1d92e2984?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-28 20:00:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647238",
- "username": "zamptom",
- "fullName": "zamptom",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647238/medium/ebe5fc22995b98e8bdcb2fe79fb7f38c.png",
- "joined": "2021-03-01 02:50:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647290",
- "username": "mfurkandemir",
- "fullName": "mfurkandemir",
- "avatarUrl": "https://www.gravatar.com/avatar/0b51af4f510766f0f983193d0b54a503?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 03:23:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647298",
- "username": "ViPratap72",
- "fullName": "Surender Pratap Singh (ViPratap72)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647298/medium/4ad8368a7ffa55bb7e086a1f7f5a967d.jpeg",
- "joined": "2021-03-01 03:36:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647528",
- "username": "f101431",
- "fullName": "f101431",
- "avatarUrl": "https://www.gravatar.com/avatar/f84c6b598b9012bf922f6ccac4b8c03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 05:52:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643970",
- "username": "copperking",
- "fullName": "copperking",
- "avatarUrl": "https://www.gravatar.com/avatar/8556db9704db02343ec3a068b5bd1a32?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-26 15:17:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643482",
- "username": "areejsalem30",
- "fullName": "Areej Salem (areejsalem30)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643482/medium/2112012f11df09ad2e3390120c49fe0a.jpg",
- "joined": "2021-02-26 08:32:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647722",
- "username": "Dr747",
- "fullName": "Jonathan Steiner (Dr747)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647722/medium/ecc33964ace94b3d24bda90f46eb8e7d.png",
- "joined": "2021-03-01 08:34:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14641166",
- "username": "Pentron",
- "fullName": "Raphael Winkler (Pentron)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14641166/medium/fcdec0ce2fcd767a359f61677cddff59.jpg",
- "joined": "2021-02-25 03:40:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638898",
- "username": "lizhenwei12",
- "fullName": "李可以 (lizhenwei12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638898/medium/b79920acf354f5fe4fbafad96e1360d4.jpg",
- "joined": "2021-02-23 22:51:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638974",
- "username": "louiseperezserrano",
- "fullName": "Louise Pérez (louiseperezserrano)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638974/medium/96dbb1f75ee993fb0bea83c40a84c57d.jpeg",
- "joined": "2021-02-24 00:32:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639094",
- "username": "matiricardo99",
- "fullName": "Mati Ricardo (matiricardo99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14639094/medium/0be11b0699a488d1ba362ae3c5172590.jpg",
- "joined": "2021-02-24 02:50:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639464",
- "username": "liuwanli",
- "fullName": "liuwanli",
- "avatarUrl": "https://www.gravatar.com/avatar/ccb74448de6461df16090fe3c1479f98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 07:32:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639610",
- "username": "FizziPizzi",
- "fullName": "Трюк (FizziPizzi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14639610/medium/99a114fae9f918965d14b000c52596f6.jpg",
- "joined": "2021-02-24 08:41:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14639632",
- "username": "kownasiek",
- "fullName": "kownasiek",
- "avatarUrl": "https://www.gravatar.com/avatar/9999cd3ca6b8079e86b12437de2df175?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 08:51:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640122",
- "username": "m1947",
- "fullName": "m1947",
- "avatarUrl": "https://www.gravatar.com/avatar/8740da8d815349b67d0d681cb923ef0e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 13:27:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640202",
- "username": "JohnDow",
- "fullName": "JohnDow",
- "avatarUrl": "https://www.gravatar.com/avatar/a4e7cf6e451cb77f094039d92c6c775d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 13:53:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640644",
- "username": "andrglv",
- "fullName": "Andrej Glavinić (andrglv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640644/medium/89448064fc3d80375f667f200b9915c1.jpg",
- "joined": "2021-02-24 19:00:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640814",
- "username": "1936094566",
- "fullName": "1936094566",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640814/medium/cb1747813ca6bdd8c467d6f8edcec19c.png",
- "joined": "2021-02-24 22:10:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640892",
- "username": "demonstrator",
- "fullName": "demonstrator",
- "avatarUrl": "https://www.gravatar.com/avatar/855e3a72d73adbeb6702ba7f9177614a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-24 23:39:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14640966",
- "username": "oranz21",
- "fullName": "oranz21",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14640966/medium/f45e38ea4908515d8dbd5c71e51d85b0.jpeg",
- "joined": "2021-02-25 01:03:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14641434",
- "username": "bamboo420",
- "fullName": "bamboo420",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14641434/medium/32baccfa9e8b02cb7a0ed17e4d0a99e5.png",
- "joined": "2021-02-25 06:08:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643336",
- "username": "aliali85",
- "fullName": "ALI nini (aliali85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643336/medium/f6ae13593a5587031e0a03633c1d1175.jpg",
- "joined": "2021-02-26 06:32:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14641560",
- "username": "Gabrielcambh",
- "fullName": "Gabrielcambh",
- "avatarUrl": "https://www.gravatar.com/avatar/faa72681f6e1ccdd07a2eee64e78e1e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 07:10:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642366",
- "username": "Vladimir_Kharlamenko",
- "fullName": "Vladimir_Kharlamenko",
- "avatarUrl": "https://www.gravatar.com/avatar/9792ee2aebc9e5722d6597b24e6a02d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 15:21:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642418",
- "username": "nailsahin85",
- "fullName": "Nail Şahin (nailsahin85)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642418/medium/dddfec0190d3ec04d464182f0e8e0cd9.jpeg",
- "joined": "2021-02-25 15:50:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642544",
- "username": "Phoenix82",
- "fullName": "Phoenix82",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642544/medium/326ad622b0e7bf6487db9130898744ad.jpg",
- "joined": "2021-02-25 17:32:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642688",
- "username": "pham_thanh_nhut_95",
- "fullName": "Dương Duy Khánh (pham_thanh_nhut_95)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642688/medium/bf62834a16470ba4fe9075357eb51b85.jpeg",
- "joined": "2021-02-25 20:22:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642742",
- "username": "Jerrulul",
- "fullName": "Jerrulul",
- "avatarUrl": "https://www.gravatar.com/avatar/31c239a1b4f66fa0ccaad7d3925fa501?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-25 21:27:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14642902",
- "username": "kfern",
- "fullName": "Fernando Navarro (kfern)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14642902/medium/75be12c06ec6e9a77bd4ef4ed3582c3d.jpeg",
- "joined": "2021-02-26 00:10:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643044",
- "username": "anezdoank03",
- "fullName": "Muhammad Ariesta (anezdoank03)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643044/medium/e24977172eb4534e13257568b1fe6e93.jpeg",
- "joined": "2021-02-26 02:22:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643054",
- "username": "izayl",
- "fullName": "izayl",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643054/medium/d6dd01be4478ea8a2c0eb30797ab34cc.jpeg",
- "joined": "2021-05-28 23:42:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643068",
- "username": "egelizo",
- "fullName": "Eduardo Gelizo (egelizo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643068/medium/f6f25b4f0e429a11e235ade8d866b314.jpeg",
- "joined": "2021-02-26 02:54:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14643256",
- "username": "ngokhongmot01",
- "fullName": "ngô không một (ngokhongmot01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643256/medium/6830f66bd0c357daa35e0f46ddfbabf6.jpg",
- "joined": "2021-02-26 10:42:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643276",
- "username": "ali52da",
- "fullName": "ali52da",
- "avatarUrl": "https://www.gravatar.com/avatar/cb0f92e6b9accb79407c58b320cad6fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-26 05:47:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647552",
- "username": "whjiang1997",
- "fullName": "姜文浩 (whjiang1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14647552/medium/ab5b7cc4742ee5615b7e170197e5915a.jpg",
- "joined": "2021-03-01 06:17:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14647882",
- "username": "Kugeki",
- "fullName": "Kugeki",
- "avatarUrl": "https://www.gravatar.com/avatar/ac517f392a990052115949ce480a7e58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 10:05:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656562",
- "username": "bryanalejandromedina",
- "fullName": "Bryan Medina (bryanalejandromedina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656562/medium/0750fe93463f7682ef9289e7d8fa3104.jpeg",
- "joined": "2021-03-06 20:49:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654262",
- "username": "haidar3312",
- "fullName": "حيدر عمر (haidar3312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654262/medium/0960808170fde67e7fcd1f7e8fe3bfba.jpg",
- "joined": "2021-03-05 05:29:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653388",
- "username": "Wesley_Lauton",
- "fullName": "Wesley_Lauton",
- "avatarUrl": "https://www.gravatar.com/avatar/1481c3a217e1986910e3e74a3043542f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 14:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653426",
- "username": "maxxlman",
- "fullName": "maxxlman",
- "avatarUrl": "https://www.gravatar.com/avatar/a12f2beca90e3e5fde302c95fc6e0d24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 14:51:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653430",
- "username": "KIRAZLI",
- "fullName": "KIRAZLI",
- "avatarUrl": "https://www.gravatar.com/avatar/59fb9541221fb3a174972d638c9ea8f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 14:53:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653488",
- "username": "mu_21",
- "fullName": "مويد الذهب (mu_21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653488/medium/93a582f1f191453bb72aa3381f9b86dd.jpg",
- "joined": "2021-03-04 15:57:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653494",
- "username": "martn5533",
- "fullName": "Mohamed Alsharef (martn5533)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653494/medium/a4b91907e4741e845327324ca63a87cf.jpeg",
- "joined": "2021-03-04 16:07:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653510",
- "username": "mo01024054097",
- "fullName": "Mohamed Apd Elmoneim (mo01024054097)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653510/medium/87305353821b7321765b03ada442ef91.jpeg",
- "joined": "2021-03-04 16:23:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14653608",
- "username": "ahmed_mimo110",
- "fullName": "Ahmed M. Mansour (ahmed_mimo110)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653608/medium/d7a5431d7213ffeb6f120c7558e757f9.jpeg",
- "joined": "2021-03-04 17:58:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653674",
- "username": "Ahmedtarek206",
- "fullName": "Ahmedtarek206",
- "avatarUrl": "https://www.gravatar.com/avatar/65b61063401eb8d6624a8f24cf47602f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 19:09:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653772",
- "username": "ahmedebraright",
- "fullName": "Ahmed Ashour (ahmedebraright)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653772/medium/f5bc7c93cf9d8a28a22d0a02e78483d5.jpg",
- "joined": "2021-03-04 21:24:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653932",
- "username": "lucasguglieri",
- "fullName": "lucasguglieri",
- "avatarUrl": "https://www.gravatar.com/avatar/cbe3e9c7db0bd31fd72fc55f65a1c056?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 01:34:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653996",
- "username": "anhbaysgalan1",
- "fullName": "Anhbaysgalan D (anhbaysgalan1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14653996/medium/754e257601bf73ab683d21c3c7938b04.jpeg",
- "joined": "2021-03-05 02:21:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654246",
- "username": "BellosMaki",
- "fullName": "BellosMaki",
- "avatarUrl": "https://www.gravatar.com/avatar/4da5ed7e28068d8a728b035b8e303425?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 05:17:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654546",
- "username": "fadisaleh99",
- "fullName": "Fadi Saleh (fadisaleh99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654546/medium/fac4ee1c5eb91c134cb9210ed113ef00.jpeg",
- "joined": "2021-03-05 09:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653070",
- "username": "laurelx1",
- "fullName": "laurelx1",
- "avatarUrl": "https://www.gravatar.com/avatar/7e21d6619a652b17915967c99b41adc5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 10:44:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654666",
- "username": "zennomi",
- "fullName": "Tuấn Anh Nguyễn Đăng (zennomi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654666/medium/76a0948cea9c66434c3c6d8650a5e040.jpg",
- "joined": "2021-03-05 11:08:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654818",
- "username": "kiiyuku",
- "fullName": "kiiyuku",
- "avatarUrl": "https://www.gravatar.com/avatar/d7725d20a8a8981d5c524a79642dc260?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 13:03:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14654988",
- "username": "phamtrongtan27091992",
- "fullName": "Phamtrongtan Pham (phamtrongtan27091992)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14654988/medium/57ed17587fa8f8f5d0b383cda16bb695.jpeg",
- "joined": "2021-05-13 02:49:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655082",
- "username": "Yazan110adas",
- "fullName": "Yazan110adas",
- "avatarUrl": "https://www.gravatar.com/avatar/181369d841c43c188072085712d5bcf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 17:12:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655088",
- "username": "nenadj",
- "fullName": "Nevena Djaja (nenadj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655088/medium/d9d6a8ade727c2282bda837044540d67.jpg",
- "joined": "2021-03-09 13:21:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655214",
- "username": "LeMarx",
- "fullName": "Marc-Antoine Blais (LeMarx)",
- "avatarUrl": "https://www.gravatar.com/avatar/41e83ec7a1d43762ea334db1e09e7ccf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-05 19:57:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655250",
- "username": "yunkeru18",
- "fullName": "小坂 祐介 (yunkeru18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655250/medium/580cad4a38be1ce4c81c6733d65bfa2f.jpeg",
- "joined": "2021-03-05 20:29:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655726",
- "username": "tabark912aziz0",
- "fullName": "tabark aziz (tabark912aziz0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655726/medium/b78537999bae40535d439f644a7cdbeb.jpeg",
- "joined": "2021-03-06 06:40:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14655736",
- "username": "wangkaixuan1011",
- "fullName": "王凯旋 (wangkaixuan1011)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14655736/medium/59d47a2c5fea893101fe8c9ddd793ed6.jpg",
- "joined": "2021-03-06 06:52:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656248",
- "username": "asparagaskalem",
- "fullName": "asparagaskalem",
- "avatarUrl": "https://www.gravatar.com/avatar/4ec385169366c0d43af02790b8db83b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 14:19:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656306",
- "username": "ceibo",
- "fullName": "ceibo",
- "avatarUrl": "https://www.gravatar.com/avatar/20bcd6b01b0d1e432b7443b991d19794?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-06 15:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14656338",
- "username": "transgresor_metal",
- "fullName": "Jonatan Luis Villa Röel (transgresor_metal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656338/medium/994846d1f939b5a9efdafa335adcc091.jpeg",
- "joined": "2021-03-06 16:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14653310",
- "username": "Fjcerco",
- "fullName": "Fjcerco",
- "avatarUrl": "https://www.gravatar.com/avatar/b2f85155999765a60da620560da7fab9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 13:19:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652930",
- "username": "YurKing",
- "fullName": "Yuri Yakushev (YurKing)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652930/medium/050c5caf1bc56d8d0e9ea2e2150cbdb8.jpeg",
- "joined": "2021-03-04 08:56:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648108",
- "username": "klimaty.minecraft",
- "fullName": "Minecraft Przygoda (klimaty.minecraft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648108/medium/2a670a0c42bbaaf0404eecbed164d6ed.jpeg",
- "joined": "2021-03-01 12:23:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650286",
- "username": "hermann.mat.8",
- "fullName": "Hermann Matondo (hermann.mat.8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650286/medium/c607b09284a92d3f7b9a548c0a59909c.jpg",
- "joined": "2021-03-02 16:23:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648126",
- "username": "vittoria.f",
- "fullName": "vittoria.f",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648126/medium/7a5e23a63ce4d36422d0adb108c16ea0.png",
- "joined": "2021-03-03 11:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648284",
- "username": "fgawlas2115",
- "fullName": "Muminek Zapasowy (fgawlas2115)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648284/medium/9d0d57ee2c4c97fce816dc11b4b0bb52.jpeg",
- "joined": "2021-03-01 15:00:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648500",
- "username": "eduardogomes",
- "fullName": "Eduardo Gomes (eduardogomes)",
- "avatarUrl": "https://www.gravatar.com/avatar/98a2e53c0794848fe2b91451ff46c150?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-10 10:56:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648550",
- "username": "JulianRDN",
- "fullName": "JulianRDN",
- "avatarUrl": "https://www.gravatar.com/avatar/83eebb1f8f6cda54fa620e29342e9cb5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-01 19:50:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648700",
- "username": "yeleizh",
- "fullName": "yeleizh",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14648700/medium/d34f322a1ee5e89c38ba67611ac1c48e.jpg",
- "joined": "2021-03-01 23:23:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14648798",
- "username": "jekyllNiutont",
- "fullName": "jekyllNiutont",
- "avatarUrl": "https://www.gravatar.com/avatar/871d8fba84cab7661ee061b7f635e41c?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 01:30:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14649288",
- "username": "ashraf1",
- "fullName": "Ashraf hasan (ashraf1)",
- "avatarUrl": "https://www.gravatar.com/avatar/41fbff92c62f3662bbd7b975ce9aeca8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 07:16:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14649550",
- "username": "forty.cat1997",
- "fullName": "Fortunato Catania (forty.cat1997)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14649550/medium/363188cca21ef93a6e9e7578a8ef65f9.jpg",
- "joined": "2021-03-02 08:39:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650032",
- "username": "ahmedshazed6",
- "fullName": "Shazed Ahmed (ahmedshazed6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650032/medium/d64c0bc64a6497f26072c290dc2f1a21.jpg",
- "joined": "2021-03-02 13:20:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650084",
- "username": "daniela23-",
- "fullName": "daniela23-",
- "avatarUrl": "https://www.gravatar.com/avatar/bb7c733c041998ea6acb5517e2b192af?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 13:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650142",
- "username": "zurasy0",
- "fullName": "zurasy0",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650142/medium/1c4cf49eeb7053ef88192de4b222971d.png",
- "joined": "2021-03-02 14:53:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650202",
- "username": "tomiy007",
- "fullName": "Ogün Şenyiğit (tomiy007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650202/medium/b8780422027597662112864f8c966216.jpeg",
- "joined": "2021-03-02 15:25:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650522",
- "username": "geoffleng96",
- "fullName": "Geoff Leng (geoffleng96)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650522/medium/45a488abcfd77f524a993ac6dde12fd9.jpeg",
- "joined": "2021-08-20 10:59:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652714",
- "username": "ai59",
- "fullName": "ai59",
- "avatarUrl": "https://www.gravatar.com/avatar/84e11d03a2bd4a97d67ba26a96bafd37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 06:04:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650640",
- "username": "ramsemune",
- "fullName": "ramunas (ramsemune)",
- "avatarUrl": "https://www.gravatar.com/avatar/c95627f67ca6d40d1edb0bfa67b40ee6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-02 22:39:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650788",
- "username": "dealwith",
- "fullName": "hand some (dealwith)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14650788/medium/6a56dbc2e5fbd0b589bcf21209042347.jpeg",
- "joined": "2021-03-03 01:50:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14650868",
- "username": "FranLogar",
- "fullName": "FranLogar",
- "avatarUrl": "https://www.gravatar.com/avatar/da7372f1e2958ca78ebe38dc7173451a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 02:28:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651040",
- "username": "ifjiaru",
- "fullName": "ifjiaru",
- "avatarUrl": "https://www.gravatar.com/avatar/0a7cbdb9eef1e3014bf5abe6f5d79f0b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 04:43:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651490",
- "username": "Kremismaks",
- "fullName": "Kremismaks",
- "avatarUrl": "https://www.gravatar.com/avatar/f08e23086f35b3f6955a64f1f67f69e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 09:46:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651558",
- "username": "ETHERIUMGUY",
- "fullName": "ETHERIUMGUY",
- "avatarUrl": "https://www.gravatar.com/avatar/de9b5c3b2013a50fe81fb9c53a7c5af6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-03 10:36:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14651796",
- "username": "iveseenawayout",
- "fullName": "Donatella Delpiano (iveseenawayout)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14651796/medium/8ad9e4453e2f50fb5c230cc227f4da1a.jpeg",
- "joined": "2021-03-03 13:22:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652060",
- "username": "JazminVidal",
- "fullName": "jaz.min (JazminVidal)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652060/medium/a4f3c9974a51710ea11e87a24ac2df27.png",
- "joined": "2021-03-03 17:31:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652064",
- "username": "rolandsheroziya",
- "fullName": "Roland Sheroziya (rolandsheroziya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652064/medium/942d6f110f3754225fc44434ac2d7c73.png",
- "joined": "2021-03-03 17:35:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652314",
- "username": "SurenM",
- "fullName": "SurenM",
- "avatarUrl": "https://www.gravatar.com/avatar/3bc2e40566d207043d0748528213cc2d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 00:18:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652358",
- "username": "Iberriak",
- "fullName": "4 Trastos Agencia Creativa (Iberriak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652358/medium/b670537abb6dfccf1ff57ac170a7d1ee.jpeg",
- "joined": "2021-03-04 01:39:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652378",
- "username": "ST19990909",
- "fullName": "ST19990909",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652378/medium/6898cf09dad007fbb48cae095467baf1.png",
- "joined": "2021-03-04 02:00:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14652428",
- "username": "cardullo",
- "fullName": "cardullo",
- "avatarUrl": "https://www.gravatar.com/avatar/f10f11f9de5a35079225c72bb1941a9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 02:47:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670202",
- "username": "FrancineC",
- "fullName": "FrancineC",
- "avatarUrl": "https://www.gravatar.com/avatar/5c975727e32676668019ec530531753d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 10:18:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670454",
- "username": "20180505",
- "fullName": "20180505",
- "avatarUrl": "https://www.gravatar.com/avatar/7b2791e417565c2d378aae6dc810783e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 13:26:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638656",
- "username": "naser.aljaari78",
- "fullName": "Naser Aljaari (naser.aljaari78)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14638656/medium/711d73ae43c9400d4bdd0574f6b0ce6c.jpg",
- "joined": "2021-05-17 13:34:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690686",
- "username": "AYJarvis",
- "fullName": "Jarvis (AYJarvis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690686/medium/3fde7d9e8fadd4ee7146bfa61bf0dd5c.jpg",
- "joined": "2021-03-30 22:09:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689490",
- "username": "LQS_ESEM_proofreader",
- "fullName": "LQS_ESEM_proofreader",
- "avatarUrl": "https://www.gravatar.com/avatar/dc5e8f633364be63c5708828228875d5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 12:02:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14689660",
- "username": "SalvadorC",
- "fullName": "SalvadorC",
- "avatarUrl": "https://www.gravatar.com/avatar/8e96e3eccbbc48619793286ed5f08c2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 05:58:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689716",
- "username": "Super-Cereal",
- "fullName": "Super-Cereal",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689716/medium/16879ee365ed3e71eddbb9889908ca1c.jpeg",
- "joined": "2021-03-30 06:32:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689806",
- "username": "VojtaKrecek",
- "fullName": "VojtaKrecek",
- "avatarUrl": "https://www.gravatar.com/avatar/015da5e3fc77d59d3817a8709ea1321a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 07:45:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690008",
- "username": "Vikatoda",
- "fullName": "Vikatoda",
- "avatarUrl": "https://www.gravatar.com/avatar/6ffdc1f268dddeb633800bff31151707?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 09:54:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690126",
- "username": "ShervinR",
- "fullName": "ShervinR",
- "avatarUrl": "https://www.gravatar.com/avatar/4a923c900d930754d7d0c60893f6e06a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 11:33:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690192",
- "username": "marktest",
- "fullName": "marktest",
- "avatarUrl": "https://www.gravatar.com/avatar/9ffdace96acb8997dfe5611dd2d1a226?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 07:12:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690200",
- "username": "jesam10",
- "fullName": "Jesus Alejandro Moreno (jesam10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690200/medium/53da32f5d75e90125534fe2710884032.jpeg",
- "joined": "2021-03-30 12:39:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690416",
- "username": "Ramin7777",
- "fullName": "Ramin7777",
- "avatarUrl": "https://www.gravatar.com/avatar/cc46d03758411b9cc170b29af4479c5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 15:40:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690454",
- "username": "sekoman01",
- "fullName": "Uğur Daloğlu (sekoman01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690454/medium/595a121d4a7427f7a21b75b32017c247.jpg",
- "joined": "2021-03-30 16:22:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690552",
- "username": "anthonymartinez702",
- "fullName": "Anthony M. (anthonymartinez702)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690552/medium/bbecfc2cef2d9f264faa93ee61a2cbe1.jpeg",
- "joined": "2021-03-30 18:27:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690682",
- "username": "Lolita4ka",
- "fullName": "Lolita4ka",
- "avatarUrl": "https://www.gravatar.com/avatar/48dfe119175130ab301ad3fc07d8d048?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 22:02:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690748",
- "username": "penglaishan.cn",
- "fullName": "penglaishan.cn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690748/medium/dd3be098cca6b66915e02147fd6407e7.jpg",
- "joined": "2021-03-30 23:47:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689178",
- "username": "alicezhang2021",
- "fullName": "alicezhang2021",
- "avatarUrl": "https://www.gravatar.com/avatar/3bf4a368dcf7ad0f2a39399951d13f8e?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 02:03:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690762",
- "username": "arscrypto",
- "fullName": "arscrypto",
- "avatarUrl": "https://www.gravatar.com/avatar/e90b9176543cb7c35510b9acdab6747d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 13:10:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690796",
- "username": "Elksomi",
- "fullName": "Elksomi",
- "avatarUrl": "https://www.gravatar.com/avatar/005c292fb0939d213e58c9cb3550516b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 00:42:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690860",
- "username": "wihdatulsakina",
- "fullName": "pengagum langit (wihdatulsakina)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690860/medium/c57268f01ef83ec1685696c8e1a463eb.jpeg",
- "joined": "2021-03-31 01:53:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14690998",
- "username": "magus0219",
- "fullName": "magus0219",
- "avatarUrl": "https://www.gravatar.com/avatar/f66fd2e894a3e42037fad926d0830eb1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 03:58:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14691832",
- "username": "imrulo.eth",
- "fullName": "Ruslan Ferrales (imrulo.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691832/medium/edac3ef58631bde43e40ac815ef18dc5.png",
- "joined": "2021-03-31 14:20:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14691960",
- "username": "evilever",
- "fullName": "Ever Lavén (evilever)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691960/medium/8f7a197d1400926e916428a4179b1864.jpg",
- "joined": "2021-03-31 15:44:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14691980",
- "username": "obandojp91",
- "fullName": "Jhecson Obando (obandojp91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14691980/medium/de61e68c8a344a69de721320f16a1346.jpg",
- "joined": "2021-03-31 16:03:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692054",
- "username": "pascua",
- "fullName": "pascua",
- "avatarUrl": "https://www.gravatar.com/avatar/e206c8fd0dd6bc00372d63523f1a9323?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 17:09:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692142",
- "username": "m19",
- "fullName": "m19",
- "avatarUrl": "https://www.gravatar.com/avatar/2d53b57bf4f7f5b776c3869b6dbdcdf8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 18:11:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692200",
- "username": "TakashiOka",
- "fullName": "TakashiOka",
- "avatarUrl": "https://www.gravatar.com/avatar/b9860c3cc5cb27dcf18d9a6489e197c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 19:23:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692222",
- "username": "navat",
- "fullName": "navat",
- "avatarUrl": "https://www.gravatar.com/avatar/30695204273d763ce009b14687736f11?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 19:38:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692360",
- "username": "chenzhenhua",
- "fullName": "chenzhenhua",
- "avatarUrl": "https://www.gravatar.com/avatar/1fba50ac7ab9e24ee7ed954a2f895277?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-31 22:53:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689480",
- "username": "sykoramarek74",
- "fullName": "Marek Sýkora (sykoramarek74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689480/medium/ebf18dbce0a18270c89d7d7794227844.jpeg",
- "joined": "2021-03-30 03:30:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689068",
- "username": "thamer.ald",
- "fullName": "Thamer al-d (thamer.ald)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689068/medium/c15bc4a2d6a8da495882fb080dfea8e3.jpeg",
- "joined": "2021-03-29 18:21:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692560",
- "username": "ghasem1997",
- "fullName": "ghasem1997",
- "avatarUrl": "https://www.gravatar.com/avatar/d63109791f3d5d752cd6110bcf956380?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 03:04:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687376",
- "username": "KlmnZ",
- "fullName": "KlmnZ",
- "avatarUrl": "https://www.gravatar.com/avatar/7e91a8df155651d6b2439ba7bbdf7a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 14:34:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685918",
- "username": "ekkoin",
- "fullName": "ekkoin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685918/medium/8e7bf955bc2789383269e03684bd386a.png",
- "joined": "2021-03-27 12:17:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685976",
- "username": "nr1db",
- "fullName": "nr1db",
- "avatarUrl": "https://www.gravatar.com/avatar/ffc9d9a5c4dcbfd7095821e4268cf89b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 13:14:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686158",
- "username": "MrRFN",
- "fullName": "MrRFN",
- "avatarUrl": "https://www.gravatar.com/avatar/227488675c690f210303a2fd9206a610?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 16:10:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686246",
- "username": "ahmanrz",
- "fullName": "Ahmad Manzoor (ahmanrz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686246/medium/6e7aaa8d2ec45055ba82a3ce3dc6af34.jpeg",
- "joined": "2021-03-27 17:59:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686458",
- "username": "Davideth",
- "fullName": "Davideth",
- "avatarUrl": "https://www.gravatar.com/avatar/ce13245afacc0d61d0059d89fbb2ddbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 23:02:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686632",
- "username": "Omon1996",
- "fullName": "Omon1996",
- "avatarUrl": "https://www.gravatar.com/avatar/f7a90b1fe7a207bf4c1c71fc0fd7ee6f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 02:46:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686644",
- "username": "Eomhyunjun",
- "fullName": "엄현준 (Eomhyunjun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686644/medium/75bffea324d45aa354b1f61dc42124ea.jpeg",
- "joined": "2021-03-28 03:10:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686678",
- "username": "ametel01",
- "fullName": "Alessandro Metelli (ametel01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686678/medium/42da64bc8743fcf14d7efc7aaebbd99f.jpeg",
- "joined": "2021-03-28 03:40:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686712",
- "username": "helderlopes",
- "fullName": "helderlopes",
- "avatarUrl": "https://www.gravatar.com/avatar/a79bc7d9ade6a43bd105627313ab001b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 04:15:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686748",
- "username": "Zerr0z",
- "fullName": "Zerr0z",
- "avatarUrl": "https://www.gravatar.com/avatar/29d7001f6ce7c3f647f7f5e552b5a435?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 04:39:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14686790",
- "username": "Horus267",
- "fullName": "Horus267",
- "avatarUrl": "https://www.gravatar.com/avatar/0bd0c0622bb6a73c0650ed0f8196df99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-28 05:38:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687158",
- "username": "st.elmo",
- "fullName": "Chopper Kim (st.elmo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687158/medium/34ab22fe56d737571b05b2f91d304062.jpeg",
- "joined": "2021-03-28 11:28:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687474",
- "username": "lakatosarpi8",
- "fullName": "Árpi Lakatos (lakatosarpi8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687474/medium/bfe1c1dca5c2c2f815a8c891d1ea27e3.jpeg",
- "joined": "2021-03-28 15:36:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689000",
- "username": "mosaab.abumgarab",
- "fullName": "Mosaab Abu Mgarab (mosaab.abumgarab)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14689000/medium/e98e57aa51c058cb9e04d1d3bc9251df.jpeg",
- "joined": "2021-03-29 17:19:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687522",
- "username": "anhelinamykytiuk",
- "fullName": "anhelinamykytiuk",
- "avatarUrl": "https://www.gravatar.com/avatar/33fa33b317efb0122aef411711c5c0d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 02:33:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687594",
- "username": "cruzgutierrezramiro46",
- "fullName": "Ramiro Cruz Gutiérrez (cruzgutierrezramiro46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687594/medium/d18d25f17f29d4266866f7bc9633e172.jpeg",
- "joined": "2021-03-28 18:52:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687884",
- "username": "moypc7",
- "fullName": "moypc7",
- "avatarUrl": "https://www.gravatar.com/avatar/9cf295b7ace647d91a54359159440d14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 01:25:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688126",
- "username": "HerbertDu",
- "fullName": "HerbertDu",
- "avatarUrl": "https://www.gravatar.com/avatar/cb52b90ca2e9f8cb5cc2b5d6f577f3bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 05:32:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688390",
- "username": "cloakedmania",
- "fullName": "C3M (cloakedmania)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688390/medium/a2d8746c16953b008d19ee3273593bce.jpeg",
- "joined": "2021-03-29 08:36:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688430",
- "username": "dranna",
- "fullName": "dranna",
- "avatarUrl": "https://www.gravatar.com/avatar/caa146f687eff95577813b819a2b4b3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 09:02:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688548",
- "username": "bhmot",
- "fullName": "bhmot",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688548/medium/b05f4b0863b36f2784532e50edab498a.png",
- "joined": "2021-03-29 10:33:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688754",
- "username": "gheize",
- "fullName": "gheize",
- "avatarUrl": "https://www.gravatar.com/avatar/1ab9f51464ddc2ad8b8b94fcc9fddd76?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 13:17:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688768",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/817737bd40989d640a509e628a1d4378?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-29 13:32:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688876",
- "username": "dimcaqw",
- "fullName": "Дмитрий Нагорный (dimcaqw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688876/medium/65cfc0b8cf4f2d7978cc3ba0321a7430.jpg",
- "joined": "2021-03-29 15:13:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688912",
- "username": "03172358530",
- "fullName": "Asrar Ahmed (03172358530)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688912/medium/725c7fac3e573d6ffe7e253c9e50ef90.jpeg",
- "joined": "2021-03-29 15:40:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14688996",
- "username": "BugsVskBunny",
- "fullName": "Владислав Жекунов (BugsVskBunny)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14688996/medium/2879abb585b18c986c9cb323f7b46adb.jpg",
- "joined": "2021-03-29 17:15:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692406",
- "username": "evanxuw",
- "fullName": "miumiusf (evanxuw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14692406/medium/cd75843e806da42ffede4f72813bcd9e.JPG",
- "joined": "2021-04-01 00:02:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692718",
- "username": "Z3rtr0x",
- "fullName": "Z3rtr0x",
- "avatarUrl": "https://www.gravatar.com/avatar/655a8dcb3bc251405bad4c8b8a5b299c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 04:57:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685708",
- "username": "Afred_the_great",
- "fullName": "Afred_the_great",
- "avatarUrl": "https://www.gravatar.com/avatar/d31b48d2e86c241637402d21d4d7bb31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 08:26:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698674",
- "username": "alperbayrm",
- "fullName": "alper bayram (alperbayrm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698674/medium/caef6e7ebcde2cfccd4e804e5c920150.jpeg",
- "joined": "2021-04-05 14:07:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696806",
- "username": "kumbulali",
- "fullName": "Ali Kumbul (kumbulali)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696806/medium/39112799e3eaa803fa0605900283a166.jpeg",
- "joined": "2021-04-04 06:15:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "8411",
- "username": "nijel",
- "fullName": "Michal Čihař (nijel)",
- "avatarUrl": "https://www.gravatar.com/avatar/abbcd6344e160597fb2694f25c46149f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-12-08 09:20:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697378",
- "username": "raxveil",
- "fullName": "raxveil",
- "avatarUrl": "https://www.gravatar.com/avatar/bb6d2c3e9e7661448365f2cf3d739e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-04 16:25:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697402",
- "username": "faurt",
- "fullName": "faurt",
- "avatarUrl": "https://www.gravatar.com/avatar/43925abf1225de2379433eb97cc5de27?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-04 16:50:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697500",
- "username": "rbmilch",
- "fullName": "Daniel B. (rbmilch)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697500/medium/e8102876603e29ba276175e300c93704.jpeg",
- "joined": "2021-04-04 18:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697544",
- "username": "max.albarenque",
- "fullName": "Maximiliano Albarenque (max.albarenque)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697544/medium/056b5b11875996b5a893af76d3ef6b9c.jpeg",
- "joined": "2021-04-04 19:45:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697756",
- "username": "xd1565211796",
- "fullName": "言夕 (xd1565211796)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14697756/medium/b17ef9f5d5ffc630dd67aae19dab6153.jpeg",
- "joined": "2021-04-05 00:23:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14697934",
- "username": "tlqcfr",
- "fullName": "tlqcfr",
- "avatarUrl": "https://www.gravatar.com/avatar/e51c31a7804d94b1bd4aef101830b639?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 04:08:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698060",
- "username": "AbrahamYusuf",
- "fullName": "Abraham Yusuf (AbrahamYusuf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698060/medium/1bf8fb6a51e2a7684bb25b8a868d7204.png",
- "joined": "2021-04-05 05:24:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698482",
- "username": "lucaiach",
- "fullName": "lucaiach",
- "avatarUrl": "https://www.gravatar.com/avatar/c0bed651d9243db22c8457703d915332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 12:13:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698510",
- "username": "JIJUQI",
- "fullName": "JIJUQI",
- "avatarUrl": "https://www.gravatar.com/avatar/4305d26702c862e61679aa29e229c291?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 12:15:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698516",
- "username": "kbbtg_Alex",
- "fullName": "kbbtg Alex (kbbtg_Alex)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698516/medium/8aeb5abf9171177c91fc15c42d4e353d.jpeg",
- "joined": "2021-04-05 12:16:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698688",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/b30370be580bd1fabe043525f3b43e28?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 14:08:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696528",
- "username": "Deibiei",
- "fullName": "Deibiei",
- "avatarUrl": "https://www.gravatar.com/avatar/75726f5d2b8e1b96d38e15f811c46f35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-04 00:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698890",
- "username": "YuriNasci",
- "fullName": "Yuri A. Nascimento (YuriNasci)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698890/medium/513da602a6d73f3135da857f9193ecf1.jpeg",
- "joined": "2021-04-05 16:25:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698898",
- "username": "Dooyoux",
- "fullName": "Dooyoux",
- "avatarUrl": "https://www.gravatar.com/avatar/be0c1f011a5fac7f97bb7836f5ef5834?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-05 16:29:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14698900",
- "username": "najimediainf",
- "fullName": "arduino najimedia (najimediainf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698900/medium/48a20733cf1223fc7ae5dbe80e0475c3.jpeg",
- "joined": "2021-04-05 16:32:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699102",
- "username": "matiapa",
- "fullName": "Matías Apablaza (matiapa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699102/medium/31f4ce23d48d93b6e6d1c1d3f3a8cc18.jpeg",
- "joined": "2021-04-05 19:50:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699214",
- "username": "pearl.kapoor.675",
- "fullName": "Pearl Kapoor (pearl.kapoor.675)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699214/medium/12a7352656324f8a8d4375991d29f061.jpeg",
- "joined": "2021-06-04 23:54:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699434",
- "username": "odishosharbel",
- "fullName": "Sharbel Odisho (odishosharbel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699434/medium/131d2908929cf8a934584850536757f9.jpeg",
- "joined": "2021-04-06 01:52:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699456",
- "username": "Dailybetter",
- "fullName": "Daily better by one percent (Dailybetter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699456/medium/779d7d67ed3ad8c30f9ead5c16c91275.jpeg",
- "joined": "2021-04-06 02:08:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699672",
- "username": "chen_jing",
- "fullName": "chen_jing",
- "avatarUrl": "https://www.gravatar.com/avatar/70f5b7edcd032a06a62b88dafcef340d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-06 04:52:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14699938",
- "username": "Depolice",
- "fullName": "Edvardas Dervis (Depolice)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14699938/medium/279d2e40a8a6d6481ec1110aa6bfe95b.jpeg",
- "joined": "2021-04-06 08:21:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14700162",
- "username": "mitop",
- "fullName": "mitop",
- "avatarUrl": "https://www.gravatar.com/avatar/6cf8edd767c76e0bed156f75f57a133c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-06 12:38:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14700534",
- "username": "aallaladil",
- "fullName": "adil aallal (aallaladil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14700534/medium/d018c1dc2d3f4d8b026bfd24c106f481.jpg",
- "joined": "2021-04-06 14:35:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14700950",
- "username": "Shusheng",
- "fullName": "Shusheng",
- "avatarUrl": "https://www.gravatar.com/avatar/885f2f3a4431b68bcf41b764ac373209?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-06 22:36:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696674",
- "username": "msanrie",
- "fullName": "Montserrat Sanchez Rierola (msanrie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696674/medium/929ad678f44f069d6fea52844de795f7.jpg",
- "joined": "2021-04-04 03:56:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696454",
- "username": "sandroserra672",
- "fullName": "SANDRO GAMES (sandroserra672)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14696454/medium/f131157d18a06069a2e0ee970f353fc9.jpeg",
- "joined": "2021-04-03 22:16:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14692762",
- "username": "kravtsovnd08",
- "fullName": "Lanshelot Ку (kravtsovnd08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14692762/medium/4534eac3b38ad07800abf9acc883ed10.jpeg",
- "joined": "2021-04-01 05:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694234",
- "username": "hamadorakzai2",
- "fullName": "Hamad Orakzai (hamadorakzai2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694234/medium/047c3a44f244b0141ee36814745a91dc.jpeg",
- "joined": "2021-04-02 04:32:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693050",
- "username": "Luuck4s",
- "fullName": "Lucas Lima (Luuck4s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693050/medium/4c771a227b48f3be61dedc652acbefe1.jpeg",
- "joined": "2021-04-01 09:00:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693118",
- "username": "kingwar0296",
- "fullName": "Truơng Xuân Bin (kingwar0296)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693118/medium/66a81986470154b0dd7d5e74b6d34c7a.jpeg",
- "joined": "2021-04-01 09:21:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693136",
- "username": "velat62",
- "fullName": "VeLaT Kırmızı (velat62)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693136/medium/e3142b46dc57480848cbd863d4f66396.jpeg",
- "joined": "2021-04-01 09:34:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693154",
- "username": "Vojtakrecek5",
- "fullName": "Vojtakrecek5",
- "avatarUrl": "https://www.gravatar.com/avatar/2b47e8e37efc146a24b4a904182199dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 09:45:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693434",
- "username": "Mauguano",
- "fullName": "Mauguano",
- "avatarUrl": "https://www.gravatar.com/avatar/7e67f1e07c7db5ba5bb290e405b7b76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 13:33:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693526",
- "username": "baguspramono456",
- "fullName": "Bagoes Pramono Jati (baguspramono456)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693526/medium/5b6bc25f1c75e1854329f91efab10a4f.jpeg",
- "joined": "2021-04-01 14:55:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693718",
- "username": "cseac",
- "fullName": "Noufel Mostufaoui (cseac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693718/medium/7991d1cddf045a88d625e74c5723c2d8.jpg",
- "joined": "2021-04-01 17:36:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693814",
- "username": "RobertoReale",
- "fullName": "RobertoReale",
- "avatarUrl": "https://www.gravatar.com/avatar/fc82b753d20d17d202c031b54f2032c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 19:54:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693898",
- "username": "hiPOLIto",
- "fullName": "hiPOLIto",
- "avatarUrl": "https://www.gravatar.com/avatar/3154dcdde67077c9af439a4ab55e83e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 21:31:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693928",
- "username": "vasilevsky",
- "fullName": "vasilevsky",
- "avatarUrl": "https://www.gravatar.com/avatar/702c82c246d335fbc786c0f136677ff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-01 22:31:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14693968",
- "username": "hazem121986",
- "fullName": "حازم المغازى (hazem121986)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14693968/medium/c9985512ac32b62c0ee97bd52a387b55.jpg",
- "joined": "2021-04-01 23:15:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694080",
- "username": "120123vadik",
- "fullName": "Вадим Карайван (120123vadik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694080/medium/2eb83aa25be4969cc18afea0e1a8c855.jpg",
- "joined": "2021-04-02 01:54:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694652",
- "username": "hungnoisoibm",
- "fullName": "hungnoisoibm",
- "avatarUrl": "https://www.gravatar.com/avatar/ad34e9211a7df137c4c3335802cbf373?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-02 10:30:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696354",
- "username": "Tarekmou688",
- "fullName": "Tarekmou688",
- "avatarUrl": "https://www.gravatar.com/avatar/5acdc961959365efed3914d8936e73e5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 19:34:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694742",
- "username": "gabrielmartin686",
- "fullName": "Gabriel Martin (gabrielmartin686)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694742/medium/bbb0f5ba50472c0253dc368c3e39a37b.jpeg",
- "joined": "2021-04-02 11:50:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694868",
- "username": "asltr",
- "fullName": "asltr",
- "avatarUrl": "https://www.gravatar.com/avatar/a7fe4e457a16a6509e5c0a6f063f1e3e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-02 13:53:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694870",
- "username": "osman.celikkol09",
- "fullName": "Osman Çelikkol (osman.celikkol09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694870/medium/e69e8de92b877174018cbbdfc588bd83.png",
- "joined": "2021-04-02 13:57:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14694992",
- "username": "Matthiti",
- "fullName": "Matthijs Roelink (Matthiti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14694992/medium/ebb3402bec51d93fc48118628f8befc7.jpeg",
- "joined": "2021-04-02 16:15:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695278",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/7d7eb99d78eddfb00041d1d0433d6e9f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 19:22:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695500",
- "username": "wuhjie",
- "fullName": "wuhjie",
- "avatarUrl": "https://www.gravatar.com/avatar/a714b8339e9f214d7f577c93230fd5ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 04:37:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695574",
- "username": "Fady_alchaar",
- "fullName": "Fady_alchaar",
- "avatarUrl": "https://www.gravatar.com/avatar/7bb6c90b5772615da68bc1ec046527de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 06:14:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695632",
- "username": "floch.1609",
- "fullName": "Florian Christ (floch.1609)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695632/medium/2e0d988d1b405f4d8d18dde5e68fec00.jpeg",
- "joined": "2021-04-03 07:09:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695710",
- "username": "Macar",
- "fullName": "Macar",
- "avatarUrl": "https://www.gravatar.com/avatar/d40b460c3627565f67fe0aa35c45af08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 08:09:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695768",
- "username": "Thebetterbutter",
- "fullName": "Thebetterbutter",
- "avatarUrl": "https://www.gravatar.com/avatar/196cf03d279a94aca450b76e908657d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 09:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695818",
- "username": "ngcarlos038",
- "fullName": "Carlos Vargas (ngcarlos038)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695818/medium/5640f56c3c28e95a63f763e3b5eacbf3.png",
- "joined": "2021-04-03 10:15:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695868",
- "username": "xiong-pro",
- "fullName": "熊 (xiong-pro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14695868/medium/74486c49b99ce4bc42a685e4d81d14b3.jpeg",
- "joined": "2021-04-12 07:01:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14696346",
- "username": "AndrewLillie64",
- "fullName": "AndrewLillie64",
- "avatarUrl": "https://www.gravatar.com/avatar/6a0fb4762b881cf0387a8169650751e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 19:15:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685806",
- "username": "Maluspinzi",
- "fullName": "Maluspinzi",
- "avatarUrl": "https://www.gravatar.com/avatar/bc5ac3249a42f4ccb29cecd6c12b165c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 10:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685692",
- "username": "foundlios",
- "fullName": "founddlioss (foundlios)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685692/medium/6f6cf8eb96c7593dbdea37d052d18a60.jpg",
- "joined": "2021-03-27 08:16:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670572",
- "username": "truongduy2712",
- "fullName": "Duy Nguyen (truongduy2712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14670572/medium/6dc7175805ec5e6a69ab575c172a1479.jpeg",
- "joined": "2021-03-16 14:59:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676020",
- "username": "jtrezza",
- "fullName": "jtrezza",
- "avatarUrl": "https://www.gravatar.com/avatar/8568ec87016d9cd44e807f313630ed8c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 11:33:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674186",
- "username": "yan.ex10si0n",
- "fullName": "Ex10si0n Yan (yan.ex10si0n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674186/medium/54d9df12345cb68993f1227afde2e10e.jpeg",
- "joined": "2021-03-19 04:24:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674448",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/dd974f1c55229d6e4660150a2c4048dc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 12:51:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674492",
- "username": "imTeMPe",
- "fullName": "imTeMPe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674492/medium/3054f05c640f03e25505c8d7743460b9.png",
- "joined": "2021-03-19 08:26:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674494",
- "username": "joelsantinho",
- "fullName": "Joel Santinho (joelsantinho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674494/medium/c2a55d97a58dbd80619b6d99c23e5866.jpeg",
- "joined": "2021-03-19 08:29:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674814",
- "username": "octoslav",
- "fullName": "Vyacheslav Eliseev (octoslav)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674814/medium/1376cc6eec0f3d7197bcc675b2e942fa.jpeg",
- "joined": "2021-03-19 12:18:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674826",
- "username": "zi75no",
- "fullName": "Mustafa Ramadan (zi75no)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674826/medium/86f9caf400f5d6b556b5a768bd5355fc.jpeg",
- "joined": "2021-03-19 12:27:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675016",
- "username": "Halah-Mahmood",
- "fullName": "Halah Mahmood (Halah-Mahmood)",
- "avatarUrl": "https://www.gravatar.com/avatar/8d13e3489a7764e7e0fbb52f7d9b5786?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 15:09:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675062",
- "username": "msjadidi",
- "fullName": "msjadidi",
- "avatarUrl": "https://www.gravatar.com/avatar/ae0951fda66a455af68b6e18ea661c96?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 15:52:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675092",
- "username": "Mousticke",
- "fullName": "Akim B. (Mousticke)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675092/medium/93a5a3891a8c8b3f1796baf7ae9c8046.png",
- "joined": "2021-03-19 16:33:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675630",
- "username": "masha_krolchenko",
- "fullName": "Masha (masha_krolchenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675630/medium/cbabfe3ec01a4c6ac9e5937ac3f690a1.JPG",
- "joined": "2021-03-20 05:38:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675696",
- "username": "onradeog",
- "fullName": "onradeog",
- "avatarUrl": "https://www.gravatar.com/avatar/456ca5b725945fcdfb9d0055a809fb6b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 06:47:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676008",
- "username": "rodney.sven",
- "fullName": "Rodney Sven Copperfield (rodney.sven)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14676008/medium/3889557902ff19f570c74d2a86429e48.jpeg",
- "joined": "2021-03-20 11:20:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676184",
- "username": "Max.Almonta",
- "fullName": "Max.Almonta",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14676184/medium/38882f8247dae20359d65676e5250ff8.jpg",
- "joined": "2021-03-20 14:06:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674150",
- "username": "jimmyBell",
- "fullName": "Leonardo Medellin (jimmyBell)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674150/medium/336fc2ddcf60b8bd85d76e83ff750f5d.jpg",
- "joined": "2021-03-19 03:49:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676228",
- "username": "rnroxas",
- "fullName": "rnroxas",
- "avatarUrl": "https://www.gravatar.com/avatar/84f3527c849f92e56adeee737306847d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 14:50:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676268",
- "username": "Bachan",
- "fullName": "Bachan",
- "avatarUrl": "https://www.gravatar.com/avatar/d7091aa68a00d2256eb9f3b5709bf974?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 15:29:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676296",
- "username": "RenataBrito",
- "fullName": "RenataBrito",
- "avatarUrl": "https://www.gravatar.com/avatar/99f71d4fc12a99295d1c31b1961f998d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 15:53:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676482",
- "username": "Behnamp02",
- "fullName": "Behnamp02",
- "avatarUrl": "https://www.gravatar.com/avatar/a562b100a050b267d59bc8f4cc3a1026?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 19:20:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676530",
- "username": "1657822872",
- "fullName": "1657822872",
- "avatarUrl": "https://www.gravatar.com/avatar/4173672c66c464f5e7f485b9b611415f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 20:39:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677006",
- "username": "wvdgoot",
- "fullName": "wvdgoot",
- "avatarUrl": "https://www.gravatar.com/avatar/e03ead5e4d316ee864fce34f6dd65f52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 07:42:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677168",
- "username": "kilid69",
- "fullName": "kilid69",
- "avatarUrl": "https://www.gravatar.com/avatar/136e1f7c2540321fd8dedf158adfd8e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 10:06:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677210",
- "username": "giu27seppe",
- "fullName": "Giuseppe Basile (giu27seppe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677210/medium/8199dcb64c9e0a06393c8d4d3f55dd62.jpg",
- "joined": "2021-03-21 10:55:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677262",
- "username": "paulagoes",
- "fullName": "Paula Goes (paulagoes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677262/medium/abca98edc7fcbc7867e6aa1e9d6bddfb.jpeg",
- "joined": "2021-05-03 08:21:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677584",
- "username": "Jzurithe",
- "fullName": "Jzurithe",
- "avatarUrl": "https://www.gravatar.com/avatar/bfb6810d6106aa9696da572ef836ce83?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 15:55:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677628",
- "username": "Josek33",
- "fullName": "Josek33",
- "avatarUrl": "https://www.gravatar.com/avatar/58b70d473e150d07a5de0618a9dfc4a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 16:42:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677792",
- "username": "Emad980",
- "fullName": "Emad980",
- "avatarUrl": "https://www.gravatar.com/avatar/f4db43698e06d9d7319575cf3e0b510b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-21 19:31:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674182",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/e740095e453745cfd59548e865726bc1?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 04:22:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14674090",
- "username": "qingfend",
- "fullName": "Qingfeng Du (qingfend)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14674090/medium/2898446861662d939ca5907665a1acfe.jpg",
- "joined": "2021-03-19 02:38:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678034",
- "username": "khtmn",
- "fullName": "khtmn",
- "avatarUrl": "https://www.gravatar.com/avatar/1440dc97ff736bbf78164794df7fb053?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 01:22:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 9,
- "winning": 0
- },
- {
- "user": {
- "id": "14672492",
- "username": "ukhack",
- "fullName": "ukhack",
- "avatarUrl": "https://www.gravatar.com/avatar/ca3545be49d2d0807fcbb9f6435a3ff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 21:34:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670620",
- "username": "salih.acgl",
- "fullName": "salih.acgl",
- "avatarUrl": "https://www.gravatar.com/avatar/41bc4f0d873db64dce4ec409acdd7a1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 15:43:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670632",
- "username": "Nikho",
- "fullName": "Nikho",
- "avatarUrl": "https://www.gravatar.com/avatar/f0cf999f4be3dd4dd7ba7e196ad66f38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 15:48:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670862",
- "username": "Ahelaly",
- "fullName": "Ahelaly",
- "avatarUrl": "https://www.gravatar.com/avatar/eabb2d35fef421afa26220a5f648a324?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 20:06:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670948",
- "username": "Brommann",
- "fullName": "Brommann",
- "avatarUrl": "https://www.gravatar.com/avatar/d31c7d1981e2bf6261c3ab96af2fa946?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 22:28:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670984",
- "username": "piaoguangxue",
- "fullName": "Tom Sirius (piaoguangxue)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14670984/medium/649b71541f103c94cfc301f43f06c547.jpeg",
- "joined": "2021-03-20 05:57:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14670986",
- "username": "luckyliu",
- "fullName": "luckyliu",
- "avatarUrl": "https://www.gravatar.com/avatar/62f88175b2a639efb2e167c1beb5fe50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-16 22:59:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671048",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/f7dc2459e1395a67088d04f7c8c4a570?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 00:10:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671218",
- "username": "marcelp23",
- "fullName": "Marcel Arturo Peña (marcelp23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14671218/medium/000e71fdd529be100a4e3fdf97b52a39.jpeg",
- "joined": "2021-03-17 04:43:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671358",
- "username": "Byczke",
- "fullName": "Byczke",
- "avatarUrl": "https://www.gravatar.com/avatar/a92b4cb6808b81788f58f9aa6c42945f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 13:18:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14671576",
- "username": "An_nas",
- "fullName": "An_nas",
- "avatarUrl": "https://www.gravatar.com/avatar/ca9bd92f42b9024e0e65dcbf9c7d145e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 08:42:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672166",
- "username": "marius.zaharia",
- "fullName": "marius.zaharia",
- "avatarUrl": "https://www.gravatar.com/avatar/25e4a9d7c2922aab65876891d9fcb360?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-17 15:41:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672466",
- "username": "maszov",
- "fullName": "Daniel Barajas (maszov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14672466/medium/6b6e3e0cf1f24c4c097aea83311d8391.jpeg",
- "joined": "2021-03-17 20:58:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672644",
- "username": ".RoneyPereirapaulain30",
- "fullName": ".RoneyPereirapaulain30",
- "avatarUrl": "https://www.gravatar.com/avatar/1761985f313cf866553ea4110ab2d31c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 01:42:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673994",
- "username": "JasmineHsu",
- "fullName": "Jasmine Hsu (JasmineHsu)",
- "avatarUrl": "https://www.gravatar.com/avatar/c9764a6beef68ac64ac12cee2416c972?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-19 00:08:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672670",
- "username": "MARG8",
- "fullName": "MARG8",
- "avatarUrl": "https://www.gravatar.com/avatar/f426789a5148e8597a7ec87981bd73b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 02:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672686",
- "username": "nikhusa",
- "fullName": "nikhusa",
- "avatarUrl": "https://www.gravatar.com/avatar/3d4510d3ec06bd67cf4029fbe4c86459?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 02:46:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672768",
- "username": "LQS_ES_ES_Yannick",
- "fullName": "LQS_ES_ES_Yannick",
- "avatarUrl": "https://www.gravatar.com/avatar/d5391a45754e143506d6169275ea6d2d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 04:19:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14672944",
- "username": "stefanosandrin4",
- "fullName": "Stefano Sandrin (stefanosandrin4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14672944/medium/0e9d49182df4578430e29159304dc22e.jpeg",
- "joined": "2021-03-18 06:18:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673064",
- "username": "broodjebrie",
- "fullName": "broodjebrie",
- "avatarUrl": "https://www.gravatar.com/avatar/4487a5c366349463fb74e27c06c2e427?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 08:05:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673502",
- "username": "dartini123",
- "fullName": "dartini123",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673502/medium/1589de50b3256afbd8193b1b4befc4ce.jpg",
- "joined": "2021-03-18 14:05:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673606",
- "username": "ginaborgiani",
- "fullName": "Gina Borgiani (ginaborgiani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673606/medium/2d654f00b5f5bedb8a4692815772641f.jpg",
- "joined": "2021-04-09 18:15:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673652",
- "username": "lhenriquepbueno",
- "fullName": "Luiz Henrique Picolo Buneo (lhenriquepbueno)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673652/medium/4945074272bb5d8396791bef29d66013.jpg",
- "joined": "2021-03-18 16:32:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673654",
- "username": "mateo200",
- "fullName": "mateo200",
- "avatarUrl": "https://www.gravatar.com/avatar/b39256d38e9841f48a0bb8eda00ea567?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 16:36:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673692",
- "username": "alisa_lisenok_lebedeva",
- "fullName": "Алиса Лебедева (alisa_lisenok_lebedeva)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673692/medium/921ac82058296bc13ebc53fff332d8dc.jpeg",
- "joined": "2021-03-18 17:38:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673722",
- "username": "lisenochek94942",
- "fullName": "Алиса Лебедева (lisenochek94942)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673722/medium/033574e4bb916aa4fd3d508d4cb60674.jpeg",
- "joined": "2021-03-18 18:04:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673820",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/dd974f1c55229d6e4660150a2c4048dc?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-18 20:18:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14673942",
- "username": "ajacobsen",
- "fullName": "ajacobsen",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14673942/medium/636c094dfc0580dd8d09d0f30cca33c8.jpg",
- "joined": "2021-03-18 22:57:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14677802",
- "username": "Esteban_Piedrah",
- "fullName": "Esteban_Piedrah",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14677802/medium/407d37cc5288c7db6ff35ae7d6791aa8.jpg",
- "joined": "2021-03-21 19:46:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678164",
- "username": "dlsifgww81",
- "fullName": "Heng Lee (dlsifgww81)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678164/medium/7503bb5a61ce188a1bb1ea2a89d94ba7.jpeg",
- "joined": "2021-03-22 04:31:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685444",
- "username": "lixuan",
- "fullName": "lixuan",
- "avatarUrl": "https://www.gravatar.com/avatar/2d02e161c76f25ae122bbedfb08546df?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 02:57:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683350",
- "username": "arsh13singh",
- "fullName": "Arshdeep Singh (arsh13singh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683350/medium/92cd23aa6725394bbd947f6ac28ad653.jpeg",
- "joined": "2021-03-25 12:52:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682496",
- "username": "reaminy_8",
- "fullName": "Andriy Kanashkov (reaminy_8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682496/medium/061ed3d8a1e96eff4add39d9f520a6d9.jpeg",
- "joined": "2021-03-24 23:38:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682572",
- "username": "giovanni.lagunaolaya",
- "fullName": "Giovanni Laguna (giovanni.lagunaolaya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682572/medium/f7aa3e4eb0e844db0db1d6b00951bb82.jpg",
- "joined": "2021-03-25 00:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682604",
- "username": "iridiumcao",
- "fullName": "Iridium Cao (iridiumcao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682604/medium/295b82628496f3e3a7f2ed3c959078c1.jpeg",
- "joined": "2021-03-25 01:44:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682678",
- "username": "oleh.vasylenko",
- "fullName": "Oleh Vasylenko (oleh.vasylenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682678/medium/c3d204a707e43641e95f0d5db873474c.png",
- "joined": "2021-08-17 12:27:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682690",
- "username": "maruchingu",
- "fullName": "연대열 (maruchingu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682690/medium/f5a233a682cccd076a4f6f8f25f3feab.jpeg",
- "joined": "2021-03-25 04:31:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682718",
- "username": "ketut",
- "fullName": "Surya A (ketut)",
- "avatarUrl": "https://www.gravatar.com/avatar/e644b803450efad75abaa47513cb0ab9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 04:22:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682798",
- "username": "ElysianPool",
- "fullName": "ElysianPool",
- "avatarUrl": "https://www.gravatar.com/avatar/e0210c4543a1632065f2bfd4d0384d65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 05:36:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682884",
- "username": "stigrein",
- "fullName": "stigrein",
- "avatarUrl": "https://www.gravatar.com/avatar/828d66cc20e43a047c11a35ef009b85c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 07:01:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683036",
- "username": "gkpo",
- "fullName": "gkpo",
- "avatarUrl": "https://www.gravatar.com/avatar/ff2a32c83ea1a0826c90cb1ab8d1eca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 08:40:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683070",
- "username": "zhaoke_supers",
- "fullName": "zhaoke_supers",
- "avatarUrl": "https://www.gravatar.com/avatar/60c16708c87ba5ae2633ba1d82dc2d61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-25 09:10:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683202",
- "username": "awayoficial",
- "fullName": "Fabricio Caiaffa (awayoficial)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683202/medium/63607c8635fe07d6297cee28f31c7c1f.jpeg",
- "joined": "2021-03-25 10:45:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683242",
- "username": "hasandaii1363",
- "fullName": "حسن دایی (hasandaii1363)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683242/medium/67cfc87d7e937db0c8db8cbb3f64d150.jpg",
- "joined": "2021-03-25 11:24:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683432",
- "username": "danakotech",
- "fullName": "DANAKO (danakotech)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683432/medium/fe93bb3304a25452f6f9a3975888a6fe.png",
- "joined": "2021-03-25 13:52:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682252",
- "username": "gamno85",
- "fullName": "gamno85",
- "avatarUrl": "https://www.gravatar.com/avatar/f3cbb62d134e421203f9bd1cc923cccf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 17:25:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683662",
- "username": "bejarano-tech",
- "fullName": "Frederick Bejarano (bejarano-tech)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683662/medium/00761367069ba0e579d3450d0a66227f.png",
- "joined": "2021-03-25 18:22:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14683986",
- "username": "dommedrc",
- "fullName": "Sara Cavalheiro (dommedrc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14683986/medium/edbbc57bc2284daca2e311e5bb99c41e.jpg",
- "joined": "2021-03-26 01:54:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684140",
- "username": "migangelo.espo",
- "fullName": "Mig ESPO (migangelo.espo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684140/medium/38e31beaf887fdeb774e31912462166e.jpeg",
- "joined": "2021-03-26 04:15:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684212",
- "username": "KaddourAlabbas",
- "fullName": "KaddourAlabbas",
- "avatarUrl": "https://www.gravatar.com/avatar/89ca8a546b5675b4208524874cdeefbd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-26 05:06:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684396",
- "username": "imanpo",
- "fullName": "imanpo",
- "avatarUrl": "https://www.gravatar.com/avatar/8c88f8719c37d257cfa7ae72edd69a27?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-26 08:04:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684534",
- "username": "juniorhdblr",
- "fullName": "Jus1x (juniorhdblr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684534/medium/72b0043d6843b4f62a43797bb7b75848.jpg",
- "joined": "2021-03-26 09:26:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684672",
- "username": "maksatsoltanmyradow76",
- "fullName": "onbir Man (maksatsoltanmyradow76)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14684672/medium/617edb3bef1d7d165525185f33c3df54.jpg",
- "joined": "2021-03-26 11:24:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14684966",
- "username": "Rolascoin",
- "fullName": "Rolando Dionisio Hernández (Rolascoin)",
- "avatarUrl": "https://www.gravatar.com/avatar/5328271dadedc708d2892c23c80be0d2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-26 14:28:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685086",
- "username": "alfredo.liardo",
- "fullName": "Alfredo Liardo (alfredo.liardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685086/medium/369baa78ad4be48d6b57d01db0104917.png",
- "joined": "2021-03-26 16:32:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685090",
- "username": "tonyherrera",
- "fullName": "tonyherrera",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685090/medium/4d43494a7f5ac560d21dffd1412e7a6e.jpg",
- "joined": "2021-03-26 16:32:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685344",
- "username": "reachfem24",
- "fullName": "reachfem24",
- "avatarUrl": "https://www.gravatar.com/avatar/f3a85193c5702af124605202ef74ead5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 00:15:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14685356",
- "username": "shawncarnahan616",
- "fullName": "Shawn Carnahan (shawncarnahan616)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14685356/medium/4e50a54e99afc9d66d8dc8f88e566289.jpeg",
- "joined": "2021-03-27 01:40:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682300",
- "username": "BayramDemir",
- "fullName": "BayramDemir",
- "avatarUrl": "https://www.gravatar.com/avatar/d715cbd28553e0b4fcb8fbfee4ac701e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 18:11:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14682072",
- "username": "FORGIS98",
- "fullName": "FORGIS98",
- "avatarUrl": "https://www.gravatar.com/avatar/705db25dd7e14055044b663c8e50aa14?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 14:39:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678284",
- "username": "Majidkh",
- "fullName": "Majidkh",
- "avatarUrl": "https://www.gravatar.com/avatar/c212bc56a52f0ed30c1990c993312118?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 05:30:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679562",
- "username": "Flayzer",
- "fullName": "Flayzer",
- "avatarUrl": "https://www.gravatar.com/avatar/7c9d630a8c75011bd64e27d3747d70b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 01:12:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678370",
- "username": "Camus",
- "fullName": "Camus",
- "avatarUrl": "https://www.gravatar.com/avatar/73fe07287ed73f37488e355b62fd9496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 06:33:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678386",
- "username": "hassan.omar62",
- "fullName": "Hassan Abou Elsoud (hassan.omar62)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678386/medium/94ba277ad910db039c6005ec005e1e15.jpeg",
- "joined": "2021-03-22 06:41:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678408",
- "username": "maafakkaamel",
- "fullName": "Егор Арте́мов (maafakkaamel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678408/medium/76c69d9a908bc704f0ce1245742087c0.jpg",
- "joined": "2021-03-22 06:57:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678636",
- "username": "ukmv",
- "fullName": "ukmv",
- "avatarUrl": "https://www.gravatar.com/avatar/d99ee381142524eea505c08d8b55d338?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 09:15:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678674",
- "username": "wl10909",
- "fullName": "wl10909",
- "avatarUrl": "https://www.gravatar.com/avatar/64ce708a727f9223a497e4cf8bdfd3c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 09:43:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678852",
- "username": "Gui.Carmona",
- "fullName": "Gui.Carmona",
- "avatarUrl": "https://www.gravatar.com/avatar/4772ea0b1edae561314a4da7a5437e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 12:01:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678858",
- "username": "Illy225",
- "fullName": "Wilfried Konan (Illy225)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678858/medium/9b5ab0ef8dd137188a4dbd79a0c9e41a.jpg",
- "joined": "2021-03-22 12:05:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14678922",
- "username": "abc0905075395",
- "fullName": "張俊輔 (abc0905075395)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14678922/medium/615c6a3a6c106fbbd8158ceac038f362.jpg",
- "joined": "2021-03-22 13:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679178",
- "username": "CindyLou00",
- "fullName": "CindyLou00",
- "avatarUrl": "https://www.gravatar.com/avatar/030a946612f9148b8fe4db2ea922ce0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 16:47:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679216",
- "username": "aljuriz",
- "fullName": "Amaury Bravo Aljuriz (aljuriz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14679216/medium/6ef48f45024d04960f36c402109cb60d.jpeg",
- "joined": "2021-03-22 17:29:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679290",
- "username": "franciscomarques",
- "fullName": "franciscomarques",
- "avatarUrl": "https://www.gravatar.com/avatar/3f2a9d36b9d139a042dc401341fdae84?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 19:05:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679312",
- "username": "SkullsMoney",
- "fullName": "SkullsMoney",
- "avatarUrl": "https://www.gravatar.com/avatar/0eafe53ff4fa865818fc30a5b7f7216b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-22 19:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679648",
- "username": "ietanothr",
- "fullName": "ietanothr",
- "avatarUrl": "https://www.gravatar.com/avatar/c7546bd4eed1ad93e5395ee579e5f6a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 03:06:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681974",
- "username": "belinarmy",
- "fullName": "Антон Белоусов (belinarmy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681974/medium/a71d9b0ca20eb4808268608d5ce3587e.jpeg",
- "joined": "2021-03-24 13:01:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679912",
- "username": "m337thesc0ut",
- "fullName": "m337thesc0ut",
- "avatarUrl": "https://www.gravatar.com/avatar/f1ed70484fae0f57205191aaf27abda8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 06:33:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14679978",
- "username": "Danil174",
- "fullName": "Danil174",
- "avatarUrl": "https://www.gravatar.com/avatar/a260980d1b63deeb4a4c6986209173a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 07:19:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14680410",
- "username": "Stanley15",
- "fullName": "Stanley15",
- "avatarUrl": "https://www.gravatar.com/avatar/4c903bece031c7a39fffd7b5b5abbb8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-23 12:46:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681014",
- "username": "JSHan94",
- "fullName": "JSHan94",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681014/medium/89ff2ae90c0e12294883c85d65e97e9c.png",
- "joined": "2021-03-23 22:29:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681180",
- "username": "Iris.ni",
- "fullName": "Iris.ni",
- "avatarUrl": "https://www.gravatar.com/avatar/5a23454a854df7c381c705a1a373ce94?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 02:03:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681206",
- "username": "sAyW1n",
- "fullName": "sAyW1n",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681206/medium/a995c65111c2432106e015be1dd15262.jpeg",
- "joined": "2021-03-24 02:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681390",
- "username": "wanbowen001",
- "fullName": "Bowen (wanbowen001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681390/medium/278cbc02a668c6979af019c43b2fdcd6.png",
- "joined": "2021-03-24 05:04:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681434",
- "username": "hasanbc45",
- "fullName": "Hasan Bağcı (hasanbc45)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681434/medium/7ebfbebf8522f36e702a6d88888993d8.jpg",
- "joined": "2021-03-24 05:38:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681496",
- "username": "meecit",
- "fullName": "meecit",
- "avatarUrl": "https://www.gravatar.com/avatar/9e658bd4c94b654695626f0dbf66588f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-08 10:22:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681576",
- "username": "lovemeso1987",
- "fullName": "Сергей Степенный (lovemeso1987)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681576/medium/99ebf0bdafa267b87d96d7ef29461f2a.jpeg",
- "joined": "2021-03-24 07:40:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681678",
- "username": "jaalce",
- "fullName": "jaalce",
- "avatarUrl": "https://www.gravatar.com/avatar/c0c4f5e7bf73ca1aec7a70bcc9b1576b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 08:54:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681790",
- "username": "aprisnando",
- "fullName": "aprisnando",
- "avatarUrl": "https://www.gravatar.com/avatar/472239fe8b1ad8b709704a9ecc1e3e90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 10:31:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14681916",
- "username": "slh.ylmaz1903",
- "fullName": "Salih YILMAZ (slh.ylmaz1903)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14681916/medium/149926a15c6396eab80c64a0372eb1e5.jpg",
- "joined": "2021-03-24 12:21:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638786",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/ef5f497f5e50c336c29ed04dd0648adb?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 20:37:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638616",
- "username": "Patt",
- "fullName": "Patt",
- "avatarUrl": "https://www.gravatar.com/avatar/1b29c6f106af946d1a5d822538acdb7e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 16:51:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559918",
- "username": "Muzaffer015",
- "fullName": "Muzaffer015",
- "avatarUrl": "https://www.gravatar.com/avatar/10fc47d130e88df48935e3745d46a0ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-02 16:28:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586642",
- "username": "key2russia",
- "fullName": "Vladimir Pochinov (key2russia)",
- "avatarUrl": "https://www.gravatar.com/avatar/ce138bb68bff7ffa76d0c1a09fdd2388?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 02:58:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14583810",
- "username": "andimuktih",
- "fullName": "andimuktih",
- "avatarUrl": "https://www.gravatar.com/avatar/dfc53b456c2c351eb35ef7fb96417c70?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 04:14:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14583868",
- "username": "7kamikaze7",
- "fullName": "Asc Sedmosm (7kamikaze7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14583868/medium/ad867635428b0cb1b6eb4f13b185a263.jpeg",
- "joined": "2021-01-19 06:09:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584044",
- "username": "a01080138661",
- "fullName": "원은규 (a01080138661)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584044/medium/8404342f7c2ef68c5fb676b2af498df0.jpg",
- "joined": "2021-01-19 06:48:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584702",
- "username": "Krzychu_gru",
- "fullName": "Krzychu_gru",
- "avatarUrl": "https://www.gravatar.com/avatar/c4aeee4d49eb96da11c2c00620701fc7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-19 13:45:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584712",
- "username": "lucaspajarocauzzi",
- "fullName": "Lucas pajaro (lucaspajarocauzzi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584712/medium/aa718aec76bcbb0ddc95dc91b3859963.jpeg",
- "joined": "2021-01-19 13:53:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584736",
- "username": "LeoGodinho",
- "fullName": "Leonardo Godinho (LeoGodinho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584736/medium/bf9a05b2fbb33eee9ab9ea59f5fb4424.jpeg",
- "joined": "2021-01-19 14:21:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14584972",
- "username": "EnsarYusuf",
- "fullName": "Ensar Yusuf YILMAZ (EnsarYusuf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14584972/medium/c24e039f3f95bea52a0f8742c23615c6.png",
- "joined": "2021-04-06 17:00:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14585298",
- "username": "soowindance",
- "fullName": "Wayne Sun (soowindance)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14585298/medium/cc3c796eba4ead635857d98846edd07a.jpeg",
- "joined": "2021-01-19 23:10:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14585744",
- "username": "rambo_tugaaaa",
- "fullName": "Rui Pedro (rambo_tugaaaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14585744/medium/404c3cd6a926a84a0a3b396f6f20f843.jpeg",
- "joined": "2021-01-20 05:45:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586012",
- "username": "ceasar.solucoes",
- "fullName": "Caio Cesar de O. Pereira (ceasar.solucoes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586012/medium/c4b345883e6638d7f10a70447369b2f5.png",
- "joined": "2021-01-20 08:33:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 33,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586030",
- "username": "smolpadok",
- "fullName": "smolpadok",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586030/medium/3f48fc620d6f916aa24dd17f8777e487.png",
- "joined": "2021-01-20 08:46:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586142",
- "username": "v3rd3",
- "fullName": "v3rd3",
- "avatarUrl": "https://www.gravatar.com/avatar/98a39eee786541ec7261950f5f022894?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-20 10:06:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14586688",
- "username": "misharuz25",
- "fullName": "Миша Рузавин (misharuz25)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14586688/medium/24bdff9ca7ecaadf89e707a27a1ffd61.jpg",
- "joined": "2021-01-20 17:02:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582998",
- "username": "mondini.marco",
- "fullName": "Marco Mondini (mondini.marco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582998/medium/6fa15c63ec087889a2ca1920905bc9b4.jpeg",
- "joined": "2021-01-18 14:27:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587094",
- "username": "Fabs86",
- "fullName": "Fabs86",
- "avatarUrl": "https://www.gravatar.com/avatar/20e38dd33b57b81f2b986fb99e732bb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 01:05:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587244",
- "username": "Firman_Nur",
- "fullName": "Firman_Nur",
- "avatarUrl": "https://www.gravatar.com/avatar/7101c7e5e10c284f76eea77e3f0cf494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 09:36:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587250",
- "username": "MuKaTa-2020",
- "fullName": "MuKaTa-2020",
- "avatarUrl": "https://www.gravatar.com/avatar/1ea29c6192d8149ebb25ab99e73b01ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 03:32:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587342",
- "username": "Sokunthaneth",
- "fullName": "Sokunthaneth Chhoy (Sokunthaneth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587342/medium/5ce1465fc00493ef6f537debcccd0ded.png",
- "joined": "2021-01-21 05:03:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587728",
- "username": "Bennyhierry",
- "fullName": "Bennyhierry",
- "avatarUrl": "https://www.gravatar.com/avatar/b04e35cf9d8c0ff020d2bd7e9b61ae5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 09:50:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587890",
- "username": "Elikill58",
- "fullName": "Elikill58",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587890/medium/1d5b3a9de8a7b7f6082357f1fe99d654.jpeg",
- "joined": "2021-01-21 12:06:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588140",
- "username": "tang5113",
- "fullName": "唐辉 (tang5113)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588140/medium/5d6d40cda58a566c5d84dd30203463e6.jpg",
- "joined": "2021-01-21 14:10:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588194",
- "username": "jotunn",
- "fullName": "jotunn",
- "avatarUrl": "https://www.gravatar.com/avatar/98f7f37f845f0910dcae9bfd7173dcb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 14:58:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588318",
- "username": "h.g.azizov",
- "fullName": "Hasan Azizov (h.g.azizov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588318/medium/3997b6bd85899fbe07b4362ed1258033.jpeg",
- "joined": "2021-01-21 15:49:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588496",
- "username": "rouftomb",
- "fullName": "Muller Roufaou (rouftomb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588496/medium/5eb12f2bb5362b62230035bbb00bb093.jpeg",
- "joined": "2021-01-21 19:06:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588544",
- "username": "vaiven",
- "fullName": "vaiven",
- "avatarUrl": "https://www.gravatar.com/avatar/190c59bb54537a9090f31e539b09cafe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-21 20:00:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588718",
- "username": "tjr3117",
- "fullName": "김재* (tjr3117)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14588718/medium/2c851e481bcc27ed20a7ac68e06d2bbd.jpeg",
- "joined": "2021-01-22 00:29:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14583798",
- "username": "krakora20",
- "fullName": "Jaroslav Krákora (krakora20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14583798/medium/530ff4fec4b8cf4fbd456bea853b8d23.jpg",
- "joined": "2021-01-19 04:05:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582912",
- "username": "burak25",
- "fullName": "Burak Kırdemir (burak25)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582912/medium/71f38d11cb85a8cacb6f82a4f9c9348b.jpeg",
- "joined": "2021-01-18 13:01:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14589096",
- "username": "shadowmonarch",
- "fullName": "shadowmonarch",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14589096/medium/e625e2e3f8e2d7a5b2a351a5bfe34341.jpg",
- "joined": "2021-01-23 05:28:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581702",
- "username": "alosue",
- "fullName": "Alberto Uez (alosue)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581702/medium/d3f03f485db3b03afcd7058215d68264.jpeg",
- "joined": "2021-01-17 18:51:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578738",
- "username": "arq_douglas_morillo_ve",
- "fullName": "Douglas Morillo (arq_douglas_morillo_ve)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578738/medium/93fd854b378ab8345a869295394e003a.jpeg",
- "joined": "2021-01-15 14:54:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579214",
- "username": "Egart1488",
- "fullName": "Egart1488",
- "avatarUrl": "https://www.gravatar.com/avatar/99996287ebedfd2dbb18f03dd5f439e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 00:02:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579222",
- "username": "mydoto",
- "fullName": "mydoto",
- "avatarUrl": "https://www.gravatar.com/avatar/62b4bf26d17952baae6674b37a99fc32?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 00:11:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579712",
- "username": "young.laww",
- "fullName": "young.laww",
- "avatarUrl": "https://www.gravatar.com/avatar/4c5612285eabbdf86d569c25c92cee9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-16 08:16:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14579816",
- "username": "fullak",
- "fullName": "Tristan Brochard (fullak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14579816/medium/86820f407ca3c52d5a2b7b81c18e7eec.jpeg",
- "joined": "2021-01-16 09:51:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14580278",
- "username": "yo_comy",
- "fullName": "Cosmin Isaila (yo_comy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14580278/medium/4e8c695bee635a7caf9aa6117688f9bd.jpeg",
- "joined": "2021-01-16 16:21:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581102",
- "username": "marakhov.andrey",
- "fullName": "uniqboyz (marakhov.andrey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581102/medium/0f6dc55536c5970137eba1cacce8d05e.jpeg",
- "joined": "2021-01-17 09:12:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581334",
- "username": "mehdi140",
- "fullName": "mehdi140",
- "avatarUrl": "https://www.gravatar.com/avatar/2f1f84aa560f49e21becb5d11922adf1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 12:40:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581368",
- "username": "DeadShot_KOSS",
- "fullName": "DeadShot_KOSS",
- "avatarUrl": "https://www.gravatar.com/avatar/5657ddc29ee5c9bf7f8bfeee4c96db43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 12:55:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581500",
- "username": "hayat_diye_1_sey",
- "fullName": "Can Karataş (hayat_diye_1_sey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581500/medium/88fa54d8d612b9c26335b3a89b57da2e.jpeg",
- "joined": "2021-01-17 14:49:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581570",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/71c03118449e25c8b1ce50800433d1b5?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 16:03:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581696",
- "username": "fatihbilgen",
- "fullName": "fatihbilgen",
- "avatarUrl": "https://www.gravatar.com/avatar/a6970320aadce81c5c6eb3009500068f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 18:47:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581748",
- "username": "voltronic",
- "fullName": "voltronic",
- "avatarUrl": "https://www.gravatar.com/avatar/6030fb56e908dd86d96e42911368e953?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-17 19:33:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582910",
- "username": "sier_892",
- "fullName": "sier_892",
- "avatarUrl": "https://www.gravatar.com/avatar/2671bb67df5a9829c3515551cc86026d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 12:58:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581838",
- "username": "xyligan77",
- "fullName": "xyligan 77 (xyligan77)",
- "avatarUrl": "https://www.gravatar.com/avatar/af43d638b6fd8ebefcd491384ef04e43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-08 18:20:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14581964",
- "username": "sulispriyantoro",
- "fullName": "Sulis Priyantoro (sulispriyantoro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14581964/medium/8cec45f68672c9fba30109b03be32b91.jpeg",
- "joined": "2021-02-25 09:35:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582052",
- "username": "carolinebleckert",
- "fullName": "Caroline Bleckert (carolinebleckert)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582052/medium/639d35605da557cab673b57cceb938e1.jpeg",
- "joined": "2021-01-18 02:24:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582114",
- "username": "reza8071",
- "fullName": "reza8071",
- "avatarUrl": "https://www.gravatar.com/avatar/2913b355ea3ef0ded5ada2c438886589?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 03:13:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582152",
- "username": "Shokhe",
- "fullName": "Shokhrukh Ermanov (Shokhe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582152/medium/4fc89c53adc0e65a7af6a181eba9a10d.jpg",
- "joined": "2021-01-18 03:45:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582168",
- "username": "mattia-hash",
- "fullName": "mattia-hash",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582168/medium/3a4413893bf712f7a0939735b6f85298.png",
- "joined": "2021-01-18 03:56:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582304",
- "username": "Ahmed-Raafat",
- "fullName": "Ahmed-Raafat",
- "avatarUrl": "https://www.gravatar.com/avatar/54109d0b4c19d010e6c1c5494efc46cf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 06:20:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582306",
- "username": "Enrique_Mayen",
- "fullName": "Enrique_Mayen",
- "avatarUrl": "https://www.gravatar.com/avatar/acd100be47bec365b675cadb4a004a3d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 05:55:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582588",
- "username": "Kkian",
- "fullName": "Kkian",
- "avatarUrl": "https://www.gravatar.com/avatar/45d56e8f8347f2a3270d069f7edda272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 09:05:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582822",
- "username": "rbrunomarques",
- "fullName": "Bruno Marques (rbrunomarques)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582822/medium/37460294a3c81cf5118924de20c06af2.jpeg",
- "joined": "2021-01-18 11:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582828",
- "username": "Salavat",
- "fullName": "Salavat",
- "avatarUrl": "https://www.gravatar.com/avatar/350bc53f7d7b76727aa1cba9cfb91ce6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 11:41:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14582856",
- "username": "toratj",
- "fullName": "Tor Arne Tjåland (toratj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14582856/medium/10fe53b905f4f425e8a7ba079af50015.png",
- "joined": "2021-01-18 12:07:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14588858",
- "username": "Daniil200618",
- "fullName": "Daniil200618",
- "avatarUrl": "https://www.gravatar.com/avatar/c4324135172baf2e1dc9ff750c38d1dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 03:00:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590022",
- "username": "AlixRoyere",
- "fullName": "AlixRoyere",
- "avatarUrl": "https://www.gravatar.com/avatar/3591737588695ee50969a84549376b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 20:12:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578338",
- "username": "feeji",
- "fullName": "feeji",
- "avatarUrl": "https://www.gravatar.com/avatar/4b802d76452eb70225fb9cc0bdc003c9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-15 09:03:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14598510",
- "username": "arshengc",
- "fullName": "陳亞生 (arshengc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14598510/medium/dc5af8c666f76b88f0af685ab8574f16.jpeg",
- "joined": "2021-01-28 09:25:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594806",
- "username": "kutaytosun",
- "fullName": "kutay tosun (kutaytosun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594806/medium/a176cc9e01ec59f3a2e342f4ac5a5474.jpeg",
- "joined": "2021-01-26 06:10:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595260",
- "username": "AlanP",
- "fullName": "alanparsn (AlanP)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595260/medium/ed4bb504f0eb2e1c6721b389adf5a13f.png",
- "joined": "2021-01-26 11:49:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595552",
- "username": "jgcarrere",
- "fullName": "Joaquín González Carrere (jgcarrere)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595552/medium/2de405691db61f7cd4519fc49fe31860.jpg",
- "joined": "2021-01-26 14:44:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595752",
- "username": "furkannnn400",
- "fullName": "furkan öztürk (furkannnn400)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595752/medium/5b27fe969246c5c11131aaf3820a75f1.jpeg",
- "joined": "2021-01-26 17:51:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14595814",
- "username": "mhj3056",
- "fullName": "mh Junior (mhj3056)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14595814/medium/a47d756cc7c13f42ac7d8632b70dc7b9.jpg",
- "joined": "2021-01-26 19:20:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14596176",
- "username": "a22864",
- "fullName": "a22864",
- "avatarUrl": "https://www.gravatar.com/avatar/81f6a5db40cd8a13e64f05be2c9ac701?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-27 02:37:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14596616",
- "username": "cloudlite",
- "fullName": "Yucheng Liu (cloudlite)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14596616/medium/3c67d9256c565425b6171b1bb6cb5231.png",
- "joined": "2021-01-27 07:56:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14596824",
- "username": "manuzecchin",
- "fullName": "Manuel Garcia Zecchin (manuzecchin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14596824/medium/8da2cadba4cf986427e7b1d5e4c0a70c.jpeg",
- "joined": "2021-01-27 10:24:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14597374",
- "username": "monuripek94",
- "fullName": "M Onur Ipek (monuripek94)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597374/medium/a101542182c896d91d1fd9e876506de6.jpeg",
- "joined": "2021-01-27 17:13:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14597740",
- "username": "Berkov",
- "fullName": "Judas Berkov (Berkov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597740/medium/0a073b278154bc96d0802ad1fee59b4f.jpg",
- "joined": "2021-01-28 01:05:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14597850",
- "username": "iggyiccy",
- "fullName": "Iggy (iggyiccy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14597850/medium/1b9ccd160d1d9c3807b5de89f0333bc8.png",
- "joined": "2021-04-23 21:03:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14598082",
- "username": "mrip03",
- "fullName": "mrip03",
- "avatarUrl": "https://www.gravatar.com/avatar/ebe2b0d1b7864bf997b429ea6dce4f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-28 04:52:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14598938",
- "username": "galal12345",
- "fullName": "galal12345",
- "avatarUrl": "https://www.gravatar.com/avatar/eb205cb8e35658c41eae439ab4f542b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-28 13:07:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594710",
- "username": "nataliab",
- "fullName": "nataliab",
- "avatarUrl": "https://www.gravatar.com/avatar/971af6cb5873875156c3d37c59745fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-26 04:55:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599044",
- "username": "do1221",
- "fullName": "Linda Canarvar (do1221)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599044/medium/acf065ebe3d30435aff08f99204281b1.jpg",
- "joined": "2021-01-28 14:53:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599084",
- "username": "yunussihamimre",
- "fullName": "Yunus Imre (yunussihamimre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599084/medium/aa222d76a371224efa62cc324b3f7cdd.jpg",
- "joined": "2021-01-28 15:31:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599152",
- "username": "Sawansolanki",
- "fullName": "Sawan Solanki (Sawansolanki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599152/medium/0c8ff52eed5f9ed85e4f204472e0f412.jpeg",
- "joined": "2021-01-28 16:12:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599232",
- "username": "hakan.kayhan.98",
- "fullName": "HAKAN KAYHAN (hakan.kayhan.98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599232/medium/0f0679b277ee1d0456250a72665a9d69.jpeg",
- "joined": "2021-01-28 17:47:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599766",
- "username": "jragosa",
- "fullName": "Jimmy Ragosa (jragosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599766/medium/eb89f1cdeef5dfea1bac330f9c80b58a.jpeg",
- "joined": "2021-01-29 05:40:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599906",
- "username": "Darnai.Sara",
- "fullName": "Darnai Sára (Darnai.Sara)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599906/medium/34114c1d1c05de93d9805846e9ae1ffc.jpg",
- "joined": "2021-01-29 08:33:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599908",
- "username": "translate.yandex.ru",
- "fullName": "translate.yandex.ru",
- "avatarUrl": "https://www.gravatar.com/avatar/c36c6dee92844a8b37472fe2637b4268?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 07:06:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14599938",
- "username": "wjy7551376",
- "fullName": "jyfocus (wjy7551376)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14599938/medium/7d58c031632657c5866ea32c4477e61b.jpeg",
- "joined": "2021-01-29 07:42:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600024",
- "username": "Klayer89",
- "fullName": "Klay Er (Klayer89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600024/medium/8ae92291801f1578f0cd335bc68d68f3.jpeg",
- "joined": "2021-01-29 08:49:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600152",
- "username": "hbarcelos",
- "fullName": "hbarcelos",
- "avatarUrl": "https://www.gravatar.com/avatar/ea10822d92db8b695ffa6d67727d672b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 10:32:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600334",
- "username": "Lemzor",
- "fullName": "Lemzor",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600334/medium/884d6f77400a5da964d62a0a7bdb4f0d.png",
- "joined": "2021-05-05 16:20:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600562",
- "username": "ahmad.tajadod",
- "fullName": "Ahmad Ziaie Tajadod (ahmad.tajadod)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14600562/medium/64136d796dede4d921c19e6bac7fa127.jpeg",
- "joined": "2021-01-29 15:28:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594750",
- "username": "g1usy_joey",
- "fullName": "g1usy_joey",
- "avatarUrl": "https://www.gravatar.com/avatar/f2c301b06860d7978eb52033b947c76a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-26 07:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594664",
- "username": "tintokaradin",
- "fullName": "Tinto Karadin (tintokaradin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594664/medium/80d1ab062af1d4539b5eb9e1a45345e8.jpeg",
- "joined": "2021-01-26 04:25:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590048",
- "username": "Datovo",
- "fullName": "Datovo",
- "avatarUrl": "https://www.gravatar.com/avatar/a54b7d1e27a8449187005eb7a013e5d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-22 19:20:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592104",
- "username": "miguelemos",
- "fullName": "Miguel Lemos (miguelemos)",
- "avatarUrl": "https://www.gravatar.com/avatar/5d0a86ffbcf96fd240a7b26f5dee07d5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 10:02:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590264",
- "username": "sofienedami",
- "fullName": "Dami Sofien (sofienedami)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14590264/medium/65f1182ca70fe1e101775da0d722d0e5.jpeg",
- "joined": "2021-01-23 00:36:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590594",
- "username": "choofe.bit",
- "fullName": "A Sh (choofe.bit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14590594/medium/018e68a4986f8a8c25c4725286123f42.jpg",
- "joined": "2021-01-23 06:14:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14590642",
- "username": "Zlotumone",
- "fullName": "Zlotumone",
- "avatarUrl": "https://www.gravatar.com/avatar/89ce1760be1914bb86f5c916ff2d834b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 07:08:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591102",
- "username": "Gamer_top_13",
- "fullName": "Gamer 13 (Gamer_top_13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591102/medium/2b42c26cd428975962a463206e80a523.png",
- "joined": "2021-01-27 04:57:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591120",
- "username": "16815081",
- "fullName": "16815081",
- "avatarUrl": "https://www.gravatar.com/avatar/13b8780c4f3bf754ccb39796af9dca74?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 14:01:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591374",
- "username": "SGROI",
- "fullName": "SGROI",
- "avatarUrl": "https://www.gravatar.com/avatar/3c10b664c7037867d104a19c1e5c4c07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 18:49:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591424",
- "username": "AleksandraPaw",
- "fullName": "AleksandraPaw",
- "avatarUrl": "https://www.gravatar.com/avatar/e0bc0d01f86f2dcbb59be7da8e97f2e6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 20:23:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591426",
- "username": "d4r3d3v1l",
- "fullName": "d4r3d3v1l",
- "avatarUrl": "https://www.gravatar.com/avatar/a181c862430c28f8bb80b67a576dacb1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-23 20:25:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591574",
- "username": "yuanmeng",
- "fullName": "yuanmeng",
- "avatarUrl": "https://www.gravatar.com/avatar/f8c3d51fd941ce4320f3acd44ace80a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 00:47:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591640",
- "username": "malewolf",
- "fullName": "Wolf Shadow (malewolf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591640/medium/c801a5424c7eae77cb79685244ee9dee.jpeg",
- "joined": "2021-01-24 02:38:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591708",
- "username": "lihelh",
- "fullName": "李* (lihelh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591708/medium/505be4f784f752b373e3357952cc9c28.png",
- "joined": "2021-04-06 09:36:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14591838",
- "username": "BohusKrypto",
- "fullName": "BohusKrypto",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14591838/medium/10072388f5c8c36a68a3a573e671c583.jpg",
- "joined": "2021-02-08 09:06:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592434",
- "username": "KemalK",
- "fullName": "Kemal KELES (KemalK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14592434/medium/72a3946d458fe6eb69dab1cf1561e934.png",
- "joined": "2021-01-24 14:14:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14594644",
- "username": "dogukan1334",
- "fullName": "Dogukan balık (dogukan1334)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594644/medium/ad7c3e3a12bd5140de1312301bfb4aa1.jpg",
- "joined": "2021-01-26 03:56:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592524",
- "username": "SIGNUPNOW",
- "fullName": "SIGNUPNOW",
- "avatarUrl": "https://www.gravatar.com/avatar/86e468d8b6a481de06164635142c8034?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 15:56:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592530",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/8938b6a78f7ceb96eaacaccd8d22bdf0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 16:02:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592792",
- "username": "990191395",
- "fullName": "990191395",
- "avatarUrl": "https://www.gravatar.com/avatar/aa9de214331d6db40faf32396d0105c4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-24 21:18:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14592976",
- "username": "YorkSvit",
- "fullName": "YorkSvit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14592976/medium/8aac6eeb10b86733844156b774ca665b.png",
- "joined": "2021-01-25 01:07:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14593316",
- "username": "mankal111",
- "fullName": "Manolis Kalafatis (mankal111)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593316/medium/ae46e7d0b56eac4de18909fed070e1c4.jpeg",
- "joined": "2021-01-25 05:44:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14593580",
- "username": "murilooon",
- "fullName": "Murilo Olvieira (murilooon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593580/medium/31bad597428d9b341f63226cced204ac.png",
- "joined": "2021-01-26 06:29:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14593722",
- "username": "vania1366",
- "fullName": "Ivan Fossati (vania1366)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14593722/medium/598730e9b33babb13b9d98095c3745ab.jpeg",
- "joined": "2021-01-26 12:13:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594104",
- "username": "ertugrul.ishak.koseoglu",
- "fullName": "ertuğrul ishak köseoğlu (ertugrul.ishak.koseoglu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594104/medium/8ab4750df39885b6c983d2a0e73f3f2d.jpg",
- "joined": "2021-01-25 16:29:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594114",
- "username": "ccbtm83",
- "fullName": "Cristian Bejinariu (ccbtm83)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594114/medium/450d04d1ebe724824b4927a7d5a958be.png",
- "joined": "2021-01-25 16:40:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14594126",
- "username": "firas.abu.zarad",
- "fullName": "Firas Abu Zarad (firas.abu.zarad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594126/medium/50207aa5b92b67c5b216a12ca49fdeab.jpeg",
- "joined": "2021-01-25 16:58:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594226",
- "username": "spzpro92",
- "fullName": "Tony Berruet (spzpro92)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594226/medium/a5f26b01062480a2d981436914695f14.jpg",
- "joined": "2021-01-25 18:48:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594278",
- "username": "murray_rothbard",
- "fullName": "Gabriel Mendes (murray_rothbard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14594278/medium/2db3f31d8f58c858123958b1d8988312.jpg",
- "joined": "2021-01-29 22:09:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14594386",
- "username": "ExercitoGamer",
- "fullName": "ExercitoGamer",
- "avatarUrl": "https://www.gravatar.com/avatar/92407fa41fb764beb60360db518f6890?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-25 22:31:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578658",
- "username": "soldi",
- "fullName": "Dmitriy Didovich (soldi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578658/medium/cf09d1f26146717047e03e181ac79b16.jpeg",
- "joined": "2021-01-15 13:34:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14578222",
- "username": "Marstwan",
- "fullName": "Daniel Marcos (Marstwan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14578222/medium/5a281f6a007e4d718b2fc857892f54d7.jpeg",
- "joined": "2021-01-15 07:44:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600888",
- "username": "Mohammad_Shehadeh",
- "fullName": "Mohammad_Shehadeh",
- "avatarUrl": "https://www.gravatar.com/avatar/9c5bd79de2bb2ee244ba62c9faa55c07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 22:07:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565546",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/0da032de8df29c4f658c808cf4502c68?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-06 12:38:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564174",
- "username": "lch5490",
- "fullName": "임치헌 (lch5490)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564174/medium/b8e4fee1f0c81e8ad49b606df8b07208.jpeg",
- "joined": "2021-01-05 15:19:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564238",
- "username": "FreddyAndresParra",
- "fullName": "Фредди Андрес Парра Орельяна (FreddyAndresParra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg",
- "joined": "2021-01-05 16:17:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14564272",
- "username": "liyifan333",
- "fullName": "liyifan333",
- "avatarUrl": "https://www.gravatar.com/avatar/baf6804715a59ecade94ac8926221e5f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-05 16:34:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564278",
- "username": "koba1t6",
- "fullName": "koba1t6",
- "avatarUrl": "https://www.gravatar.com/avatar/252f496f7b142a6b346671ebecc604ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-05 16:46:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564316",
- "username": "stevenvanroye",
- "fullName": "stevenvanroye",
- "avatarUrl": "https://www.gravatar.com/avatar/a33de30cb8f40f80ac0b193d184bf4de?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-05 17:26:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564426",
- "username": "bschorchit",
- "fullName": "Bárbara Schorchit (bschorchit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564426/medium/85aa92771b96f81e3a10f1580a58e799.jpeg",
- "joined": "2021-01-05 19:28:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564508",
- "username": "burh871",
- "fullName": "M Burhanudin (burh871)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564508/medium/cf1201726669fc1c5ea2b83338590930.jpeg",
- "joined": "2021-01-05 21:27:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564674",
- "username": "max.jatmanov",
- "fullName": "Max Jatmanov (max.jatmanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564674/medium/de3304771bd8b32c063e6567dbccf637.png",
- "joined": "2021-01-06 01:09:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564964",
- "username": "muhammadichsan200",
- "fullName": "Mhmdxchsn (muhammadichsan200)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564964/medium/100cdf956fef498b8ceb4c751f6bb089.jpeg",
- "joined": "2021-01-06 05:24:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565190",
- "username": "Sky_NiniKo",
- "fullName": "Sky_NiniKo",
- "avatarUrl": "https://www.gravatar.com/avatar/481074cbd6e69b55df35ad0431c75082?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-06 06:37:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565366",
- "username": "brahumm.tzulao",
- "fullName": "Владислав Панченко (brahumm.tzulao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14565366/medium/fa54b5476ef1134bb2209a6c13ba85b3.jpg",
- "joined": "2021-01-06 10:32:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565526",
- "username": "hoon5773",
- "fullName": "hoon5773",
- "avatarUrl": "https://www.gravatar.com/avatar/f853cc8fb39aed2cd5deeb241d968518?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-06 12:21:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565950",
- "username": "fabricioparramaldonado",
- "fullName": "Fabricio Parra (fabricioparramaldonado)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14565950/medium/6bfbe7ea0c369386965c196fd15e0905.jpeg",
- "joined": "2021-01-06 22:15:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563758",
- "username": "Aaloun",
- "fullName": "Ahmad Aloun (Aaloun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563758/medium/29227a6f926efc696277fdd9e534865c.jpeg",
- "joined": "2021-01-05 09:19:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566028",
- "username": "cheon",
- "fullName": "cheon",
- "avatarUrl": "https://www.gravatar.com/avatar/606782dcdad24ba4a784b34e30817374?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-06 20:32:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566254",
- "username": "asjwilliams",
- "fullName": "William Christober (asjwilliams)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566254/medium/fa74305e6a4b6e705814ae66b3b45441.jpeg",
- "joined": "2021-01-07 03:29:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566368",
- "username": "mrtkck",
- "fullName": "mrtkck",
- "avatarUrl": "https://www.gravatar.com/avatar/b2e97c013c7c249016b3fa12f38e6b8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-07 04:00:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566568",
- "username": "YIgITeFe",
- "fullName": "YIgITeFe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566568/medium/f9f56947e8c3882058f060c6d30c7fde.jpeg",
- "joined": "2021-02-26 19:35:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566754",
- "username": "asatzger",
- "fullName": "Armin Satzger (asatzger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566754/medium/788107353be234330a4067d7a51b7499.jpg",
- "joined": "2021-01-07 10:11:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566830",
- "username": "mohammad10",
- "fullName": "Amin R (mohammad10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566830/medium/b36a8753b4c2f3b12cc7ddf31f0623c0.jpg",
- "joined": "2021-01-07 11:03:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14566952",
- "username": "darienmhc",
- "fullName": "Juan Darien Macías Hernández (darienmhc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566952/medium/1a8b3d25d4b5fb8654789c42dcd0d62c.jpeg",
- "joined": "2021-01-07 12:44:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567240",
- "username": "jj123",
- "fullName": "정민석 (jj123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567240/medium/8411a1f4e4e3b3f982889f724c282c5a.jpg",
- "joined": "2021-01-07 17:39:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567326",
- "username": "MaYbe08",
- "fullName": "San Nad (MaYbe08)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567326/medium/17ce7255f1ae78b889baaff301d01c78.jpg",
- "joined": "2021-01-07 19:00:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567566",
- "username": "kennywong",
- "fullName": "Wong Kenny (kennywong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567566/medium/decb2eeb8330bd3c667a86e5a709b0df.jpg",
- "joined": "2021-01-08 01:32:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567604",
- "username": "rootdminsql",
- "fullName": "In Effect (rootdminsql)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14567604/medium/f7ce293419a5b432f311537dbba76099.jpeg",
- "joined": "2021-01-08 02:06:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567610",
- "username": "Jaryn",
- "fullName": "Jaryn",
- "avatarUrl": "https://www.gravatar.com/avatar/65157edcd1e226e4108a5038ba4a7bf0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 02:09:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14563954",
- "username": "diego-salgado",
- "fullName": "Diego Salgado (diego-salgado)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563954/medium/4a1788a9cc959a9db35ac60f737b83a9.jpeg",
- "joined": "2021-01-05 14:06:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563652",
- "username": "threeAndTwo",
- "fullName": "kailizhang (threeAndTwo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563652/medium/fe7cf56d7807101da10f0951c9c36b48.jpg",
- "joined": "2021-02-24 03:51:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568310",
- "username": "robert.sokic",
- "fullName": "Robert Sokic (robert.sokic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568310/medium/a49b0489bfcb2c7698c19e57fc1f0621.jpg",
- "joined": "2021-01-08 12:20:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561764",
- "username": "Jonathanzy",
- "fullName": "Jonathanzy",
- "avatarUrl": "https://www.gravatar.com/avatar/04e602b47b697cc5702ec8e469368d9c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 02:20:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14559932",
- "username": "emanu.ti",
- "fullName": "Emmanuel de Carvalho Garcia (emanu.ti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14559932/medium/b031ab210c0b9edc01dcea8f4825f8ad.png",
- "joined": "2021-01-02 16:44:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560082",
- "username": "myshd11",
- "fullName": "서현동 (myshd11)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560082/medium/6d8d9dcff6308ceb09ff44bf0b6d11f3.jpg",
- "joined": "2021-01-02 19:34:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560192",
- "username": "Mistra",
- "fullName": "Giulio M. (Mistra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560192/medium/4ec7e927ebc53f584831f621c9cdf99b.png",
- "joined": "2021-01-02 21:36:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560234",
- "username": "edd34",
- "fullName": "Eddine OMAR (edd34)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560234/medium/0534091c65c2a4c5949ac664e467447a.png",
- "joined": "2021-01-02 22:24:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560410",
- "username": "xadaley17",
- "fullName": "Bl9kyla (xadaley17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560410/medium/ddad66517a1efc282d33f1ffde8bc4ea.png",
- "joined": "2021-01-03 03:06:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560600",
- "username": "Vraj142",
- "fullName": "Vraj142",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560600/medium/4b643d6b30d2a8a6161cf5c52c46fc20.png",
- "joined": "2021-01-03 06:55:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560930",
- "username": "ariosto.ponterio",
- "fullName": "Ariosto Ponterio (ariosto.ponterio)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14560930/medium/4e55904d467702daf3ee6b7021afd8cc.png",
- "joined": "2021-01-03 11:13:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14560986",
- "username": "KingKitN",
- "fullName": "KingKitN",
- "avatarUrl": "https://www.gravatar.com/avatar/a1692002b50c4325f6e0d586048ce1ec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 11:51:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561108",
- "username": "gokhan.calt",
- "fullName": "Gökhan Çalt (gokhan.calt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561108/medium/ee7224baf12d2f3de7c5793fd15248cf.jpeg",
- "joined": "2021-01-03 13:41:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561182",
- "username": "evrencan",
- "fullName": "Evren Can (evrencan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561182/medium/d14fd94226b3fa8b4e5027c38adf3788.jpeg",
- "joined": "2021-01-03 14:42:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561238",
- "username": "DrafT26",
- "fullName": "DrafT26",
- "avatarUrl": "https://www.gravatar.com/avatar/aa65dde8ca0be7c9c6399403f732a70a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-03 15:35:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561650",
- "username": "jaekiki",
- "fullName": "Jaekee Lee (jaekiki)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14561650/medium/ece557cd177c2d281c0b048f03d53102.jpg",
- "joined": "2021-01-03 23:42:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14561936",
- "username": "althamir1",
- "fullName": "althamir1",
- "avatarUrl": "https://www.gravatar.com/avatar/2e86827e2244fe534906ea0b08a49a58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 05:31:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563624",
- "username": "lucasbalieiro",
- "fullName": "Lucas Balieiro (lucasbalieiro)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563624/medium/71d6efac2487357d12cdc6723d14facd.jpeg",
- "joined": "2021-01-05 07:52:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562154",
- "username": "nahatnahat",
- "fullName": "nahatnahat",
- "avatarUrl": "https://www.gravatar.com/avatar/381e1f7a6be0beeafbbf98d7d6b87b29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 13:52:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562222",
- "username": "Vinterlich",
- "fullName": "Sebastian Voina-Winter (Vinterlich)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562222/medium/ee18e8630ea2f2287f2dcb7d0d1419ea.jpeg",
- "joined": "2021-01-04 08:39:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562258",
- "username": "amiciandrea98",
- "fullName": "Andrea amici (amiciandrea98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562258/medium/6f0f37d30bbcca619be0cc2c4a7822b2.jpg",
- "joined": "2021-01-04 08:59:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562420",
- "username": "TunahanMurat",
- "fullName": "Tunahan Murat (TunahanMurat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562420/medium/1ada228f288ba76ea5984273822e32bc.jpeg",
- "joined": "2021-01-04 11:02:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562496",
- "username": "Jesus_Vallejo",
- "fullName": "Jesus Vallejo (Jesus_Vallejo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562496/medium/ca413111b2a571185f9f0fe9d11a0e08.jpeg",
- "joined": "2021-01-04 11:47:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562612",
- "username": "Arminmoradi",
- "fullName": "Arminmoradi82 (Arminmoradi)",
- "avatarUrl": "https://www.gravatar.com/avatar/5d573f037f2c3db85b73720a8a86b777?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 13:25:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562648",
- "username": "Secozzi",
- "fullName": "Folke Ishii (Secozzi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14562648/medium/d3df1bcfe4433e62dae6ece380be6503.jpeg",
- "joined": "2021-01-05 18:11:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14562818",
- "username": "katerina510",
- "fullName": "katerina510",
- "avatarUrl": "https://www.gravatar.com/avatar/48755dfcb583a527c823d95498281bbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 16:28:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563036",
- "username": "terasum",
- "fullName": "terasum",
- "avatarUrl": "https://www.gravatar.com/avatar/987a64d0130d1092613c7679a1eeb30c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 21:15:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563048",
- "username": "gitano.santos20",
- "fullName": "gitano.santos20",
- "avatarUrl": "https://www.gravatar.com/avatar/20537f65e574d3e578c13e0ef5a29603?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-04 21:24:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563266",
- "username": "makcimmc89",
- "fullName": "Максим Смирнов (makcimmc89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563266/medium/25df61604814781b59d0be9372dc75de.jpg",
- "joined": "2021-01-05 01:34:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563302",
- "username": "mwsua77",
- "fullName": "스윽 (mwsua77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563302/medium/7b36db3328f069314ee8db9534389623.jpeg",
- "joined": "2021-01-05 02:23:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14563490",
- "username": "GPorlando",
- "fullName": "Orlando García Parra (GPorlando)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14563490/medium/c606f7aa932c65e87021cb8aa275b579.jpg",
- "joined": "2021-04-18 18:22:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14567754",
- "username": "TiXO",
- "fullName": "TiXO",
- "avatarUrl": "https://www.gravatar.com/avatar/72a88e60f64a918f25afd886483584f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 18:27:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568328",
- "username": "tn_q2",
- "fullName": "tn_q2",
- "avatarUrl": "https://www.gravatar.com/avatar/dde07d45133db02c1192b8b2a972a225?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 12:52:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577616",
- "username": "valak",
- "fullName": "valak",
- "avatarUrl": "https://www.gravatar.com/avatar/a293534db9ef2e4f4d0d27dcca2cccac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 20:14:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576034",
- "username": "Cryptocoins333",
- "fullName": "Cryptocoins333",
- "avatarUrl": "https://www.gravatar.com/avatar/dcd887ed90526ab29769d7c9d4e2a902?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 19:26:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573716",
- "username": "abdoulaye77124",
- "fullName": "abdoulaye diallo (abdoulaye77124)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573716/medium/3f85f9842e486a6773ec5351e1878ece.jpg",
- "joined": "2021-01-12 08:00:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14574084",
- "username": "Diegoooo3",
- "fullName": "Diegoooo3",
- "avatarUrl": "https://www.gravatar.com/avatar/a26407b9ef214ec82b6675337f0deb90?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-12 12:51:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14574342",
- "username": "ahmetucar973",
- "fullName": "Ahmet M. (ahmetucar973)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14574342/medium/87b119554fb2c3635cc240d77e9b711c.jpeg",
- "joined": "2021-01-12 16:31:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14574530",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/12572d2d29eaf4edd7bca9265c7fb7bd?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 14:57:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14574648",
- "username": "aveurora",
- "fullName": "eresytter (aveurora)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14574648/medium/d82aff1821b0583f8fe4673a272d2ee7.png",
- "joined": "2021-01-12 23:24:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575216",
- "username": "JulsKawa",
- "fullName": "JulsKawa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575216/medium/445f76865b9c16e571577e5eb7ee6dc8.png",
- "joined": "2021-01-13 08:36:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575390",
- "username": "mdedeu",
- "fullName": "mdedeu",
- "avatarUrl": "https://www.gravatar.com/avatar/71cf96d6e9c3efaa1c23414185df79fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 10:24:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575508",
- "username": "portovino881",
- "fullName": "portovino881",
- "avatarUrl": "https://www.gravatar.com/avatar/c98b81402cb632310a58924819bf2136?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 11:46:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575684",
- "username": "belov.rs.",
- "fullName": "Роман Белов (belov.rs.)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575684/medium/1fae5fd475caf183043bd45154a4e378.jpeg",
- "joined": "2021-01-13 13:58:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575762",
- "username": "4mfetamin",
- "fullName": "4mfetamin",
- "avatarUrl": "https://www.gravatar.com/avatar/9df8a46a49e1f7123f659ecaf2208430?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 14:32:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575936",
- "username": "Mhmtysl",
- "fullName": "Mhmtysl",
- "avatarUrl": "https://www.gravatar.com/avatar/56c5cf02c434c87da45328022a69eecc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 17:03:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14575966",
- "username": "wackerow",
- "fullName": "Paul Wackerow (wackerow)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575966/medium/a0e229e923c0fe196a564f0289da3ec3.png",
- "joined": "2021-01-13 17:40:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576042",
- "username": "k0999",
- "fullName": "k0999",
- "avatarUrl": "https://www.gravatar.com/avatar/86302fe2653844d47c617ef003415762?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-13 19:36:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573360",
- "username": "lipan940414",
- "fullName": "Lee Pine (lipan940414)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573360/medium/4f14c291cef5a08b58eb3da1ccfd83fe.jpg",
- "joined": "2021-01-12 02:48:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576056",
- "username": "inguskartins4",
- "fullName": "Ingus Kartins (inguskartins4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576056/medium/af752a069a5ce0e106e438f953c9bb0f.jpg",
- "joined": "2021-01-13 20:17:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576088",
- "username": "shivanshu4755",
- "fullName": "Shivanshu Mishra (shivanshu4755)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576088/medium/16fdde265fa36b6f9a1be9712e83d1d9.jpeg",
- "joined": "2021-01-13 20:36:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576444",
- "username": "jemigard",
- "fullName": "Максим Якимашко (jemigard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576444/medium/374c93642ab332f1a63442f67d0fb2fe.jpg",
- "joined": "2021-01-14 04:01:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576524",
- "username": "Behzz",
- "fullName": "Behzz",
- "avatarUrl": "https://www.gravatar.com/avatar/3a1ab24c7c6200d02d06b1b003756f81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 05:10:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576728",
- "username": "celeste.roberto",
- "fullName": "Roberto Celeste (celeste.roberto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14576728/medium/c8b5a113ef9b9fa558c05ef471a182d2.png",
- "joined": "2021-01-14 07:48:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576776",
- "username": "gong22",
- "fullName": "gong22",
- "avatarUrl": "https://www.gravatar.com/avatar/7c5487ead66acb9d9701e5f40a0bf97b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 08:22:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576790",
- "username": "Flipote",
- "fullName": "Flipote",
- "avatarUrl": "https://www.gravatar.com/avatar/0e10502f249ea0cc6992a5bde8c62d59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 08:48:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14576810",
- "username": "MaximeBtn",
- "fullName": "MaximeBtn",
- "avatarUrl": "https://www.gravatar.com/avatar/26dd6c4e6b4a9a5ac84abc1689df57ac?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-14 08:50:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577218",
- "username": "RahaJS",
- "fullName": "Рахымжан Серикбаев (RahaJS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577218/medium/b86341ba8c1fc12f8e42d72f07aa4c52.jpeg",
- "joined": "2021-01-14 13:15:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577256",
- "username": "chem.imp",
- "fullName": "Chem (chem.imp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577256/medium/a0d54ab2947a76ac750b32aab4ad324c.jpeg",
- "joined": "2021-01-14 14:10:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577278",
- "username": "ELR0ND",
- "fullName": "ELR0ND",
- "avatarUrl": "https://www.gravatar.com/avatar/d08e656b486b766ed910e31fbc9a1846?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-18 14:23:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14577448",
- "username": "germanllop",
- "fullName": "German Llop (germanllop)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14577448/medium/353197ad36c8b759451426c2968aa829.jpeg",
- "joined": "2021-07-19 19:15:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573438",
- "username": "icicek",
- "fullName": "ilhan_cicek (icicek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573438/medium/c1f9bbf4366cec061f2f0a203c6e6af5.jpg",
- "joined": "2021-01-12 03:54:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14573170",
- "username": "Dany0805",
- "fullName": "Dany0805",
- "avatarUrl": "https://www.gravatar.com/avatar/61b38770cff21827d7c8cb489a689136?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 22:30:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568334",
- "username": "norhorn",
- "fullName": "george kitsoukakis (norhorn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/eb41460b41717d2eb2d49964b63c7c0d.jpeg",
- "joined": "2021-01-14 01:35:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 106
- },
- {
- "user": {
- "id": "14570934",
- "username": "emrekurt713",
- "fullName": "Emre Kurt (emrekurt713)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570934/medium/a0723a0b910f0080d55afbc1c234a8ec.jpg",
- "joined": "2021-01-10 10:58:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568780",
- "username": "STEVEN922",
- "fullName": "STEVEN922",
- "avatarUrl": "https://www.gravatar.com/avatar/4bfe4315f65a8bf0720c2e6601e8c5b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-08 20:27:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568946",
- "username": "RockyJ",
- "fullName": "Rocky (RockyJ)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568946/medium/c0d702a99ef9bdd2a9498d25255e2efd.jpeg",
- "joined": "2021-01-11 11:54:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14568988",
- "username": "Emanuele.Migliazzo",
- "fullName": "Emanuele.Migliazzo",
- "avatarUrl": "https://www.gravatar.com/avatar/19e499fecfc2110fa41d5f9c6cca5b09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 01:36:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569018",
- "username": "zfrtmz89",
- "fullName": "Zafer Temiz (zfrtmz89)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569018/medium/70435bca8b3029b694e77e3af1de845c.jpeg",
- "joined": "2021-01-09 02:10:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569100",
- "username": "Honestyisall",
- "fullName": "Honestyisall",
- "avatarUrl": "https://www.gravatar.com/avatar/5242aa65afb9ad7e4abc8fb91c665ce9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 03:52:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569424",
- "username": "nikolajanke",
- "fullName": "Nikola Jankovic (nikolajanke)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569424/medium/ae78764c40ae6a2b22cbd5b83e7a8bac.jpeg",
- "joined": "2021-01-09 09:42:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569670",
- "username": "highquark",
- "fullName": "highquark",
- "avatarUrl": "https://www.gravatar.com/avatar/97f57994e172f22ea45f4545b6946ea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 12:32:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14569706",
- "username": "suTheodor",
- "fullName": "Matteo Cardillo (suTheodor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14569706/medium/0339b63213a8ab33bb6d46442a0f8368.png",
- "joined": "2021-01-09 13:06:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14570122",
- "username": "omraidav",
- "fullName": "David Omrai (omraidav)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570122/medium/dc6f25765906f624c1e434839c08b03a.jpeg",
- "joined": "2021-01-09 20:53:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14570128",
- "username": "mingxvsky",
- "fullName": "mingxvsky",
- "avatarUrl": "https://www.gravatar.com/avatar/4303a7b94aeb60e8dd6a9d428cec14f6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-09 20:58:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14570620",
- "username": "holger_li",
- "fullName": "holger_li",
- "avatarUrl": "https://www.gravatar.com/avatar/f1afc244875a9ff6b180fca00e89e01c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 07:00:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 32,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14570838",
- "username": "aktugyilmaz",
- "fullName": "Aktuğ Yılmaz (aktugyilmaz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14570838/medium/ab4609990da7910d87caca2adbbd7854.jpeg",
- "joined": "2021-01-10 10:00:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571296",
- "username": "JurJr",
- "fullName": "Jurandi Novais Júnior (JurJr)",
- "avatarUrl": "https://www.gravatar.com/avatar/761c088f9674200e9b8066e16c79ca5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 15:36:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14572568",
- "username": "costablas",
- "fullName": "Costantino De Blasiis (costablas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572568/medium/3cbbfc1e2665ea1113e46481e65a3cb8.jpeg",
- "joined": "2021-01-11 11:36:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571354",
- "username": "Bossbaby",
- "fullName": "Bossbaby",
- "avatarUrl": "https://www.gravatar.com/avatar/17ff6d3556f5249d73b9857273f5becf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-10 16:31:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571572",
- "username": "abogado.medinarobles",
- "fullName": "Álvaro Medina Robles (abogado.medinarobles)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571572/medium/ffe77276894cdd89ed93105c727e2443.jpeg",
- "joined": "2021-01-10 21:03:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571640",
- "username": "coldplay126",
- "fullName": "KS L (coldplay126)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571640/medium/8b5a324ad49602b1c0da1b75ee45af6a.jpeg",
- "joined": "2021-01-10 22:11:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571728",
- "username": "rivaldosetiawan135",
- "fullName": "R Samudra arc (rivaldosetiawan135)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571728/medium/eba3c27436fd6ea7ccd24667f5c6bead.jpeg",
- "joined": "2021-01-11 00:17:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571740",
- "username": "DeFalT_910",
- "fullName": "DeFalT_910",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14571740/medium/b9399646973ad106a1c00dfbc772b708.jpg",
- "joined": "2021-01-11 00:36:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14571762",
- "username": "pkladaline",
- "fullName": "pkladaline",
- "avatarUrl": "https://www.gravatar.com/avatar/9134de365dcdcab411192965a29515f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 01:17:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572026",
- "username": "Lurdespons",
- "fullName": "Lurdespons",
- "avatarUrl": "https://www.gravatar.com/avatar/070122b85e82c3b6bcc63ab11eb0c46b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 04:36:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572078",
- "username": "sarbaev3377",
- "fullName": "Дмитрий марганца (sarbaev3377)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572078/medium/e1357c87441140fe32c7e02441a03e1d.jpeg",
- "joined": "2021-01-11 05:17:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572090",
- "username": "yosef.morris",
- "fullName": "Yosef Morris (yosef.morris)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572090/medium/70373c34e75730078decb52811193902.jpeg",
- "joined": "2021-01-11 05:28:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572104",
- "username": "unoreg1",
- "fullName": "unoreg1",
- "avatarUrl": "https://www.gravatar.com/avatar/aba0180480f2f8c0f00a6fa110a9949c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-11 06:18:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14572258",
- "username": "trimegistra",
- "fullName": "MAR TRIMEGISTRA (trimegistra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572258/medium/b0e967b555a190ecb3bf0045ffc8deed.jpeg",
- "joined": "2021-01-11 07:47:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572278",
- "username": "rarar13524",
- "fullName": "Gaming with XRamyX (rarar13524)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572278/medium/2dd70d77260fb974186e5a1d6864b830.jpg",
- "joined": "2021-01-11 07:59:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14572502",
- "username": "Little_UY_Scuti",
- "fullName": "Little_UY_Scuti",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14572502/medium/148d3f5d928a6f4954f004570812debf.jpg",
- "joined": "2021-01-11 10:50:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600656",
- "username": "0xl",
- "fullName": "0xl",
- "avatarUrl": "https://www.gravatar.com/avatar/b82b7f4ff4cd75ce06bd2eb38b0ac9cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-29 17:07:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14600994",
- "username": "SotJJou",
- "fullName": "SotJJou",
- "avatarUrl": "https://www.gravatar.com/avatar/bd97e5a858fd2d68cfc078f8d9c0a95f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 01:24:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638362",
- "username": "mystab",
- "fullName": "mystab",
- "avatarUrl": "https://www.gravatar.com/avatar/9400dad4b207a0c24821e25142549220?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 12:49:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627372",
- "username": "bleucode",
- "fullName": "Maia (bleucode)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627372/medium/1cce0811394fa677eb1059b92da32b48.jpeg",
- "joined": "2021-02-16 15:12:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14624814",
- "username": "awongvasu",
- "fullName": "awongvasu",
- "avatarUrl": "https://www.gravatar.com/avatar/5b84e8459184e64e8501f11e370a6b52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 02:57:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14624926",
- "username": "LQS_Hindi_linguist",
- "fullName": "LQS_Hindi_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/283bf7a87124cfc5bc5d2021783f463d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 03:24:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625098",
- "username": "sasha7rasha",
- "fullName": "Alex SPD (sasha7rasha)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625098/medium/edf9ab59bd259b580368ab804b48cf8a.gif",
- "joined": "2021-02-15 05:58:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625120",
- "username": "jdbrh16",
- "fullName": "jdbrh16",
- "avatarUrl": "https://www.gravatar.com/avatar/3a91cf276217076de4f40a29a408a951?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 08:59:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625200",
- "username": "preh",
- "fullName": "preh",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625200/medium/019e9dcec2f0c3c2fd90ff0316e3f4f0.jpg",
- "joined": "2021-02-15 07:19:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625410",
- "username": "grcouto",
- "fullName": "grcouto",
- "avatarUrl": "https://www.gravatar.com/avatar/76c3b43f677e89f743cc65f676c7db3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 10:03:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625440",
- "username": "xoxolchuk1313",
- "fullName": "Антон Дума (xoxolchuk1313)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625440/medium/5da34b9b57561beafbe83f2134fb0b57.jpeg",
- "joined": "2021-02-15 10:16:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625604",
- "username": "gmmabin",
- "fullName": "Bin Ma (gmmabin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14625604/medium/58e5c243bb7de920fbccc96e3ae3f92f.jpg",
- "joined": "2021-02-15 12:46:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14625850",
- "username": "voluntario.crowdin",
- "fullName": "voluntario.crowdin",
- "avatarUrl": "https://www.gravatar.com/avatar/d3ebe01a94716cae69fbb51684d26a98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-15 16:54:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14626816",
- "username": "XxMarlaxXo",
- "fullName": "Marla (XxMarlaxXo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14626816/medium/4aaf12d08638ef2fc77b3dfa415e0085.jpeg",
- "joined": "2021-02-16 09:49:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14626994",
- "username": "Ggilb3rt",
- "fullName": "Ggilb3rt",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14626994/medium/a2e1466127b12576ff9890b35189de58.png",
- "joined": "2021-02-16 11:29:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627276",
- "username": "Iva12",
- "fullName": "Iva12",
- "avatarUrl": "https://www.gravatar.com/avatar/067a50157fc8bc03d96d1ffca3e563e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-16 14:33:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627648",
- "username": "morwena",
- "fullName": "morwena",
- "avatarUrl": "https://www.gravatar.com/avatar/88db9f591e6cb69dff56fdbbb76ccb48?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-16 17:33:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623848",
- "username": "mariocachapuz",
- "fullName": "Mario Cachapuz (mariocachapuz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623848/medium/ea0d1ae48ac6dba6f2a5c70a944f7e45.png",
- "joined": "2021-02-14 07:36:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627652",
- "username": "Faielle03",
- "fullName": "Faielle03",
- "avatarUrl": "https://www.gravatar.com/avatar/e422d2a1dc994a58fb34b2a26b8d630b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-16 17:21:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627716",
- "username": "alessioperinilu",
- "fullName": "Alessio (alessioperinilu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627716/medium/735445e9c72bbd0f33671af2fcf6e133.jpeg",
- "joined": "2021-02-16 19:06:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627782",
- "username": "nancyjlau",
- "fullName": "nancyjlau",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627782/medium/d01b02b82ab8803dcab92213bff03868.png",
- "joined": "2021-02-16 20:54:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627852",
- "username": "lybsanradnaev1979",
- "fullName": "Лубсан Раднаев (lybsanradnaev1979)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627852/medium/a50107a5ee39a0aa838bd5dd59998fb6.jpeg",
- "joined": "2021-02-17 00:18:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14627914",
- "username": "shane.hung",
- "fullName": "Shane Hung (shane.hung)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14627914/medium/3417db7761d1d00691eb3200883f254c.jpg",
- "joined": "2021-02-17 00:45:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14628426",
- "username": "Nif0",
- "fullName": "Nif0",
- "avatarUrl": "https://www.gravatar.com/avatar/87947ee2deff057405bb3690b537ba24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 07:44:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 18,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14628636",
- "username": "Jayeye3",
- "fullName": "Jayeye3",
- "avatarUrl": "https://www.gravatar.com/avatar/8fbbb887b5ada7e0c5658161f2a9ebf7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 10:09:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629200",
- "username": "rsbyar01",
- "fullName": "rsbyar01",
- "avatarUrl": "https://www.gravatar.com/avatar/9a60bc8a5a2863b093206bb2209a1571?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 18:45:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629216",
- "username": "KyraInLove",
- "fullName": "KyraInLove",
- "avatarUrl": "https://www.gravatar.com/avatar/e7694c070365ac8ef2ef7574145a1629?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-17 19:21:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629846",
- "username": "HarryBO88",
- "fullName": "Peter Kleister (HarryBO88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14629846/medium/0ebb6a878dd530b5d781f1477c949cda.jpeg",
- "joined": "2021-02-18 07:33:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14629988",
- "username": "liam.comma",
- "fullName": "Liam Harris (liam.comma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14629988/medium/861e1c28e0f96300796c9d6feb1cfb01.jpeg",
- "joined": "2021-02-18 08:49:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630042",
- "username": "ZPS",
- "fullName": "zech1999 (ZPS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630042/medium/f6035990921b9ccc28266db5f950cbca.png",
- "joined": "2021-02-18 09:25:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14624552",
- "username": "noxigniter",
- "fullName": "Pyotr Romanov (noxigniter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14624552/medium/19431a499f1f1835d67a2704d2a01aaf.png",
- "joined": "2021-02-14 19:40:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623800",
- "username": "ktachiya",
- "fullName": "Ken Tachiya (ktachiya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623800/medium/905b0878ef4d470f2ea237044f070df7.jpeg",
- "joined": "2021-02-14 07:06:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14630090",
- "username": "milicang72",
- "fullName": "milicang72",
- "avatarUrl": "https://www.gravatar.com/avatar/a132ac785273b563acae7566483769cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-18 09:54:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621976",
- "username": "luiz.amaral.1704",
- "fullName": "Luiz Henrique Amaral Costa (luiz.amaral.1704)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621976/medium/c9328665b73963f5c7efe57f9872c2ba.jpeg",
- "joined": "2021-02-12 18:08:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620554",
- "username": "aliosman1988bg",
- "fullName": "Ali Osman (aliosman1988bg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620554/medium/2815dc5a4e4a8c6a4c7032e12798311d.jpg",
- "joined": "2021-02-11 20:09:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620620",
- "username": "idecorehk",
- "fullName": "idecore service (idecorehk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620620/medium/5749b64d2107c996a9b3a303cf720585.jpg",
- "joined": "2021-02-11 21:26:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620726",
- "username": "ArturVargas",
- "fullName": "ArturVargas",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620726/medium/fd339970dd740148bafe87bf7ce9f897.jpeg",
- "joined": "2021-02-12 00:14:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620810",
- "username": "AlekseySmiian",
- "fullName": "AlekseySmiian",
- "avatarUrl": "https://www.gravatar.com/avatar/bca9046311c7beb695ef7d9827a93064?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 02:11:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621154",
- "username": "farnfarn",
- "fullName": "Francisco Bacete Menchón (farnfarn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621154/medium/a58730d4f97aa60c31331e2a2de6aa35.jpeg",
- "joined": "2021-02-12 07:27:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621330",
- "username": "DeDe2424--",
- "fullName": "DeDe2424--",
- "avatarUrl": "https://www.gravatar.com/avatar/de0e3fcc6008b6536f740e507888ce04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 08:46:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621436",
- "username": "MOUBINe",
- "fullName": "MOUBINe",
- "avatarUrl": "https://www.gravatar.com/avatar/d6f83d31d15921b36852efe8ff2077a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 10:14:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621526",
- "username": "Y495shiri",
- "fullName": "Y495shiri",
- "avatarUrl": "https://www.gravatar.com/avatar/b003dc0fec88ed44935f8a5f16b967cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 11:26:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621656",
- "username": "Anna-Sophie",
- "fullName": "Anna-Sophie",
- "avatarUrl": "https://www.gravatar.com/avatar/020cdcc2f8b97e0f256c812ee74bb17e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 13:19:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621724",
- "username": "CryptoChica",
- "fullName": "CryptoChica",
- "avatarUrl": "https://www.gravatar.com/avatar/c3d820137cfc47d36978dfccf3b8fafb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 13:48:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621776",
- "username": "fatmaladwi540",
- "fullName": "Dwi Fatmala (fatmaladwi540)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14621776/medium/902dabf9ccab0ee2726f67ca5d7b810f.jpg",
- "joined": "2021-02-13 11:19:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14621914",
- "username": "MarcelMauss",
- "fullName": "MarcelMauss",
- "avatarUrl": "https://www.gravatar.com/avatar/623f65ebfb800b7f7d8345dd384995ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-12 16:41:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622230",
- "username": "rustik.zero94",
- "fullName": "Рустик Базаров (rustik.zero94)",
- "avatarUrl": "https://www.gravatar.com/avatar/1fc615de9f86f6972ad75abfe489ed67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 00:37:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623758",
- "username": "Vinaxe",
- "fullName": "Vinaxe",
- "avatarUrl": "https://www.gravatar.com/avatar/b499429ae0ffe9d4932ffb2ab0945bf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-14 06:01:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622256",
- "username": "dema.genezis1992",
- "fullName": "Furby (dema.genezis1992)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14622256/medium/d34982dbdd712875fb2132f342ff381b.jpeg",
- "joined": "2021-02-13 01:21:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622304",
- "username": "HadesCoin",
- "fullName": "HadesCoin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14622304/medium/15b9b8b3e7294e0b6d1ab95a9664bcb5.png",
- "joined": "2021-02-13 02:22:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622328",
- "username": "Onur.dogruyoll",
- "fullName": "Onur.dogruyoll",
- "avatarUrl": "https://www.gravatar.com/avatar/a086677a3cacd34df1dec66b27c81c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 02:53:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622360",
- "username": "alperfindik",
- "fullName": "alperfindik",
- "avatarUrl": "https://www.gravatar.com/avatar/b4b68015c4d14ead63ad0124f7141686?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 03:28:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14622478",
- "username": "nizamdelibass",
- "fullName": "nizamdelibass",
- "avatarUrl": "https://www.gravatar.com/avatar/46d50291a93a590c80d14ffdf62e39f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 05:29:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623006",
- "username": "nuke_stan",
- "fullName": "nuke_stan",
- "avatarUrl": "https://www.gravatar.com/avatar/605676bbe3582a9f48a17f150080aa33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 13:01:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623014",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/fb9c9edaa86f5408396f7cce028a9c54?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 13:03:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623132",
- "username": "chaoyu1015",
- "fullName": "韩超宇 (chaoyu1015)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623132/medium/c323f4ca9d9fab20b6c89d18a7037e89.jpg",
- "joined": "2021-02-16 01:55:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623146",
- "username": "motube2030",
- "fullName": "Mo Tube (motube2030)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623146/medium/7efc74358ea2f542a1bb2faec0dee427.jpg",
- "joined": "2021-02-13 15:43:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623194",
- "username": "Arapuan",
- "fullName": "Arapuan Celestino (Arapuan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623194/medium/d8d7edb7af635f68efa5791cee17aa63.png",
- "joined": "2021-02-13 16:25:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623346",
- "username": "babayori1",
- "fullName": "babayori1",
- "avatarUrl": "https://www.gravatar.com/avatar/21c859b297929b547ab9c4059045328b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-13 20:24:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14623638",
- "username": "iuraraikov",
- "fullName": "юра райков (iuraraikov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14623638/medium/1e5d0c8deee4e28779402ffc1308a55c.jpg",
- "joined": "2021-02-14 03:49:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630080",
- "username": "box-zhang",
- "fullName": "Box (box-zhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630080/medium/72759cd643262315e71e5154dd8fdd22.jpeg",
- "joined": "2021-02-18 09:53:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630396",
- "username": "Minsun",
- "fullName": "Minsun",
- "avatarUrl": "https://www.gravatar.com/avatar/7a2f0f9a16c9c87ca2a438e189c72275?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-18 13:59:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620444",
- "username": "ChanHoiLam",
- "fullName": "ChanHoiLam",
- "avatarUrl": "https://www.gravatar.com/avatar/b65458c49743c5ea9875a791a2cc61c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 17:32:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636078",
- "username": "criscieco",
- "fullName": "Antonio Crisci (criscieco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636078/medium/59ac3ecefce015854a75f4967575da01.jpeg",
- "joined": "2021-02-22 08:41:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634606",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/2a25ef4e6179f642d2ff748a1616cd5f?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 11:30:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634672",
- "username": "devyfriend",
- "fullName": "devy friend (devyfriend)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634672/medium/2520a4958515a21c5f8868011e5a4e7d.jpeg",
- "joined": "2021-02-21 12:28:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634704",
- "username": "bespredel00",
- "fullName": "bespredel00",
- "avatarUrl": "https://www.gravatar.com/avatar/392560dd397a7b1b81c9cd50ab32736d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 13:03:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634768",
- "username": "FireTom",
- "fullName": "Thomas Riotte (FireTom)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634768/medium/ab495d03cf23779673a9c1101625106d.jpeg",
- "joined": "2021-02-21 13:45:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634932",
- "username": "s.alshoikan",
- "fullName": "s.alshoikan",
- "avatarUrl": "https://www.gravatar.com/avatar/1b5bb72d6bac4c9c9d6916f616eed676?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 16:15:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635054",
- "username": "GourmelonGaetan",
- "fullName": "Gaëtan Gourmelon (GourmelonGaetan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635054/medium/92dc7e601ce7911daafcfaecb875e0cd.jpeg",
- "joined": "2021-02-21 18:56:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635062",
- "username": "yuriphb86",
- "fullName": "Yuri Gomes Junior (yuriphb86)",
- "avatarUrl": "https://www.gravatar.com/avatar/de1969530688829cdebc1becf5ce685c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 18:57:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635270",
- "username": "alyssazh310",
- "fullName": "Alyssa Liu (alyssazh310)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635270/medium/4b8979d92b23fa60ddd18a446adc3f7f.jpeg",
- "joined": "2021-02-21 23:09:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635272",
- "username": "ksegovia",
- "fullName": "Kevin Segovia (ksegovia)",
- "avatarUrl": "https://www.gravatar.com/avatar/4528c1e428cddb86fda984a238265c87?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-21 23:05:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635576",
- "username": "FelipeBrotto",
- "fullName": "FelipeBrotto",
- "avatarUrl": "https://www.gravatar.com/avatar/663a3dedebba1ec04836b83e9d573b79?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 03:55:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635586",
- "username": "akkabd37",
- "fullName": "Abdurrahman Akkaş (akkabd37)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14635586/medium/784118f7d828f59b2933366f5b95e7fa.jpg",
- "joined": "2021-02-22 03:55:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14635876",
- "username": "spiegelei929",
- "fullName": "spiegelei929",
- "avatarUrl": "https://www.gravatar.com/avatar/8f409171f202337f6f9df2e9ae5729bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 06:49:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636106",
- "username": "Burhanb873",
- "fullName": "Burhanb873",
- "avatarUrl": "https://www.gravatar.com/avatar/98f77a3cad75c7d8e7c8cd969727ac13?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 09:02:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634192",
- "username": "longli20192015",
- "fullName": "Long Li (longli20192015)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634192/medium/8b947f8c0385ed0ebbed3f86905b9d04.jpg",
- "joined": "2021-02-21 07:08:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636118",
- "username": "frontedu",
- "fullName": "frontedu",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636118/medium/d3d3ec3fab34702c4b19674b06e1ddff.png",
- "joined": "2021-02-22 09:10:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636234",
- "username": "Dialditto",
- "fullName": "Dialditto",
- "avatarUrl": "https://www.gravatar.com/avatar/d02ad4e13334b048f5cc43ebddab859f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 09:52:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636326",
- "username": "alejandrocortez068",
- "fullName": "Joaquín Cortez (alejandrocortez068)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14636326/medium/d96e821e16ab99f66a28e9950273ed4f.jpeg",
- "joined": "2021-02-22 10:27:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14636794",
- "username": "Nignas64",
- "fullName": "Nignas64",
- "avatarUrl": "https://www.gravatar.com/avatar/d6cd15396d9abb89a4b493efb56ce160?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 17:59:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637046",
- "username": "CryptoHamilton",
- "fullName": "Anthony Albertorio (CryptoHamilton)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637046/medium/a9a1f4853292ee84465a8d90062f3b8f.jpg",
- "joined": "2021-02-22 22:23:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637114",
- "username": "banhao",
- "fullName": "banhao",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637114/medium/f44e6324ab1658ee0f92c0aebba814eb.png",
- "joined": "2021-02-22 23:18:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637148",
- "username": "Jaysonmaldonado",
- "fullName": "Jaysonmaldonado",
- "avatarUrl": "https://www.gravatar.com/avatar/0d40ebd0ce4ad8af705232af3ccc958e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-22 23:49:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637260",
- "username": "sulivancc",
- "fullName": "sulivan cc (sulivancc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14637260/medium/cc43ecd6859616ae7b8bd0a5525582ac.jpg",
- "joined": "2021-02-23 01:39:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14637662",
- "username": "T_Play",
- "fullName": "T_Play",
- "avatarUrl": "https://www.gravatar.com/avatar/f9d44ec38069769e515ad249045fd7a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 07:06:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638130",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/7f1073e93bab914b3740495679d214e8?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 10:38:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638212",
- "username": "Santi300798",
- "fullName": "Santi300798",
- "avatarUrl": "https://www.gravatar.com/avatar/f0d11e8352b0c12caab9da371447e21d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 11:26:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14638340",
- "username": "HokageSan78",
- "fullName": "HokageSan78",
- "avatarUrl": "https://www.gravatar.com/avatar/8ae409036cc6f41eca26d0f7b2d828c7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-23 12:37:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14634442",
- "username": "hina5633030331",
- "fullName": "水浦比奈子 (hina5633030331)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14634442/medium/0d51169805ff11c6ac971b077ce5d595.jpg",
- "joined": "2021-02-21 11:51:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633796",
- "username": "wnteam",
- "fullName": "Wahyu Kurniawan (wnteam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633796/medium/d64a4e4ace54716ed7e970f205c7e1a9.jpg",
- "joined": "2021-02-20 23:25:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630706",
- "username": "Amendez75",
- "fullName": "Amendez75",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630706/medium/988e8eef4a1356d0798f71d49827c3fa.jpeg",
- "joined": "2021-02-18 19:30:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632530",
- "username": "qqcdf",
- "fullName": "qqcdf",
- "avatarUrl": "https://www.gravatar.com/avatar/325ed382b117de8cd456207baf839b88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 00:55:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630742",
- "username": "cdxyz",
- "fullName": "cdxyz",
- "avatarUrl": "https://www.gravatar.com/avatar/3f394130a1f2bff9b32ac1e6f10f5278?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-18 20:06:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14630992",
- "username": "YeiOz",
- "fullName": "Yeison Ospino (YeiOz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14630992/medium/5b635093aa84e77f956aba430141b90b.jpeg",
- "joined": "2021-02-19 01:10:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "14631076",
- "username": "Kuthep",
- "fullName": "Kuthep",
- "avatarUrl": "https://www.gravatar.com/avatar/6bb2f5fe2b472535dabfe1454f4a591e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 02:25:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631192",
- "username": "rafael.yanase",
- "fullName": "Rafael Rezende (rafael.yanase)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631192/medium/543e6b0627ae51d46ab52d78181f46be.jpeg",
- "joined": "2021-02-19 04:19:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631218",
- "username": "MesteRobot",
- "fullName": "Hassan Doodiyan (MesteRobot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631218/medium/499382603dfcc6053e1c2f872742c39e.jpg",
- "joined": "2021-05-20 02:58:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631242",
- "username": "kasahiti",
- "fullName": "kasahiti",
- "avatarUrl": "https://www.gravatar.com/avatar/1108aa42304b44e1df76259f4f130ffd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 04:37:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631752",
- "username": "Paragunde358",
- "fullName": "Paragunde358",
- "avatarUrl": "https://www.gravatar.com/avatar/378e346fe499554a3b23c724ad757a53?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 14:59:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14631802",
- "username": "edgargrau",
- "fullName": "eDgar gRau (edgargrau)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg",
- "joined": "2021-02-19 11:18:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632120",
- "username": "jdasome",
- "fullName": "jdasome",
- "avatarUrl": "https://www.gravatar.com/avatar/b696f1191ac8495a72ff3ce9220ce922?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 15:27:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632172",
- "username": "NryxMusic",
- "fullName": "Nryx (NryxMusic)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632172/medium/9b192bb4cb67d5b37ba5c7d6d6a52880.png",
- "joined": "2021-02-19 16:31:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632296",
- "username": "ayoubbensouna",
- "fullName": "ayoubbensouna",
- "avatarUrl": "https://www.gravatar.com/avatar/535e22141a546bc3171ddf54f8e92b95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 19:11:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632436",
- "username": "dkoval",
- "fullName": "Dmytro Koval (dkoval)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632436/medium/99039f1fbb13f12187c9f08d10cbd50a.jpeg",
- "joined": "2021-02-20 00:50:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632568",
- "username": "VitalityVitaliy",
- "fullName": "VitalityVitaliy",
- "avatarUrl": "https://www.gravatar.com/avatar/95fa77fb97c4f179f34ee853aa4fb7da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 02:04:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633592",
- "username": "Jhosephecacau",
- "fullName": "Jhosephe Thierry Andrade Cacau (Jhosephecacau)",
- "avatarUrl": "https://www.gravatar.com/avatar/30ac51be326ff625a5665f5ddc9e162a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 18:18:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632574",
- "username": "Rorical",
- "fullName": "Rorical",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632574/medium/278721df71dd6a9e56c9479c2cd46cd4.png",
- "joined": "2021-10-26 09:43:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632696",
- "username": "bavlnkak",
- "fullName": "Kamil B (bavlnkak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632696/medium/0dc028817f3b2b64c39042c452f06fea.jpeg",
- "joined": "2021-02-20 04:27:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632796",
- "username": "good.studentsun",
- "fullName": "Rentao Sun (good.studentsun)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632796/medium/7a8ea0a073a1a5944a23bd39d02cdcb8.jpg",
- "joined": "2021-02-21 13:56:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14632856",
- "username": "dbwg25",
- "fullName": "유주니 (dbwg25)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632856/medium/e37be366099501cdcf48cf2c2e177be9.jpeg",
- "joined": "2021-02-20 06:42:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14632982",
- "username": "yangge26",
- "fullName": "ge yang (yangge26)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14632982/medium/e1fd4c2cdefd38753e276a2f8294de3e.jpg",
- "joined": "2021-02-20 08:33:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633050",
- "username": "Blackberries",
- "fullName": "Blackberries",
- "avatarUrl": "https://www.gravatar.com/avatar/ec3370ce45629b17c8e3d911d1085dee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 09:38:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633084",
- "username": "Neti",
- "fullName": "Neti",
- "avatarUrl": "https://www.gravatar.com/avatar/dcb22645f203ac0030389fe5e1c70d07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 10:14:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633114",
- "username": "gea1981",
- "fullName": "Giovanni Antonio Montalto (gea1981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633114/medium/7725c7f09d7fa1fb382faf515cef1508.png",
- "joined": "2021-02-20 10:41:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633214",
- "username": "deities822",
- "fullName": "Sen Yang (deities822)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633214/medium/f93964e553214494956759ae55266c8c.jpg",
- "joined": "2021-02-20 12:14:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633366",
- "username": "lucacalliera",
- "fullName": "Luca Calliera (lucacalliera)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633366/medium/3be7c6e7b402477ff8e7cb8fee4adca9.jpeg",
- "joined": "2021-02-20 14:32:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633512",
- "username": "Nicler",
- "fullName": "Nicler",
- "avatarUrl": "https://www.gravatar.com/avatar/70395fb4b1c77e4297ae9d5ff1191fab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 16:47:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633518",
- "username": "Osama90",
- "fullName": "Osama90",
- "avatarUrl": "https://www.gravatar.com/avatar/ce3f92cac979e40762e302262ae267e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 16:59:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14633532",
- "username": "1029829392",
- "fullName": "1029829392",
- "avatarUrl": "https://www.gravatar.com/avatar/35596dd55ec7bb888a80d4d46a6792c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-20 17:10:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620462",
- "username": "patelli",
- "fullName": "patelli",
- "avatarUrl": "https://www.gravatar.com/avatar/f3752fba59805c404fc5aa9400c3839c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 17:52:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620388",
- "username": "danielthewolf93",
- "fullName": "Daniel White (danielthewolf93)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14620388/medium/8d1224ce00c0cb29a835ea393629e5f9.jpeg",
- "joined": "2021-02-11 16:38:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601114",
- "username": "meou",
- "fullName": "b (meou)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601114/medium/066b37756d6393693b6d7f56794efa09.png",
- "joined": "2021-01-30 04:29:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609942",
- "username": "yuvi76",
- "fullName": "Yuvi (yuvi76)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609942/medium/fbeb5b19a1b160d02131066d3e1475ab.png",
- "joined": "2021-02-05 01:09:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607364",
- "username": "Guzzt",
- "fullName": "Guzzt",
- "avatarUrl": "https://www.gravatar.com/avatar/5cd3ee66cdf3d00cb3c1846147b367bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 08:41:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607372",
- "username": "anastazja.k1",
- "fullName": "anastazja.k1",
- "avatarUrl": "https://www.gravatar.com/avatar/a4a5576a5058fe4eac1a0807d3306072?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 15:28:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607686",
- "username": "bubabu123",
- "fullName": "bubabu123",
- "avatarUrl": "https://www.gravatar.com/avatar/1a22f730de18156a3b5f7e70312062a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 12:29:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608114",
- "username": "emmyz1",
- "fullName": "emmyz1",
- "avatarUrl": "https://www.gravatar.com/avatar/65f38d02b3c685c63041cb683df3e038?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 19:32:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608138",
- "username": "haova174",
- "fullName": "Катя Заплатина (haova174)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14608138/medium/2db0f129dcecbb03a51b775afa39e011.jpg",
- "joined": "2021-02-03 20:00:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608568",
- "username": "AntOnion",
- "fullName": "AntOnion",
- "avatarUrl": "https://www.gravatar.com/avatar/a3cf4b0e675f1b5adbc5cd70ef043f00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 03:41:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14608784",
- "username": "huzayozbek",
- "fullName": "huzayozbek",
- "avatarUrl": "https://www.gravatar.com/avatar/9f85c9f9719371398da415ee82871d40?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 06:10:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609078",
- "username": "Kaersaan",
- "fullName": "Kaersaan",
- "avatarUrl": "https://www.gravatar.com/avatar/af98b93ce5a2f27c56ed437a3c08902e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 11:04:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609240",
- "username": "tiagogontias",
- "fullName": "Tiago Martins Gontias (tiagogontias)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609240/medium/ae7855a4b988007f53cebde5456cccba.jpeg",
- "joined": "2021-02-04 14:37:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609342",
- "username": "rubt3",
- "fullName": "ruben Quintero (rubt3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609342/medium/32022ac26e5bc9a957fee2bc5015045e.jpeg",
- "joined": "2021-02-04 13:49:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609508",
- "username": "Irene1010",
- "fullName": "Irene1010",
- "avatarUrl": "https://www.gravatar.com/avatar/abeea5ddb053e902cfcb5b1882a77ef6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-04 15:41:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609932",
- "username": "lucashl1704",
- "fullName": "lucas henrique (lucashl1704)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609932/medium/19a902ec95e9d99b9c881c7168e7ee6c.jpeg",
- "joined": "2021-02-05 00:39:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14609984",
- "username": "r3ddm15t",
- "fullName": "Tony Scott (r3ddm15t)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14609984/medium/0d81a9e82f9e187b9cd2309c46ed1485.png",
- "joined": "2021-02-05 01:46:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607254",
- "username": "cezary-stroczynski",
- "fullName": "cezary-stroczynski",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14607254/medium/b033a54bafd521fb58eddc8dbc1344ce.png",
- "joined": "2021-02-03 07:42:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610064",
- "username": "varga.vinter",
- "fullName": "varga.vinter",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14610064/medium/a7f9e7dd43858c4d469d01bebc49d729.jpg",
- "joined": "2021-02-05 03:00:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610312",
- "username": "chala11",
- "fullName": "chala11",
- "avatarUrl": "https://www.gravatar.com/avatar/56f316068e07fac52a7c9af021aae1e2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 05:44:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610346",
- "username": "Ziomal",
- "fullName": "Ziomal",
- "avatarUrl": "https://www.gravatar.com/avatar/9ca5941ecdd04cc72dfc2cb4040b0866?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 05:58:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610528",
- "username": "AmithReddy",
- "fullName": "AmithReddy",
- "avatarUrl": "https://www.gravatar.com/avatar/f21848f96d67c39436938ff1955ac705?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 09:03:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610544",
- "username": "nikitaradov6",
- "fullName": "Никита Радов (nikitaradov6)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14610544/medium/57a67ad6b287e9ddd3fad4dec959665c.jpg",
- "joined": "2021-02-05 09:13:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14610974",
- "username": "siefca",
- "fullName": "Paweł Wilk (siefca)",
- "avatarUrl": "https://www.gravatar.com/avatar/09605c8aa8a94992806e6982bc79195f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 14:54:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611052",
- "username": "Diekks",
- "fullName": "Diekks",
- "avatarUrl": "https://www.gravatar.com/avatar/680c65be5ef0dfe0aad616a152a3a811?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 15:56:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611076",
- "username": "davidperalta",
- "fullName": "davidperalta",
- "avatarUrl": "https://www.gravatar.com/avatar/6e0955b79a0a568c37c090c87a76f1e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 16:31:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611082",
- "username": "ceylan1971",
- "fullName": "ceylan1971",
- "avatarUrl": "https://www.gravatar.com/avatar/bed117dd221dcd5d539b3f784ec2f47d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 16:33:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611130",
- "username": "PeterAdrian",
- "fullName": "Vlado Bošnjaković (PeterAdrian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14611130/medium/4620c8912d5e34aacdd0f143ecc13219.jpeg",
- "joined": "2021-02-05 17:35:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611168",
- "username": "Geoyde",
- "fullName": "Geoyde",
- "avatarUrl": "https://www.gravatar.com/avatar/5074db9a13a4136d26c6ea4ceb1a65a2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-05 18:12:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611278",
- "username": "mattgene",
- "fullName": "Yang, Chi En (mattgene)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14611278/medium/1826f3f39b402a0386b082945c71c7d1.jpeg",
- "joined": "2021-02-05 20:09:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14607322",
- "username": "14king2014",
- "fullName": "14king2014",
- "avatarUrl": "https://www.gravatar.com/avatar/889e2857f6d48d8bd8ec7aa3e6beeb6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-03 08:20:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606704",
- "username": "crisfresho",
- "fullName": "crisfresho",
- "avatarUrl": "https://www.gravatar.com/avatar/5b16948c1779239c85367de2c08c803c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-02 22:51:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611584",
- "username": "Alessandranicola",
- "fullName": "Alessandranicola",
- "avatarUrl": "https://www.gravatar.com/avatar/d7163af7fc33420783d7659e5bbe172b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 03:11:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602998",
- "username": "ravraw",
- "fullName": "ravraw",
- "avatarUrl": "https://www.gravatar.com/avatar/3d6db81005b3bc860e5ec87357925a55?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-31 12:37:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601184",
- "username": "Batia123",
- "fullName": "Batia123",
- "avatarUrl": "https://www.gravatar.com/avatar/ac5f403fe929105bd89ebe85e221140d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 05:41:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601388",
- "username": "DJ21861",
- "fullName": "DJ21861",
- "avatarUrl": "https://www.gravatar.com/avatar/707cb59855412723c0a640c41ea793b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 08:38:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601398",
- "username": "teknolojiohk",
- "fullName": "Teknoloji Oyun ve Haber (teknolojiohk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601398/medium/a5ae295c0bcf756cb94fda1cb805af5f.jpeg",
- "joined": "2021-01-30 08:55:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601410",
- "username": "Vietnamngaonghe",
- "fullName": "Love Language (Vietnamngaonghe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601410/medium/b762e442514123c4f34c7cfd8194b940.jpg",
- "joined": "2021-01-30 09:04:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601464",
- "username": "lk918655",
- "fullName": "lk918655",
- "avatarUrl": "https://www.gravatar.com/avatar/671b333099f3b58b036799bd46df07e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-30 09:44:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601520",
- "username": "tomekszafalowicz",
- "fullName": "tomek szafalowicz (tomekszafalowicz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601520/medium/56d33e183f798197d7879c56c1b8cbec.jpeg",
- "joined": "2021-01-30 10:21:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601556",
- "username": "lucas.claudiu",
- "fullName": "Claudiu Lucas (lucas.claudiu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601556/medium/4c77e661505b2e30c25574b9a4ec4e57.jpeg",
- "joined": "2021-01-30 10:41:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14601794",
- "username": "reinhold.puhr",
- "fullName": "Reinhold Puhr (reinhold.puhr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14601794/medium/7acb85a54ff8ea998e5446ddb67b0b2d.jpg",
- "joined": "2021-01-30 14:31:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602146",
- "username": "fquivera",
- "fullName": "Francisco Quivera (fquivera)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14602146/medium/538c7b90f653641c51d1b24d72f1ccfd.jpeg",
- "joined": "2021-01-30 21:43:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602366",
- "username": "suwirya",
- "fullName": "suwirya",
- "avatarUrl": "https://www.gravatar.com/avatar/43142dbff1f96fdb303b380b9621356b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-31 02:41:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602456",
- "username": "christian205198",
- "fullName": "christian205198",
- "avatarUrl": "https://www.gravatar.com/avatar/f814730bf6337483fdafed6fdbe2ab95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-01-31 04:17:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14602792",
- "username": "juandiez",
- "fullName": "Juan Alberto Díez (juandiez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14602792/medium/37b83c34da523339288e3f98e8bcb070.jpeg",
- "joined": "2021-01-31 09:53:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14603102",
- "username": "nadja220376",
- "fullName": "Георгий Кудрявцев (nadja220376)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14603102/medium/e4d0c5d95c113fc5d67d01da1d90a091.jpeg",
- "joined": "2021-01-31 14:12:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606596",
- "username": "shuaiwashadie",
- "fullName": "Zzzzzcx (shuaiwashadie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606596/medium/6b0438f1b742d8aa838a3e8dca5eb02f.jpeg",
- "joined": "2021-02-02 20:16:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14603560",
- "username": "1204079083",
- "fullName": "1204079083",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14603560/medium/b2490ce0ddf53194d18780699c095dd6.png",
- "joined": "2021-01-31 23:33:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14604346",
- "username": "mohameou",
- "fullName": "mohameou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604346/medium/5a2b46b25f20ff1aa61656a57ede9b30.jpeg",
- "joined": "2021-02-01 10:33:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14604672",
- "username": "Arthheo",
- "fullName": "Arthur SCH (Arthheo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604672/medium/f0f0b5f0b1512c443dc8d91cf1036c9a.jpeg",
- "joined": "2021-02-01 15:25:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14604868",
- "username": "ctx2012",
- "fullName": "Adam Adamowicz (ctx2012)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14604868/medium/c6b287b0f1d173faedce0806420fc57b.jpeg",
- "joined": "2021-02-01 17:49:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605104",
- "username": "jjk333ee",
- "fullName": "jjk333ee",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605104/medium/122373b13a047da95c74d1ac32ad9124.png",
- "joined": "2021-02-01 23:07:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605498",
- "username": "Diecinueve",
- "fullName": "Diecinueve",
- "avatarUrl": "https://www.gravatar.com/avatar/8e9d5aa7072964149454b5aac56094d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-02 05:29:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605612",
- "username": "lzag",
- "fullName": "Aleksey Zagumennyi (lzag)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605612/medium/c577fe2d125311c10b6411962a209def.jpeg",
- "joined": "2021-02-02 06:59:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605826",
- "username": "infinitedeathmaze",
- "fullName": "get free mazes (infinitedeathmaze)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605826/medium/ff2e2b6bad0c1dbc21efecfcfd4df16a.jpeg",
- "joined": "2021-02-02 09:19:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14605908",
- "username": "datsyk",
- "fullName": "Володимир Дацик (datsyk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14605908/medium/e9addc830e5cf287cd1fb145b40be05e.jpeg",
- "joined": "2021-02-02 10:04:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606028",
- "username": "Redii",
- "fullName": "David (Redii)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606028/medium/5e304c22276ea2aefbc6f8c816f0b750.jpeg",
- "joined": "2021-04-26 16:56:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606060",
- "username": "Ali.Dameh",
- "fullName": "ZatoRiiX (Ali.Dameh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606060/medium/74f176b33d73e054ac659b9c42c358bb.jpeg",
- "joined": "2021-02-02 11:33:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606376",
- "username": "l3gacyb3ta",
- "fullName": "l3gacyb3ta",
- "avatarUrl": "https://www.gravatar.com/avatar/c6d08d600ee9ef4a11d4820ea3df8473?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-02 15:53:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14606488",
- "username": "hassanehab2018",
- "fullName": "H.E Hassan (hassanehab2018)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14606488/medium/7676712cf75b2b16ebf6530ecd18d661.jpg",
- "joined": "2021-02-02 17:39:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611468",
- "username": "Tehuti33",
- "fullName": "Tehuti33",
- "avatarUrl": "https://www.gravatar.com/avatar/db888856d089757cc3b960eb1f7625bb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 00:31:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611700",
- "username": "sany69",
- "fullName": "sany69",
- "avatarUrl": "https://www.gravatar.com/avatar/10b084b724207d91bc0394826b9f19cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 05:23:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14620004",
- "username": "Goiasterraboa",
- "fullName": "Goiasterraboa",
- "avatarUrl": "https://www.gravatar.com/avatar/48bbb932aae2cd7b3f5ac90dd87af026?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 11:43:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618330",
- "username": "prosalife",
- "fullName": "Mikhail Krainov (prosalife)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618330/medium/777cd082c17d5d200d9f46724992378b.jpeg",
- "joined": "2021-02-10 09:31:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616204",
- "username": "xnscripter",
- "fullName": "Случайный Василий (xnscripter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616204/medium/342965f0f9c89dd68cd14a6d84dc2f89.jpeg",
- "joined": "2021-02-09 04:47:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616556",
- "username": "M8-Research",
- "fullName": "Maurice Hmr (M8-Research)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616556/medium/08dc4b444eeae3ffdb2c3f20533bdf85.png",
- "joined": "2021-02-09 08:44:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616616",
- "username": "Rykov7",
- "fullName": "Rykov7",
- "avatarUrl": "https://www.gravatar.com/avatar/12062dc199074f191507f6bf32998110?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 09:29:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617170",
- "username": "zemoreno",
- "fullName": "zemoreno",
- "avatarUrl": "https://www.gravatar.com/avatar/a80afb30dda4d2df512cb4ca992d56b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 15:47:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617412",
- "username": "basile.succeed",
- "fullName": "justreal succeed (basile.succeed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617412/medium/edd804c817d71f33ed7773ef5e254f7c.jpeg",
- "joined": "2021-02-09 19:38:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617430",
- "username": "codeater",
- "fullName": "codeater",
- "avatarUrl": "https://www.gravatar.com/avatar/034c6d5904c46d12abb3c8608db485ea?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 19:50:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617512",
- "username": "mumu-lhl",
- "fullName": "Lin Happy 666 (mumu-lhl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617512/medium/6918cd0fa9bd8bdd0988f89ec83b64b3.png",
- "joined": "2021-02-09 21:29:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617538",
- "username": "kinpatucom821",
- "fullName": "神垣徹 (kinpatucom821)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14617538/medium/94ef6e179ce2466820a8be176a23fe58.jpeg",
- "joined": "2021-02-09 21:45:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14617970",
- "username": "GabinF",
- "fullName": "GabinF",
- "avatarUrl": "https://www.gravatar.com/avatar/bd3f91f6748ff6c0e25ce47533346a6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-10 04:57:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618122",
- "username": "araripi",
- "fullName": "araripi",
- "avatarUrl": "https://www.gravatar.com/avatar/aa97df0f1bc994240b5faeb555d4203e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-10 19:43:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618130",
- "username": "tomengo18",
- "fullName": "tomengo18",
- "avatarUrl": "https://www.gravatar.com/avatar/7d0bcc43e2ff06f7f28bcc858aee99e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-10 06:56:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618190",
- "username": "tomekchada23",
- "fullName": "Wyrzykowski Wiktor (tomekchada23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618190/medium/81b551fadd1046247b7c39fb62834488.jpeg",
- "joined": "2021-02-10 07:53:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618526",
- "username": "amirreza.jamadi123",
- "fullName": "amirreza jamadi (amirreza.jamadi123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618526/medium/5aac4b3dbe9d850974f3ab3762200af0.jpeg",
- "joined": "2021-11-14 04:28:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616048",
- "username": "chenchi12345",
- "fullName": "chenchi12345",
- "avatarUrl": "https://www.gravatar.com/avatar/4354042aaddab1540b7a80ec2d710ca2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-09 02:55:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618756",
- "username": "janrene2002328",
- "fullName": "Janrene Wln (janrene2002328)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618756/medium/4cc00cd911711f36316c5468f69231a5.jpeg",
- "joined": "2021-02-10 14:57:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618822",
- "username": "boberghakan",
- "fullName": "Håkan Boberg (boberghakan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618822/medium/1826c536c279dedfb90a18f976d4a677.jpg",
- "joined": "2021-02-10 16:01:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14618984",
- "username": "globaldiamond",
- "fullName": "Sergio Baptista (globaldiamond)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14618984/medium/4a2d0cce4cc15092229eb8f77fb31e90.jpeg",
- "joined": "2021-02-10 18:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619062",
- "username": "Muuri93",
- "fullName": "Muuri93",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619062/medium/9fcb67976c6aca6baf74395a86438728.png",
- "joined": "2021-02-10 20:23:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619184",
- "username": "felixastin",
- "fullName": "Felix Astin (felixastin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619184/medium/c0d6e6cdce8a04c6662634e6b9cc2e63.jpg",
- "joined": "2021-02-10 23:01:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619272",
- "username": "WELLSMATOS",
- "fullName": "WELLSMATOS",
- "avatarUrl": "https://www.gravatar.com/avatar/159495cd24610fb5a088553d90b3c113?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 00:50:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619372",
- "username": "Moriarty6086",
- "fullName": "Moriarty6086",
- "avatarUrl": "https://www.gravatar.com/avatar/60f7578976768c64d31ae8a8436fdf80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 03:08:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619384",
- "username": "MarinaX",
- "fullName": "MarinaX",
- "avatarUrl": "https://www.gravatar.com/avatar/df9441f73e93cb1009eb61b1d4b8b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 10:50:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619508",
- "username": "truongx",
- "fullName": "truongx",
- "avatarUrl": "https://www.gravatar.com/avatar/c4af4eee56e0ad6323a85a7bc1588c1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-11 05:08:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619612",
- "username": "CA212",
- "fullName": "CA212",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619612/medium/870934f531cf24cb60756f4636d06625.png",
- "joined": "2021-04-24 11:50:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619636",
- "username": "raizo.bank007",
- "fullName": "wassim siaf (raizo.bank007)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619636/medium/521ac78b4246337b92db96332f0a3d1c.jpg",
- "joined": "2021-02-11 07:16:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14619736",
- "username": "ClementLvx",
- "fullName": "ClementLvx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14619736/medium/84e61bc70bd5bb78a8efd91db2fe8a3a.jpg",
- "joined": "2021-02-11 08:50:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616052",
- "username": "goggle.sup.exe",
- "fullName": "Sports Dünyasí (goggle.sup.exe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616052/medium/bdedc6818b854bb25aa7080325dc9870.jpg",
- "joined": "2021-02-09 02:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14616034",
- "username": "okdonga",
- "fullName": "Katie Dong-Yoon Ok (okdonga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14616034/medium/0d97f449662816d3d7d7d25842b8d5ee.jpeg",
- "joined": "2021-02-14 20:19:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14611762",
- "username": "huba123456",
- "fullName": "huba123456",
- "avatarUrl": "https://www.gravatar.com/avatar/dbbf5a9f9b3c44cdf72c3d3c7a9075e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 06:18:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614264",
- "username": "nobuyo.fujiwara",
- "fullName": "nobuyo.fujiwara",
- "avatarUrl": "https://www.gravatar.com/avatar/8fb7ee72f4232c7e8b9fdc61d3016272?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 23:33:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14612382",
- "username": "burningtree",
- "fullName": "tree (burningtree)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612382/medium/2c404859485a4c240c8a12ad48584c00.jpeg",
- "joined": "2021-02-06 15:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14612392",
- "username": "rhodeskyriakos",
- "fullName": "Kyriakos Alevropoulos (rhodeskyriakos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612392/medium/7a6a8ee0d133763cb2e9d1f887adae0c.jpeg",
- "joined": "2021-02-06 16:11:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14612716",
- "username": "xuserx",
- "fullName": "xuserx",
- "avatarUrl": "https://www.gravatar.com/avatar/d7df7e67ab9d995c15db71542368ce5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-06 20:20:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14612900",
- "username": "seunggin.yu",
- "fullName": "seungjin yu (seunggin.yu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14612900/medium/7fc99f80a3da9fd033cb6eecd02a3e62.jpeg",
- "joined": "2021-02-07 00:19:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613102",
- "username": "Amaramalik99",
- "fullName": "Amaramalik99",
- "avatarUrl": "https://www.gravatar.com/avatar/3638e6814fc5c256b8dcbf6052f87cc7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-04 19:31:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613126",
- "username": "ChrisKonan",
- "fullName": "ChrisKonan",
- "avatarUrl": "https://www.gravatar.com/avatar/91ce1c3e28b23fe43ca6e81529afe338?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 05:07:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613430",
- "username": "peskymoskq",
- "fullName": "John Call (peskymoskq)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14613430/medium/08d761ba5fee0a0eb372042435f17e58.png",
- "joined": "2021-02-07 09:12:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613592",
- "username": "talipcakir",
- "fullName": "talipcakir",
- "avatarUrl": "https://www.gravatar.com/avatar/0e69b48581847d1e15c5352d94454c44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 11:27:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613688",
- "username": "jan-miksik",
- "fullName": "Jan Mikšík (jan-miksik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14613688/medium/5d16056faf59d82c29d178f96396c28f.jpeg",
- "joined": "2021-02-07 12:58:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14613880",
- "username": "Franciscoyou",
- "fullName": "Franciscoyou",
- "avatarUrl": "https://www.gravatar.com/avatar/0b9efad80c0e8aac0998edbf2d9ab874?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 15:37:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614008",
- "username": "serkandemir",
- "fullName": "serkandemir",
- "avatarUrl": "https://www.gravatar.com/avatar/59e47ec5960b9006dc7e3db57d4d077e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 18:12:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614016",
- "username": "Anonyma",
- "fullName": "Anonyma_z (Anonyma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614016/medium/447ae91eb97d464346003fe6532cda12.jpg",
- "joined": "2021-10-13 09:03:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14614266",
- "username": "jkjimmy",
- "fullName": "jkjimmy",
- "avatarUrl": "https://www.gravatar.com/avatar/2d2f2409aa5d4b252f4fc9623615ba61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-07 23:40:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615784",
- "username": "semangat88",
- "fullName": "Xi An (semangat88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615784/medium/c1fd77eb4ec45e5482a8883e744ae392.jpg",
- "joined": "2021-02-08 21:18:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614386",
- "username": "cyberlize",
- "fullName": "cyberlize",
- "avatarUrl": "https://www.gravatar.com/avatar/da13bd29e41187ca25f4cf1e1e2194e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 02:05:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614476",
- "username": "Cespada",
- "fullName": "Cespada",
- "avatarUrl": "https://www.gravatar.com/avatar/ed71f48cb267a8ad50d88eb856578ea1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 03:37:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614484",
- "username": "eamirkhanizade",
- "fullName": "eamirkhanizade",
- "avatarUrl": "https://www.gravatar.com/avatar/c5e81281e3d1253f6c8d598590eddef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 03:45:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614490",
- "username": "johnvan7",
- "fullName": "Giovanni Vella (johnvan7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614490/medium/aef0021503ebb295fcc9a9b00376ef6d.jpeg",
- "joined": "2021-05-20 06:10:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614576",
- "username": "ramarei",
- "fullName": "ramarei",
- "avatarUrl": "https://www.gravatar.com/avatar/6fa48dcaa57be1b87277c31b5fd2c93f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 04:49:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614610",
- "username": "Zimza44",
- "fullName": "Stef Stagos (Zimza44)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14614610/medium/557435f19b7b63c55a7f33a01231832d.png",
- "joined": "2021-02-08 05:09:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14614626",
- "username": "Twait",
- "fullName": "Twait",
- "avatarUrl": "https://www.gravatar.com/avatar/fcebf23a0dd6c8322fccdb3152af705b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 05:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615220",
- "username": "djzamok5",
- "fullName": "Виктор Журавлев (djzamok5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615220/medium/954cd8dfceafc6d22808e84e512fcb64.jpeg",
- "joined": "2021-02-08 12:45:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615434",
- "username": "bjaniehsan99",
- "fullName": "ehsan jani (bjaniehsan99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615434/medium/1567d8c17ba7eb590fd7bacfecea98fe.jpg",
- "joined": "2021-02-08 15:15:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615472",
- "username": "heidonomm",
- "fullName": "Heido Nõmm (heidonomm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615472/medium/465b048e8f24a7e392ef1a8cd0049585.jpeg",
- "joined": "2021-02-08 15:32:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615600",
- "username": "Salimcenter",
- "fullName": "Salimcenter",
- "avatarUrl": "https://www.gravatar.com/avatar/8ed5a375f178a962134c71de40950d32?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-08 17:04:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615680",
- "username": "ossip",
- "fullName": "Ossip Kaehr (ossip)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615680/medium/2001bfe527e063d6d6babb618985242d.jpeg",
- "joined": "2021-02-08 18:28:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14615710",
- "username": "xuandat261020002",
- "fullName": "Xuân Đạt (xuandat261020002)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14615710/medium/94d0bddf3ce101d66c551350beb056e2.jpeg",
- "joined": "2021-02-08 19:22:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848176",
- "username": "rustamg23",
- "fullName": "Rustam Gubaydullin (rustamg23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848176/medium/31ad821cd8075115d725d13c885e9669.jpeg",
- "joined": "2021-07-21 14:03:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15030241,
+ "username": "sonata-chen",
+ "fullName": "sonata-chen",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15030241/medium/521fb44a99be409b8deb401d00d2439b.png",
+ "preTranslated": 0,
+ "totalCosts": 69
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 69
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 61,
+ "total": 69
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 119,
+ "total": 134
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 61,
+ "total": 69
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14990557,
+ "username": "samuel281",
+ "fullName": "sungwoo park (samuel281)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990557/medium/ec6e0432bcf1ee504ec6f7b281ca52ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 169
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 169
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 169,
+ "total": 169
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 169,
+ "total": 169
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15023705,
+ "username": "UmuTR42",
+ "fullName": "Ümit Rahim MUTLU (UmuTR42)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15023705/medium/74abbc96e311225d644210239912356c.png",
+ "preTranslated": 0,
+ "totalCosts": 1014
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1014
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 968,
+ "total": 1014
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 864,
+ "total": 913
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 968,
+ "total": 1014
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15037177,
+ "username": "ismailaydin",
+ "fullName": "İsmail aydın (ismailaydin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15037177/medium/565fd719b19e63fc4b6b28ee19b858ab.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 12,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 6,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 12,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937735,
+ "username": "ilonaternovych",
+ "fullName": "Ілона Тернович (ilonaternovych)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937735/medium/4121baba80985301f8e6d1ba5c829a6c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 675
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 675
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 645,
+ "total": 675
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 576,
+ "total": 610
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 461,
+ "total": 465
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 645,
+ "total": 675
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13490273,
+ "username": "Cmml",
+ "fullName": "Богдана Вознюк (Cmml)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13490273/medium/6492f5b552f926f396b1c2e28c8671d1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14995909,
+ "username": "borodinavaleria8",
+ "fullName": "Валерия Бородина (borodinavaleria8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995909/medium/546efb6d14694d4fc0bb261ec7bb350d.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15000525,
+ "username": "foteskuIgor",
+ "fullName": "Игорь Фотеску (foteskuIgor)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15000525/medium/a83b7d1987932ba37c04f8afa3a1a6c0.png",
+ "preTranslated": 0,
+ "totalCosts": 126
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 126
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 105,
+ "total": 126
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 109,
+ "total": 131
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 28,
+ "total": 31
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 105,
+ "total": 126
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14939633,
+ "username": "nellikaminska1967",
+ "fullName": "Неля Камінська (nellikaminska1967)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14939633/medium/5533147ee1a8ba8dd395e949d74ead6e.png",
+ "preTranslated": 0,
+ "totalCosts": 1027
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1027
+ },
+ "translated": {
+ "tmMatch": 99,
+ "default": 928,
+ "total": 1027
+ },
+ "targetTranslated": {
+ "tmMatch": 85,
+ "default": 806,
+ "total": 891
+ },
+ "translatedByMt": {
+ "tmMatch": 24,
+ "default": 113,
+ "total": 137
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 99,
+ "default": 928,
+ "total": 1027
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14988379,
+ "username": "Nikita_Yuriev",
+ "fullName": "Никита Юрьев (Nikita_Yuriev)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14988379/medium/30ba5c83780593f0dbbb5f35b47dd1b7.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 14,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 15,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15021999,
+ "username": "10denisenko10",
+ "fullName": "Сергей Денисенко (10denisenko10)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15021999/medium/6019beedada344d78d324971b3adfd2c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 58,
+ "total": 58
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15020157,
+ "username": "simplyfoodbiz",
+ "fullName": "Смелый Стиль (simplyfoodbiz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020157/medium/e87d1d7c1fed53ec6910d8515fe0afba.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 40,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 37,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 40,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15035049,
+ "username": "magazine4you",
+ "fullName": "مجله ای برای شما مجله کسب درآمد از اینترنت (magazine4you)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15035049/medium/02a8d4b62f72fe29bd65bc1896a0eecc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 685
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 685
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 684,
+ "total": 685
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 802,
+ "total": 803
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 684,
+ "total": 685
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14158559,
+ "username": "BruceLvJC",
+ "fullName": "吕锦程 (BruceLvJC)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14158559/medium/6173bbb0f2c1da287c7c3864d98fd739.jpg",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 30,
+ "total": 38
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 15003025,
+ "username": "RishYang",
+ "fullName": "楊日新 (RishYang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15003025/medium/2c2e962666bcd40b0f06ca6c1eb5e258.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 52,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 88,
+ "total": 94
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 52,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14996607,
+ "username": "rigmah",
+ "fullName": "성창환 (rigmah)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996607/medium/fdd3ab42388c593e2bc61fc4ebba6849.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 11,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 11,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 11,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
}
]
}
diff --git a/src/data/translation-reports/quarter-data.json b/src/data/translation-reports/quarter-data.json
index c1fb8e99322..6750cb5fb2f 100644
--- a/src/data/translation-reports/quarter-data.json
+++ b/src/data/translation-reports/quarter-data.json
@@ -1,69717 +1,27278 @@
{
- "name": "Ethereum.org Translations Top Members Report",
+ "name": "Ethereum.org Translations Translation Costs Report",
"url": "https://translate.ethereum.org/project/ethereum-org",
"unit": "words",
"dateRange": {
"from": "2021-07-01",
"to": "2021-09-30"
},
- "language": "All",
+ "currency": "USD",
+ "mode": "simple",
+ "roleBasedCosts": true,
+ "totalCosts": 866250,
+ "totalTMSavings": 0,
+ "totalPreTranslated": 132647,
"data": [
{
"user": {
- "id": "14866604",
- "username": "yeremiaryangunadi",
- "fullName": "Yeremia Ryan Gunadi (yeremiaryangunadi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png",
- "joined": "2021-08-05 04:15:14"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 94329,
- "target": 82336,
- "approved": 0,
- "voted": 1163,
- "positiveVotes": 123,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "13974365",
- "username": "LQS_Italian",
- "fullName": "LQS_Italian",
- "avatarUrl": "https://www.gravatar.com/avatar/67c435dc825cb94ac38e8522d4c57c31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-06 12:31:41"
- },
- "languages": [
+ "id": 14897770,
+ "username": "0xmike7",
+ "fullName": "0xmike7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e1316d7734c2eb6961aac5d35ad9aabe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1585
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1585
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 1575,
+ "total": 1585
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 1612,
+ "total": 1629
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 1575,
+ "total": 1585
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896464,
+ "username": "420Monty69",
+ "fullName": "420Monty69",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896464/medium/4358f147e415e6175d852389f1075884.png",
+ "preTranslated": 0,
+ "totalCosts": 409
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 129
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 113,
+ "total": 113
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 129,
+ "total": 129
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 70833,
- "target": 66191,
- "approved": 87413,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 1,
- "winning": 70742
- },
- {
- "user": {
- "id": "14153057",
- "username": "LQS_FR_linguist",
- "fullName": "LQS_FR_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/0cf48fed2dada8814d963ea205313494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-11 15:31:46"
- },
- "languages": [
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 215
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 209,
+ "total": 215
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 186,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 209,
+ "total": 215
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 52364,
- "target": 52223,
- "approved": 66537,
- "voted": 0,
- "positiveVotes": 24,
- "negativeVotes": 0,
- "winning": 52278
- },
- {
- "user": {
- "id": "14146621",
- "username": "LQS_PL_linguist1",
- "fullName": "LQS_PL_linguist1",
- "avatarUrl": "https://www.gravatar.com/avatar/6337f9f650b5632e54dcb6ddfe091422?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-06 05:47:50"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 65
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880416,
+ "username": "Adasovec",
+ "fullName": "Adasovec",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/30b9c71e72ed76c0ef447e9148bab31b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6438
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6438
+ },
+ "translated": {
+ "tmMatch": 173,
+ "default": 6265,
+ "total": 6438
+ },
+ "targetTranslated": {
+ "tmMatch": 174,
+ "default": 5662,
+ "total": 5836
+ },
+ "translatedByMt": {
+ "tmMatch": 33,
+ "default": 434,
+ "total": 467
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 173,
+ "default": 6265,
+ "total": 6438
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14710420,
+ "username": "Afshin4030",
+ "fullName": "Afshin4030",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/095e0bdee3d3f914fe82205d5e3a267a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 51850,
- "target": 42476,
- "approved": 111453,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 51471
- },
- {
- "user": {
- "id": "14779158",
- "username": "K0ue1",
- "fullName": "Kouei (K0ue1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png",
- "joined": "2021-05-30 18:24:45"
- },
- "languages": [
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 10,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 10,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14857374,
+ "username": "AlexandraM",
+ "fullName": "AlexandraM",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/03efa1ca80db76aa09b28020af3e68bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 512
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 512
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 509,
+ "total": 512
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 429,
+ "total": 432
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 509,
+ "total": 512
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14769736,
+ "username": "Andpatagon",
+ "fullName": "Andpatagon",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5aa159c0ea923eba17a923ca3c2930c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14848404,
+ "username": "Andreccr",
+ "fullName": "Andreccr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/15114d1438719a62279c133fda3e78be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14940333,
+ "username": "Angela_Borda",
+ "fullName": "Angela_Borda",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1bf93e45fbc3caf8e5f4be83fff266eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 241
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 241
+ },
+ "translated": {
+ "tmMatch": 107,
+ "default": 134,
+ "total": 241
+ },
+ "targetTranslated": {
+ "tmMatch": 135,
+ "default": 171,
+ "total": 306
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 19,
+ "total": 28
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 107,
+ "default": 134,
+ "total": 241
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884874,
+ "username": "AsUsedtobe",
+ "fullName": "AsUsedtobe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/77a168de5071ef93f6ebe9e6bf01a6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 172
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 172
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 172,
+ "total": 172
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 172,
+ "total": 172
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907079,
+ "username": "Ayano85",
+ "fullName": "Ayano85",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/640e34ede10c1d066f45c5b529790ffb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1071
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1071
+ },
+ "translated": {
+ "tmMatch": 48,
+ "default": 1023,
+ "total": 1071
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 885,
+ "total": 927
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 48,
+ "default": 1023,
+ "total": 1071
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14878048,
+ "username": "BINOMFX",
+ "fullName": "BINOMFX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a6dfc7e15329eadbc61eb905f1bab860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 313
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 313
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 311,
+ "total": 313
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 249,
+ "total": 251
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 311,
+ "total": 313
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14676268,
+ "username": "Bachan",
+ "fullName": "Bachan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d7091aa68a00d2256eb9f3b5709bf974?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 16,
+ "default": 116,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 133,
+ "total": 156
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 16,
+ "default": 116,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13845025,
+ "username": "Bajoodle",
+ "fullName": "Bajoodle",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9a43f170b18626ddce403ce0b81ced35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 223
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 223
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 174,
+ "total": 223
+ },
+ "targetTranslated": {
+ "tmMatch": 49,
+ "default": 176,
+ "total": 225
+ },
+ "translatedByMt": {
+ "tmMatch": 24,
+ "default": 99,
+ "total": 123
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 174,
+ "total": 223
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14775946,
+ "username": "Beas",
+ "fullName": "Beas",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775946/medium/22ad4db44fa2f657ec257775cddc899c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 54,
+ "default": 0,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 54,
+ "default": 0,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 54,
+ "default": 0,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14836710,
+ "username": "BumbyMoser",
+ "fullName": "BumbyMoser",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6be8a07ece86c0c1579ccf4ba0bcb151?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866294,
+ "username": "Burinat",
+ "fullName": "Burinat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/167f1a1305f2bb8d6bcf92833ba65233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 279
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 279
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 277,
+ "total": 279
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 280,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 277,
+ "total": 279
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838806,
+ "username": "CONSEQUENL50",
+ "fullName": "CONSEQUENL50",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838806/medium/f1b727400eeeff54d73ab03020db79b3.PNG",
+ "preTranslated": 0,
+ "totalCosts": 614
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 614
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 565,
+ "total": 614
+ },
+ "targetTranslated": {
+ "tmMatch": 45,
+ "default": 476,
+ "total": 521
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 565,
+ "total": 614
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14893344,
+ "username": "DonViktor",
+ "fullName": "DonViktor",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c001e03116cbbb2188f36300d15f704f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 199
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 199
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 196,
+ "total": 199
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 246,
+ "total": 249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 196,
+ "total": 199
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14933025,
+ "username": "EdgyLsx",
+ "fullName": "EdgyLsx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/58e0d3838f341eb1089af10f1da47f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 164
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 164
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 164,
+ "total": 164
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 191,
+ "total": 191
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 75,
+ "total": 75
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 164,
+ "total": 164
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14840796,
+ "username": "Eniko.G",
+ "fullName": "Eniko.G",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840796/medium/5803be055343fda6a020e05078f97815.jpg",
+ "preTranslated": 0,
+ "totalCosts": 5605
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5605
+ },
+ "translated": {
+ "tmMatch": 39,
+ "default": 5566,
+ "total": 5605
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 4768,
+ "total": 4794
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 39,
+ "default": 5566,
+ "total": 5605
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14796574,
+ "username": "EthBasti",
+ "fullName": "EthBasti",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7a6732a86f7c1ccb5433213069d82c29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884558,
+ "username": "Ethereum.org_Discord-Nuble",
+ "fullName": "Ethereum.org_Discord-Nuble",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884558/medium/0094ad75d25cfe8961a0e8318ff5d7f8.jpg",
+ "preTranslated": 0,
+ "totalCosts": 28162
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28162
+ },
+ "translated": {
+ "tmMatch": 1190,
+ "default": 26972,
+ "total": 28162
+ },
+ "targetTranslated": {
+ "tmMatch": 977,
+ "default": 22224,
+ "total": 23201
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 39,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1190,
+ "default": 26972,
+ "total": 28162
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14863670,
+ "username": "Fjip",
+ "fullName": "Fjip",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8bfdb4c5d5880bc97e561e52d640bfb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 416
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 416
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 406,
+ "total": 416
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 405,
+ "total": 417
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 406,
+ "total": 416
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14885094,
+ "username": "FrancoElicabe",
+ "fullName": "FrancoElicabe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f0f6b7a6624308ec4392f59fc745f03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915729,
+ "username": "Gae..l",
+ "fullName": "Gae..l",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cbca2ac72780df856d9bfd8434cf3cfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 28,
+ "total": 28
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13461670,
+ "username": "GiorgioHerbie",
+ "fullName": "GiorgioHerbie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/842f442aeb23dc0a3f89ad10e1ba7a04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2311
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2311
+ },
+ "translated": {
+ "tmMatch": 117,
+ "default": 2194,
+ "total": 2311
+ },
+ "targetTranslated": {
+ "tmMatch": 110,
+ "default": 1880,
+ "total": 1990
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 117,
+ "default": 2194,
+ "total": 2311
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14835754,
+ "username": "Grzegorzcz",
+ "fullName": "Grzegorzcz",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0c2f4f0f96fdf6214acf9928c511cb00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897468,
+ "username": "Gurx",
+ "fullName": "Gurx",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/17c04f473116a5288b97d6a7a9e03ed6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 331
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 331
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 328,
+ "total": 331
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 269,
+ "total": 270
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 328,
+ "total": 331
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896404,
+ "username": "Gymfreak92",
+ "fullName": "Gymfreak92",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d33350c910d9b7b08a25c6e1c82e7ca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 370
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 370
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 369,
+ "total": 370
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 286,
+ "total": 287
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 369,
+ "total": 370
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14909599,
+ "username": "HanaWatanabe",
+ "fullName": "HanaWatanabe",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/634865e912a02ed06d5368f8d2d5e7f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 150
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 150
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 136,
+ "total": 150
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 434,
+ "total": 475
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 136,
+ "total": 150
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14852550,
+ "username": "Hassaqnation",
+ "fullName": "Hassaqnation",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a00b4aadf8f89bf322d359dd96bcbc2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13094015,
+ "username": "Helldelta",
+ "fullName": "Helldelta",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/24aec05b5426673452ad2142981dbbe1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 60,
+ "total": 60
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905975,
+ "username": "Hendrik07",
+ "fullName": "Hendrik07",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4564777ac0df36d91cad47153846aef1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14658876,
+ "username": "Industry_Arabic",
+ "fullName": "Industry_Arabic",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/5d53f4e53843e1c474c13632321af591?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6808
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6808
+ },
+ "translated": {
+ "tmMatch": 308,
+ "default": 6500,
+ "total": 6808
+ },
+ "targetTranslated": {
+ "tmMatch": 243,
+ "default": 5378,
+ "total": 5621
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 228,
+ "total": 239
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 308,
+ "default": 6500,
+ "total": 6808
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867004,
+ "username": "JRay",
+ "fullName": "JRay",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867004/medium/82c9ff6ab75bffb7784d244698b3becc.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 6,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 13,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 6,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902898,
+ "username": "JacobEvans56",
+ "fullName": "JacobEvans56",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ec4d863a839de81ce1e8cb9c19394bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 155
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 155
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 153,
+ "total": 155
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 126,
+ "total": 129
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 153,
+ "total": 155
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14776878,
+ "username": "JoshNX",
+ "fullName": "JoshNX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4137d46ef3ef3f0fcb886d48e80491d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838794,
+ "username": "JuanB.Mont",
+ "fullName": "JuanB.Mont",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/96849b7ff7bc62a4f1c9bebbcfebd42e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1212
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1212
+ },
+ "translated": {
+ "tmMatch": 51,
+ "default": 1161,
+ "total": 1212
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 1052,
+ "total": 1090
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 460,
+ "total": 460
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 51,
+ "default": 1161,
+ "total": 1212
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915929,
+ "username": "KarolekPLRU",
+ "fullName": "KarolekPLRU",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/582fd5beae1a041556b1f404fb78aa37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 210
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 208
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 178,
+ "total": 208
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 141,
+ "total": 171
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 88,
+ "total": 103
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 178,
+ "total": 208
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 48852,
- "target": 66230,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 34
- },
- {
- "user": {
- "id": "14566994",
- "username": "papoy3",
- "fullName": "Hydro Honey 3000 (papoy3)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566994/medium/27c38d4eb236018e454793c342fbf118.jpg",
- "joined": "2021-02-04 05:37:47"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866158,
+ "username": "Kazel",
+ "fullName": "Kazel",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866158/medium/95b9c5e14784dc12d1399307e66d4eb2.gif",
+ "preTranslated": 0,
+ "totalCosts": 937
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 937
+ },
+ "translated": {
+ "tmMatch": 226,
+ "default": 711,
+ "total": 937
+ },
+ "targetTranslated": {
+ "tmMatch": 205,
+ "default": 671,
+ "total": 876
+ },
+ "translatedByMt": {
+ "tmMatch": 88,
+ "default": 443,
+ "total": 531
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 226,
+ "default": 711,
+ "total": 937
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13756885,
+ "username": "Kenjii",
+ "fullName": "Kenjii",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2676e1ee36216229cfc692b9ce1e859c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 292
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 292
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 288,
+ "total": 292
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 290,
+ "total": 294
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 288,
+ "total": 292
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14871250,
+ "username": "Kiepasaaaaa",
+ "fullName": "Kiepasaaaaa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/abd1d53abc1ac7a2913000a934adeff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 12,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 44865,
- "target": 43160,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 158,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "13973069",
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830086,
+ "username": "Kirschm",
+ "fullName": "Kirschm",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb37d97855a77d257dfaf8b6daf645d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14631076,
+ "username": "Kuthep",
+ "fullName": "Kuthep",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6bb2f5fe2b472535dabfe1454f4a591e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867008,
+ "username": "LJian",
+ "fullName": "LJian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/495d44b77952b5132b203781a3911fe0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14832782,
+ "username": "LQS_BG_Linguist",
+ "fullName": "LQS_BG_Linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6cab534abf8fcb64a00cbaa14521b384?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6729
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6729
+ },
+ "translated": {
+ "tmMatch": 238,
+ "default": 6491,
+ "total": 6729
+ },
+ "targetTranslated": {
+ "tmMatch": 263,
+ "default": 6680,
+ "total": 6943
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16830
+ },
+ "translationCosts": {
+ "tmMatch": 238,
+ "default": 6491,
+ "total": 6729
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13973069,
"username": "LQS_CHS_linguist",
"fullName": "LQS_CHS_linguist",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/4848f87680943cbc4389240c602aeb2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-05 10:43:18"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 42046,
- "target": 58464,
- "approved": 87798,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 41548
- },
- {
- "user": {
- "id": "14466218",
+ "preTranslated": 0,
+ "totalCosts": 42046
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 42046
+ },
+ "translated": {
+ "tmMatch": 1982,
+ "default": 40064,
+ "total": 42046
+ },
+ "targetTranslated": {
+ "tmMatch": 2895,
+ "default": 55569,
+ "total": 58464
+ },
+ "translatedByMt": {
+ "tmMatch": 20,
+ "default": 28,
+ "total": 48
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 87798
+ },
+ "translationCosts": {
+ "tmMatch": 1982,
+ "default": 40064,
+ "total": 42046
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14466218,
"username": "LQS_ESEM_linguist",
"fullName": "LQS_ESEM_linguist",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/d5f26cf99fa7c6116b75f499f8de93ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-27 13:41:51"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 39284,
- "target": 40028,
- "approved": 65647,
- "voted": 0,
- "positiveVotes": 31,
- "negativeVotes": 9,
- "winning": 38631
- },
- {
- "user": {
- "id": "14884558",
- "username": "Ethereum.org_Discord-Nuble",
- "fullName": "Ethereum.org_Discord-Nuble",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884558/medium/0094ad75d25cfe8961a0e8318ff5d7f8.jpg",
- "joined": "2021-08-19 05:13:45"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 28162,
- "target": 23201,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880458",
- "username": "sekisanchi",
- "fullName": "Kazunori Seki (sekisanchi)",
- "avatarUrl": "https://www.gravatar.com/avatar/7434df198795c08088636407dc7f96c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 19:25:29"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 26548,
- "target": 61613,
- "approved": 0,
- "voted": 1050,
- "positiveVotes": 5,
- "negativeVotes": 12,
- "winning": 0
- },
- {
- "user": {
- "id": "13959389",
- "username": "inlak16",
- "fullName": "inlak16",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png",
- "joined": "2019-08-22 11:41:47"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 15080,
- "target": 12037,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 98
- },
- {
- "user": {
- "id": "14689490",
+ "preTranslated": 0,
+ "totalCosts": 39284
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39284
+ },
+ "translated": {
+ "tmMatch": 3807,
+ "default": 35477,
+ "total": 39284
+ },
+ "targetTranslated": {
+ "tmMatch": 3473,
+ "default": 36555,
+ "total": 40028
+ },
+ "translatedByMt": {
+ "tmMatch": 19,
+ "default": 274,
+ "total": 293
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 65647
+ },
+ "translationCosts": {
+ "tmMatch": 3807,
+ "default": 35477,
+ "total": 39284
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689490,
"username": "LQS_ESEM_proofreader",
"fullName": "LQS_ESEM_proofreader",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/dc5e8f633364be63c5708828228875d5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 12:02:23"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 13268,
- "target": 14719,
- "approved": 16216,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 0,
- "winning": 13255
- },
- {
- "user": {
- "id": "14568334",
- "username": "norhorn",
- "fullName": "george kitsoukakis (norhorn)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/eb41460b41717d2eb2d49964b63c7c0d.jpeg",
- "joined": "2021-01-14 01:35:04"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 12780,
- "target": 12133,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 20
- },
- {
- "user": {
- "id": "14861756",
- "username": "RahayuRafika_12",
- "fullName": "Rahayu Rafikahwulan Sari (RahayuRafika_12)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg",
- "joined": "2021-08-01 20:12:38"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- },
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- },
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 12727,
- "target": 10557,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 263,
- "negativeVotes": 16,
- "winning": 0
- },
- {
- "user": {
- "id": "13971441",
- "username": "lucidtranslations",
- "fullName": "lucidtranslations",
- "avatarUrl": "https://www.gravatar.com/avatar/8260e1494a988a5c98616aae905d4496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-14 07:05:04"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 12552,
- "target": 33215,
- "approved": 16432,
- "voted": 0,
- "positiveVotes": 91,
- "negativeVotes": 14,
- "winning": 8615
- },
- {
- "user": {
- "id": "14227150",
- "username": "vidhyanand",
- "fullName": "Vidhyanand Cs (vidhyanand)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227150/medium/105fd3bc6a1a8f005dcb0b64a03d22a6.jpg",
- "joined": "2020-04-26 13:12:55"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 11371,
- "target": 19633,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5885
- },
- {
- "user": {
- "id": "14850810",
- "username": "esdi",
- "fullName": "dapalek (esdi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850810/medium/7e3a7993a59f2402dd2a2a32c2d92aed.png",
- "joined": "2021-07-23 17:12:46"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 11051,
- "target": 9027,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14294594",
+ "preTranslated": 0,
+ "totalCosts": 13268
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13268
+ },
+ "translated": {
+ "tmMatch": 550,
+ "default": 12718,
+ "total": 13268
+ },
+ "targetTranslated": {
+ "tmMatch": 650,
+ "default": 14069,
+ "total": 14719
+ },
+ "translatedByMt": {
+ "tmMatch": 32,
+ "default": 0,
+ "total": 32
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16216
+ },
+ "translationCosts": {
+ "tmMatch": 550,
+ "default": 12718,
+ "total": 13268
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14153057,
+ "username": "LQS_FR_linguist",
+ "fullName": "LQS_FR_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0cf48fed2dada8814d963ea205313494?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52364
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52364
+ },
+ "translated": {
+ "tmMatch": 2891,
+ "default": 49473,
+ "total": 52364
+ },
+ "targetTranslated": {
+ "tmMatch": 2670,
+ "default": 49553,
+ "total": 52223
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 42,
+ "total": 49
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 66537
+ },
+ "translationCosts": {
+ "tmMatch": 2891,
+ "default": 49473,
+ "total": 52364
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14411552,
+ "username": "LQS_HU_Linguist",
+ "fullName": "LQS_HU_Linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/debd0759ebd4f0a2323b63d06d3fbd33?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10336
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10336
+ },
+ "translated": {
+ "tmMatch": 1184,
+ "default": 9152,
+ "total": 10336
+ },
+ "targetTranslated": {
+ "tmMatch": 1006,
+ "default": 7604,
+ "total": 8610
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 66030
+ },
+ "translationCosts": {
+ "tmMatch": 1184,
+ "default": 9152,
+ "total": 10336
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13974365,
+ "username": "LQS_Italian",
+ "fullName": "LQS_Italian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67c435dc825cb94ac38e8522d4c57c31?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 70833
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 70833
+ },
+ "translated": {
+ "tmMatch": 3892,
+ "default": 66941,
+ "total": 70833
+ },
+ "targetTranslated": {
+ "tmMatch": 3403,
+ "default": 62788,
+ "total": 66191
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 170,
+ "total": 175
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 87413
+ },
+ "translationCosts": {
+ "tmMatch": 3892,
+ "default": 66941,
+ "total": 70833
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14294594,
"username": "LQS_MLIN_linguist",
"fullName": "LQS_MLIN_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/7eb92f37b99e62fc4a247eb58e8359bd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-07 08:49:17"
- },
- "languages": [
- {
- "id": "ml-IN",
- "name": "Malayalam"
- }
- ],
- "translated": 10670,
- "target": 17626,
- "approved": 20301,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10627
- },
- {
- "user": {
- "id": "13993717",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7eb92f37b99e62fc4a247eb58e8359bd?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10670
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10670
+ },
+ "translated": {
+ "tmMatch": 995,
+ "default": 9675,
+ "total": 10670
+ },
+ "targetTranslated": {
+ "tmMatch": 1493,
+ "default": 16133,
+ "total": 17626
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 1,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20301
+ },
+ "translationCosts": {
+ "tmMatch": 995,
+ "default": 9675,
+ "total": 10670
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14146621,
+ "username": "LQS_PL_linguist1",
+ "fullName": "LQS_PL_linguist1",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6337f9f650b5632e54dcb6ddfe091422?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 51850
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 51850
+ },
+ "translated": {
+ "tmMatch": 1660,
+ "default": 50190,
+ "total": 51850
+ },
+ "targetTranslated": {
+ "tmMatch": 1620,
+ "default": 40856,
+ "total": 42476
+ },
+ "translatedByMt": {
+ "tmMatch": 51,
+ "default": 887,
+ "total": 938
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 111453
+ },
+ "translationCosts": {
+ "tmMatch": 1660,
+ "default": 50190,
+ "total": 51850
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13993717,
"username": "LQS_RU_linguist",
"fullName": "LQS_RU_linguist",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/e2e6b964a673a040b806c3dff5267f4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-09-25 03:33:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10639,
- "target": 9669,
- "approved": 16240,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 10577
- },
- {
- "user": {
- "id": "14411552",
- "username": "LQS_HU_Linguist",
- "fullName": "LQS_HU_Linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/debd0759ebd4f0a2323b63d06d3fbd33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-09-11 07:21:52"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 10336,
- "target": 8610,
- "approved": 66030,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10330
- },
- {
- "user": {
- "id": "14848176",
- "username": "rustamg23",
- "fullName": "Rustam Gubaydullin (rustamg23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848176/medium/31ad821cd8075115d725d13c885e9669.jpeg",
- "joined": "2021-07-21 14:03:24"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 9823,
- "target": 7417,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14136969",
+ "preTranslated": 0,
+ "totalCosts": 10639
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10639
+ },
+ "translated": {
+ "tmMatch": 417,
+ "default": 10222,
+ "total": 10639
+ },
+ "targetTranslated": {
+ "tmMatch": 400,
+ "default": 9269,
+ "total": 9669
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 89,
+ "total": 98
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16240
+ },
+ "translationCosts": {
+ "tmMatch": 417,
+ "default": 10222,
+ "total": 10639
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14030666,
+ "username": "LQS_SL_linguist",
+ "fullName": "LQS_SL_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d8bbdd1ddae3369c37aee919a054d00d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7805
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7805
+ },
+ "translated": {
+ "tmMatch": 221,
+ "default": 7584,
+ "total": 7805
+ },
+ "targetTranslated": {
+ "tmMatch": 210,
+ "default": 7156,
+ "total": 7366
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16203
+ },
+ "translationCosts": {
+ "tmMatch": 221,
+ "default": 7584,
+ "total": 7805
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14136969,
"username": "LQS_TR_linguist",
"fullName": "LQS_TR_linguist",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/836d07f2a54868c7738a512b955e306e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-27 09:26:43"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 8578,
- "target": 7277,
- "approved": 14955,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8575
- },
- {
- "user": {
- "id": "14690454",
- "username": "sekoman01",
- "fullName": "Uğur Daloğlu (sekoman01)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690454/medium/595a121d4a7427f7a21b75b32017c247.jpg",
- "joined": "2021-03-30 16:22:03"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 8409,
- "target": 6580,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1323
- },
- {
- "user": {
- "id": "14030666",
- "username": "LQS_SL_linguist",
- "fullName": "LQS_SL_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/d8bbdd1ddae3369c37aee919a054d00d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2019-11-04 13:45:21"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- }
- ],
- "translated": 7805,
- "target": 7366,
- "approved": 16203,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7762
- },
- {
- "user": {
- "id": "14658876",
- "username": "Industry_Arabic",
- "fullName": "Industry_Arabic",
- "avatarUrl": "https://www.gravatar.com/avatar/5d53f4e53843e1c474c13632321af591?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-08 12:08:46"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 6808,
- "target": 5621,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920111",
- "username": "JueK3y",
- "fullName": "JueK3y | Personal Account (JueK3y)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920111/medium/2a49cdd81e2cab1e2190009caa3de573.png",
- "joined": "2021-09-13 03:33:12"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 6731,
- "target": 6534,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14832782",
- "username": "LQS_BG_Linguist",
- "fullName": "LQS_BG_Linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/6cab534abf8fcb64a00cbaa14521b384?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 00:05:58"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 6729,
- "target": 6943,
- "approved": 16830,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 6729
- },
- {
- "user": {
- "id": "14553216",
- "username": "rielychen",
- "fullName": "Riely (rielychen)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/2fd387175612fea1ecb0db49b0178419.png",
- "joined": "2021-01-13 01:04:21"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 6586,
- "target": 8682,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 5326
- },
- {
- "user": {
- "id": "14886730",
- "username": "charlyzona",
- "fullName": "Carlos Rodríguez (charlyzona)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg",
- "joined": "2021-08-18 20:18:09"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 6539,
- "target": 6323,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 29,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815312",
- "username": "001-uk_00455358",
- "fullName": "001-UK_00455358 (001-uk_00455358)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815312/medium/866bc874cf7462eff3219fa2d337e5f2.png",
- "joined": "2021-06-25 10:49:14"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 6492,
- "target": 5711,
- "approved": 6691,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6624
- },
- {
- "user": {
- "id": "14880416",
- "username": "Adasovec",
- "fullName": "Adasovec",
- "avatarUrl": "https://www.gravatar.com/avatar/30b9c71e72ed76c0ef447e9148bab31b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-14 18:27:50"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 6438,
- "target": 5836,
- "approved": 0,
- "voted": 134,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879616",
- "username": "ctossaphol",
- "fullName": "Tossaphol Chintanaphan (ctossaphol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879616/medium/2ec654c7bf81fc9fd46d1cafe971d586.jpeg",
- "joined": "2021-08-14 05:55:42"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 5646,
- "target": 2145,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840796",
- "username": "Eniko.G",
- "fullName": "Eniko.G",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840796/medium/5803be055343fda6a020e05078f97815.jpg",
- "joined": "2021-07-15 10:35:57"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 5605,
- "target": 4794,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5151
- },
- {
- "user": {
- "id": "14555882",
- "username": "ElAmir",
- "fullName": "Amir Reza (ElAmir)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/edcaf24c34ef3506613bad9099389fc6.jpg",
- "joined": "2020-12-30 03:39:19"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 4934,
- "target": 5992,
- "approved": 0,
- "voted": 53,
- "positiveVotes": 29,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711854",
- "username": "Gamma-Software",
- "fullName": "Valentin Rudloff (Gamma-Software)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711854/medium/0ae62f880c9fdec755310b2d551953ae.jpeg",
- "joined": "2021-04-14 14:22:21"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 4919,
- "target": 4740,
- "approved": 0,
- "voted": 14,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1065
- },
- {
- "user": {
- "id": "14875990",
- "username": "guilhermevendramini",
- "fullName": "Guilherme Vendramini (guilhermevendramini)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875990/medium/6c42a855600f60124d4fbb49962d2226.jpeg",
- "joined": "2021-08-11 22:26:41"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 4814,
- "target": 4505,
- "approved": 0,
- "voted": 768,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891244",
- "username": "vaiahmad",
- "fullName": "Ahmad Rifai (vaiahmad)",
- "avatarUrl": "https://www.gravatar.com/avatar/3d69123493966c573c54413f63909600?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 09:06:37"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 4563,
- "target": 4053,
- "approved": 0,
- "voted": 350,
- "positiveVotes": 51,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14862916",
- "username": "mbolfova",
- "fullName": "mbolfova",
- "avatarUrl": "https://www.gravatar.com/avatar/3d32d7c204254b0149dadc35770f7eaf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 04:22:56"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 4492,
- "target": 3576,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14865328",
- "username": "Lostday",
- "fullName": "Manuel Ignacio Caviedes (Lostday)",
- "avatarUrl": "https://www.gravatar.com/avatar/6654ce365e1d6eae2c3928cd70daede3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 17:04:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 4433,
- "target": 4627,
- "approved": 0,
- "voted": 127,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 879
- },
- {
- "user": {
- "id": "14733070",
- "username": "loopersosa",
- "fullName": "loopersosa",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg",
- "joined": "2021-04-30 11:10:38"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 4315,
- "target": 4860,
- "approved": 0,
- "voted": 45,
- "positiveVotes": 21,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795502",
- "username": "dasomoli",
- "fullName": "dasomoli",
- "avatarUrl": "https://www.gravatar.com/avatar/a0d1d5726af9b80e94348af794c321e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 10:23:07"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 3879,
- "target": 2691,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917179",
- "username": "reinholland88",
- "fullName": "Reza Al Farizi (reinholland88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917179/medium/92cd0de32c16fea70c7f00c6b3c2c9e4.PNG",
- "joined": "2021-09-10 12:20:11"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3781,
- "target": 3049,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 20,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14929095",
+ "preTranslated": 0,
+ "totalCosts": 8578
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8578
+ },
+ "translated": {
+ "tmMatch": 311,
+ "default": 8267,
+ "total": 8578
+ },
+ "targetTranslated": {
+ "tmMatch": 318,
+ "default": 6959,
+ "total": 7277
+ },
+ "translatedByMt": {
+ "tmMatch": 29,
+ "default": 9,
+ "total": 38
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 14955
+ },
+ "translationCosts": {
+ "tmMatch": 311,
+ "default": 8267,
+ "total": 8578
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14143907,
+ "username": "LQS_ZHTW_linguist",
+ "fullName": "LQS_ZHTW_linguist",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/bfccd98f25bea1b676f45938fc8a92ad?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 356
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 356
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 349,
+ "total": 356
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 541,
+ "total": 549
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1711
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 349,
+ "total": 356
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14932469,
+ "username": "LadyLurvecia",
+ "fullName": "LadyLurvecia",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932469/medium/15d23e44ef625fd6ceab89b52fdda53b.JPG",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14823752,
+ "username": "Leo500023",
+ "fullName": "Leo500023",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/367819555226fe04e92cd96b4e10c772?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 59
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 59
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891070,
+ "username": "LinaUlles",
+ "fullName": "LinaUlles",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6da01d04cd125a243608323649042656?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 710
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 710
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 704,
+ "total": 710
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 825,
+ "total": 832
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 704,
+ "total": 710
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830096,
+ "username": "LizYang",
+ "fullName": "LizYang",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830096/medium/1d43d1a252a80e0dbe6f6e6d15f1b46c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 104
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 104
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 104,
+ "total": 104
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867324,
+ "username": "Lltranslating",
+ "fullName": "Lltranslating",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d911615bac9a3b8687a2eb9af8988539?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 248
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 248,
+ "total": 248
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 283,
+ "total": 283
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 248,
+ "total": 248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905348,
+ "username": "MIntAP",
+ "fullName": "MIntAP",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c3743f4719855a1c27338db60123f863?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915329,
+ "username": "Mariam163",
+ "fullName": "Mariam163",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14915329/medium/504f7acd4e8cb7ee70fbe35240bed705.jpg",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 34,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 34,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14935087,
+ "username": "Martinpons",
+ "fullName": "Martinpons",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/469c9345494c800a82354e926ab96d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 114,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14903162,
+ "username": "MatheusItagiba",
+ "fullName": "MatheusItagiba",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/acdce498ab323bc42157ee44c4176a3f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1046
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1046
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 1036,
+ "total": 1046
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 950,
+ "total": 962
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 462,
+ "total": 465
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 1036,
+ "total": 1046
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14933273,
+ "username": "MelisaSonmez",
+ "fullName": "MelisaSonmez",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/57753792ad4c1879603e1c48ee889e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 94
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 94
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 94,
+ "total": 94
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14899828,
+ "username": "MickeyMelendez7",
+ "fullName": "MickeyMelendez7",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ce60ac7fdfb503c810a5ec177105f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846810,
+ "username": "Mohammedfaq4",
+ "fullName": "Mohammedfaq4",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e49b8112e5456a3293dd7f518bab73ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14916763,
+ "username": "MuhammadharoonShaukat",
+ "fullName": "MuhammadharoonShaukat",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4c2d21221e2483bea9d18c71516793e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14849836,
+ "username": "N0vae",
+ "fullName": "N0vae",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/565e2d9a420fd4da204585b8bc0def3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 230
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 230
+ },
+ "translated": {
+ "tmMatch": 157,
+ "default": 73,
+ "total": 230
+ },
+ "targetTranslated": {
+ "tmMatch": 219,
+ "default": 118,
+ "total": 337
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 157,
+ "default": 73,
+ "total": 230
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873098,
+ "username": "Nahandiee",
+ "fullName": "Nahandiee",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1362220b514ef8bdd60de2e7ea6cb6f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 187
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 187
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 182,
+ "total": 187
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 232,
+ "total": 246
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 182,
+ "total": 187
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14935073,
+ "username": "NerioDaniel",
+ "fullName": "NerioDaniel",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/10f959538c7cfee538b84efd2406ea9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 249
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 249
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 217,
+ "total": 249
+ },
+ "targetTranslated": {
+ "tmMatch": 37,
+ "default": 262,
+ "total": 299
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 217,
+ "total": 249
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905112,
+ "username": "Nightkiller98",
+ "fullName": "Nightkiller98",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c3a4e9b8fa350017f1129547cc95a683?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 291
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 291
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 288,
+ "total": 291
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 340,
+ "total": 344
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 288,
+ "total": 291
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14933019,
+ "username": "Nodral",
+ "fullName": "Nodral",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c49a614198d66adaecf930dea95b8419?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867836,
+ "username": "Pardesh",
+ "fullName": "Pardesh",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ae15bc8e88200e364707879af00f076e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844866,
+ "username": "PavelM56",
+ "fullName": "PavelM56",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6398b3e46a3e7054b7ca09c59d1ede2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 580
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 580
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 567,
+ "total": 580
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 481,
+ "total": 493
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 219,
+ "total": 221
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 567,
+ "total": 580
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14849118,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ad4fd22a59d84105c2f97a68d661071?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14903462,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2452433cbabc01d17f146a15621a0c2d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 825
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 825
+ },
+ "translated": {
+ "tmMatch": 154,
+ "default": 671,
+ "total": 825
+ },
+ "targetTranslated": {
+ "tmMatch": 160,
+ "default": 653,
+ "total": 813
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 65,
+ "total": 65
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 154,
+ "default": 671,
+ "total": 825
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865144,
+ "username": "REMOVED_USER",
+ "fullName": "REMOVED_USER",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f07a1c6153744ecce6fe71e9b206044b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855956,
+ "username": "RRKamil",
+ "fullName": "RRKamil",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/787a4f479b22ca62f51ecbe4be547b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845564,
+ "username": "Ramiro_ETH",
+ "fullName": "Ramiro_ETH",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d026f6edc66a9646bb43ce532e5b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 61
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 61
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 58,
+ "total": 61
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 66,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 58,
+ "total": 61
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14848120,
+ "username": "RickardW",
+ "fullName": "RickardW",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9c29e1f13b3ddc4562ed451b24d241e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 15,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905094,
+ "username": "Robbie12Lawler",
+ "fullName": "Robbie12Lawler",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9047220ba1bae1ef155706e5c606e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 371
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 371
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 370,
+ "total": 371
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 287,
+ "total": 288
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 370,
+ "total": 371
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14802836,
+ "username": "Ryeore",
+ "fullName": "Ryeore",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/fd23450634472a71b25a23da1ed4b329?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 0,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14689660,
+ "username": "SalvadorC",
+ "fullName": "SalvadorC",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8e96e3eccbbc48619793286ed5f08c2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1382
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1382
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 1362,
+ "total": 1382
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 1474,
+ "total": 1490
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 1362,
+ "total": 1382
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14930117,
+ "username": "SemioDan",
+ "fullName": "SemioDan",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/791fe9d92cc842432eb36e7312ab1245?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 287
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 287
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 287,
+ "total": 287
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 195,
+ "total": 195
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 287,
+ "total": 287
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14565190,
+ "username": "Sky_NiniKo",
+ "fullName": "Sky_NiniKo",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/481074cbd6e69b55df35ad0431c75082?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 7,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 8,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 7,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14870048,
+ "username": "Sunnyhk",
+ "fullName": "Sunnyhk",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/102f6302741e7b4349b06d0fb1bc33c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 13,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 28,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 13,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14681570,
+ "username": "Val21",
+ "fullName": "Val21",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a751b71711e0d1fb7c0ff58e27f21750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1319
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1319
+ },
+ "translated": {
+ "tmMatch": 40,
+ "default": 1279,
+ "total": 1319
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 1205,
+ "total": 1264
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 40,
+ "default": 1279,
+ "total": 1319
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897648,
+ "username": "Verar093",
+ "fullName": "Verar093",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c2ad271993412f703c043a0ef663e67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14792522,
+ "username": "WotCa",
+ "fullName": "WotCa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2805d3c0760cee8d6560761e9d71671d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 165
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 165
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 158,
+ "total": 165
+ },
+ "targetTranslated": {
+ "tmMatch": 36,
+ "default": 448,
+ "total": 484
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 158,
+ "total": 165
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13817659,
+ "username": "Xam089951",
+ "fullName": "Xam089951",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/51a567d03e673417de7b5d347bf65156?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 124
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 124
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 122,
+ "total": 124
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 117,
+ "total": 117
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 122,
+ "total": 124
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844128,
+ "username": "abumalikamr",
+ "fullName": "abumalikamr",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/341ead55964ea4cd1cd75ebfd3c3f4f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 49
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 49
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 49,
+ "total": 49
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13426340,
+ "username": "aitorla",
+ "fullName": "aitorla",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/92407cd6fab51fd7b6d083d9f853515c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 579
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eu",
+ "name": "Basque",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 579
+ },
+ "translated": {
+ "tmMatch": 143,
+ "default": 436,
+ "total": 579
+ },
+ "targetTranslated": {
+ "tmMatch": 130,
+ "default": 315,
+ "total": 445
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 143,
+ "default": 436,
+ "total": 579
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884570,
+ "username": "anastasias",
+ "fullName": "anastasias",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1a4b46d27be66e4c6b4db4b4bbedbd59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 28
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 28
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 27,
+ "total": 28
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845634,
+ "username": "andrejmnunes",
+ "fullName": "andrejmnunes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/81251e5f80461de5f05f16e9651c2212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14825340,
+ "username": "arctic51",
+ "fullName": "arctic51",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/097b4b755c59dbbf55017ad0647c05f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 72
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 72
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 64,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 72,
+ "total": 72
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14829686,
+ "username": "arnchpt",
+ "fullName": "arnchpt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2c2c6b4ff07878ac50e02fc7ca2019c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 173
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 173
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 177,
+ "total": 177
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 173,
+ "total": 173
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855548,
+ "username": "bayt",
+ "fullName": "bayt",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3053a78ca2d0c5091d982c9806e9e2a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 38,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 36,
+ "total": 37
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 38,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14849436,
+ "username": "bbc_h",
+ "fullName": "bbc_h",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/954adf8285d5a96d7e58518290e89f8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 195
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 195
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 192,
+ "total": 195
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 160,
+ "total": 163
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 192,
+ "total": 195
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14823390,
+ "username": "bitgalea",
+ "fullName": "bitgalea",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1125e27372dbf2c2f39bd22d7bff7752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 19,
+ "total": 29
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 22,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14774614,
+ "username": "biwenming",
+ "fullName": "biwenming",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ec1c9952af60a46c178ab66ac0873d50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1305
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1305
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 1271,
+ "total": 1305
+ },
+ "targetTranslated": {
+ "tmMatch": 59,
+ "default": 1890,
+ "total": 1949
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 49,
+ "total": 54
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 1271,
+ "total": 1305
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14903096,
+ "username": "blue_mrvn",
+ "fullName": "blue_mrvn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/690f1eaca7256dfdc02abdd51ec4f4b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 36,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 38,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14887772,
+ "username": "bruderbuck.eth",
+ "fullName": "bruderbuck.eth",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887772/medium/38c9634b12b554feef20f4e9f88bf8c1.png",
+ "preTranslated": 0,
+ "totalCosts": 1236
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1236
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 1234,
+ "total": 1236
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 1219,
+ "total": 1221
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 1234,
+ "total": 1236
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914189,
+ "username": "carloscuadro",
+ "fullName": "carloscuadro",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/575a0c9511af3edbc30e63e27eb4c9e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 227
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 227
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 227,
+ "total": 227
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 224,
+ "total": 224
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 227,
+ "total": 227
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14874804,
+ "username": "cg123",
+ "fullName": "cg123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ac933b9d10dd7f9559fdc39e35603357?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 17
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 17
+ },
+ "translated": {
+ "tmMatch": 11,
+ "default": 6,
+ "total": 17
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 174,
+ "total": 204
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 11,
+ "default": 6,
+ "total": 17
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881144,
+ "username": "clarinEX",
+ "fullName": "clarinEX",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e65239ac0398cfd2f9b202e6901b37b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 133
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 133
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 126,
+ "total": 126
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 133,
+ "total": 133
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14909801,
+ "username": "client2019",
+ "fullName": "client2019",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/048b048fbf8560ca3d71782944d0ce9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 15,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 15,
+ "total": 20
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 15,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881646,
+ "username": "constan2305",
+ "fullName": "constan2305",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cf566e9043b091f6632d9260c70fb352?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13805545,
+ "username": "crowbit",
+ "fullName": "crowbit",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13805545/medium/8b944306602f95c5d9adce2ef8bb68e7.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14905078,
+ "username": "cryptoboi21",
+ "fullName": "cryptoboi21",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9f0cbdf8fc9e85ca33cb1952af123cfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 449
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 449
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 447,
+ "total": 449
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 363,
+ "total": 364
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 447,
+ "total": 449
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14901548,
+ "username": "ctz0411",
+ "fullName": "ctz0411",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/cf42c2743649e5d62fb172dcde84594e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 0,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929095,
"username": "dangchi",
"fullName": "dangchi",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929095/medium/a42410898b37c709ef4d76967a9b97a9.jpg",
- "joined": "2021-09-19 07:35:15"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 3701,
- "target": 5014,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14643054",
- "username": "izayl",
- "fullName": "izayl",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643054/medium/d6dd01be4478ea8a2c0eb30797ab34cc.jpeg",
- "joined": "2021-05-28 23:42:25"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 3684,
- "target": 4000,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 775
- },
- {
- "user": {
- "id": "14834276",
- "username": "ElTitoDG",
- "fullName": "Julián Hinojosa Gil (ElTitoDG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png",
- "joined": "2021-07-10 06:14:07"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3497,
- "target": 3455,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 861
- },
- {
- "user": {
- "id": "14852734",
- "username": "0xEthDuzIt",
- "fullName": "ETHY-E (0xEthDuzIt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852734/medium/da1e9138c30b0fbcfd54f987a7e55328.jpg",
- "joined": "2021-07-25 19:01:51"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 3184,
- "target": 6108,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 74,
- "negativeVotes": 16,
- "winning": 0
- },
- {
- "user": {
- "id": "14714290",
- "username": "Wisnuadity",
- "fullName": "Wisnu Aditya (Wisnuadity)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714290/medium/fbae35aeca0836b0acfa8d9ebebfdcd1.jpg",
- "joined": "2021-07-26 01:46:49"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3127,
- "target": 2752,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 102,
- "negativeVotes": 11,
- "winning": 0
- },
- {
- "user": {
- "id": "14907071",
- "username": "HaiTran",
- "fullName": "Đăng Trần Hải (HaiTran)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907071/medium/caa03486c3c1a189a0eb0c71a56702b3.png",
- "joined": "2021-09-03 03:32:58"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 2985,
- "target": 4109,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888562",
- "username": "FWW",
- "fullName": "Masato FUJII (FWW)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888562/medium/d82ec0de0a39d7f254ce38fc3840d529.png",
- "joined": "2021-08-20 03:50:39"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 2971,
- "target": 8641,
- "approved": 0,
- "voted": 33,
- "positiveVotes": 15,
- "negativeVotes": 16,
- "winning": 0
- },
- {
- "user": {
- "id": "14804530",
- "username": "starcoinshine",
- "fullName": "frank wang (starcoinshine)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804530/medium/fd9833454bd05fff797a7ee790477d72.jpg",
- "joined": "2021-06-21 21:52:44"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2621,
- "target": 4126,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1403
- },
- {
- "user": {
- "id": "14884086",
- "username": "491415x",
- "fullName": "Dino Kralj (491415x)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884086/medium/eefd2b974d2e5b296cc406dc3065fba0.png",
- "joined": "2021-08-17 06:03:59"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2566,
- "target": 1994,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14864742",
+ "preTranslated": 0,
+ "totalCosts": 3701
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3701
+ },
+ "translated": {
+ "tmMatch": 214,
+ "default": 3487,
+ "total": 3701
+ },
+ "targetTranslated": {
+ "tmMatch": 380,
+ "default": 4634,
+ "total": 5014
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 214,
+ "default": 3487,
+ "total": 3701
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14795502,
+ "username": "dasomoli",
+ "fullName": "dasomoli",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a0d1d5726af9b80e94348af794c321e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3879
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3879
+ },
+ "translated": {
+ "tmMatch": 187,
+ "default": 3692,
+ "total": 3879
+ },
+ "targetTranslated": {
+ "tmMatch": 106,
+ "default": 2585,
+ "total": 2691
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 187,
+ "default": 3692,
+ "total": 3879
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891920,
+ "username": "diegomoretti",
+ "fullName": "diegomoretti",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/aa14a762e612a6074e0aa17d46c738ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 220
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 220
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 191,
+ "total": 220
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 195,
+ "total": 222
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 191,
+ "total": 220
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14916719,
+ "username": "erndevelop",
+ "fullName": "erndevelop",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/616a39f2f590e4d611da9061b6b152bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 24,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13962433,
+ "username": "ethereum.cn",
+ "fullName": "ethereum.cn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962433/medium/6a8b7d48c93a310b833e5f26db2aab4f.jpg",
+ "preTranslated": 0,
+ "totalCosts": 1793
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1793
+ },
+ "translated": {
+ "tmMatch": 156,
+ "default": 1637,
+ "total": 1793
+ },
+ "targetTranslated": {
+ "tmMatch": 475,
+ "default": 2181,
+ "total": 2656
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 156,
+ "default": 1637,
+ "total": 1793
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842502,
+ "username": "excelaa",
+ "fullName": "excelaa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/831f1e467000356793c95289198ac7bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14712154,
+ "username": "fivenicerice",
+ "fullName": "fivenicerice",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712154/medium/3730e404a7ef0a2e5f76426f84376d53.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2239
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2239
+ },
+ "translated": {
+ "tmMatch": 29,
+ "default": 2210,
+ "total": 2239
+ },
+ "targetTranslated": {
+ "tmMatch": 41,
+ "default": 3657,
+ "total": 3698
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 502,
+ "total": 502
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 29,
+ "default": 2210,
+ "total": 2239
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14382632,
+ "username": "gabe_san_",
+ "fullName": "gabe_san_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/ba104028940a36ea18502399fe70aef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 3,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865834,
+ "username": "georgi_kovachev",
+ "fullName": "georgi_kovachev",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865834/medium/5a384f6c7a697cb88524be5332fc8655.jpg",
+ "preTranslated": 0,
+ "totalCosts": 347
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 347
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 347,
+ "total": 347
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 372,
+ "total": 372
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 347,
+ "total": 347
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929487,
+ "username": "gutianyichn",
+ "fullName": "gutianyichn",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6aa15b2b5248c923eac9ccf554c8547a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 83,
+ "total": 83
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14922369,
+ "username": "halley.oliveira",
+ "fullName": "halley.oliveira",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/50becb2743c21fc6a72320fa8961e0d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 25
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 25
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873224,
+ "username": "haren724",
+ "fullName": "haren724",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/05e8aae1708a6c3b39dbf300192da0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 5,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 11,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 5,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14917397,
+ "username": "ijann_",
+ "fullName": "ijann_",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/af23c70f2e300427aad5461a15b2dc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 35
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 35
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 35,
+ "total": 35
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896728,
+ "username": "ilijarudes84",
+ "fullName": "ilijarudes84",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/c78bc289dad4d5c5e1cd3315e7a6f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 597
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 597
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 596,
+ "total": 597
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 627,
+ "total": 628
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 596,
+ "total": 597
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897212,
+ "username": "iosadcha",
+ "fullName": "iosadcha",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/21196c23e9d447ef70bb9f014aa28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895372,
+ "username": "iosayin",
+ "fullName": "iosayin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/0106b5930267370e77a54b23cd022fec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 493
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 493
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 476,
+ "total": 493
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 361,
+ "total": 369
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 476,
+ "total": 493
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861960,
+ "username": "isaul",
+ "fullName": "isaul",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/44895e9c99a8fde7d2fd25632415e024?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914493,
+ "username": "jagaroki",
+ "fullName": "jagaroki",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/46522ddc46f26f6fbdefcea4773a6f8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779018,
+ "username": "jaskoeth",
+ "fullName": "jaskoeth",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8985ed0bd166da1b98c9c957829d0c24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2348
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2348
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 2341,
+ "total": 2348
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 1619,
+ "total": 1626
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 2341,
+ "total": 2348
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14657804,
+ "username": "jhonnyvianello",
+ "fullName": "jhonnyvianello",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg",
+ "preTranslated": 0,
+ "totalCosts": 299
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 299
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 281,
+ "total": 299
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 303,
+ "total": 323
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 281,
+ "total": 299
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14943545,
+ "username": "k.otika",
+ "fullName": "k.otika",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/166d75bbff1b6b61474e4e64644a5e81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 173
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 173
+ },
+ "translated": {
+ "tmMatch": 24,
+ "default": 149,
+ "total": 173
+ },
+ "targetTranslated": {
+ "tmMatch": 27,
+ "default": 167,
+ "total": 194
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 46,
+ "total": 46
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 24,
+ "default": 149,
+ "total": 173
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12930933,
+ "username": "kerocate",
+ "fullName": "kerocate",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12930933/medium/98233a4ea01a32d666991eedd9c30a9a.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 0,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14928669,
+ "username": "knowwell",
+ "fullName": "knowwell",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f84d23e5e00cfce6b33405177e3a76f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14822530,
+ "username": "krishnagaurav",
+ "fullName": "krishnagaurav",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/80cfc37428c1f903133c139927c52fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 14
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 14
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 668,
+ "total": 668
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14851382,
+ "username": "krvtch",
+ "fullName": "krvtch",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/acc96f413e7d8f51233a8fe355461e73?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 337
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 337
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 334,
+ "total": 337
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 303,
+ "total": 306
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 334,
+ "total": 337
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896196,
+ "username": "leoclark",
+ "fullName": "leoclark",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7e9b882a9e897b57b3e28408fba53538?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 65,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844258,
+ "username": "lincoln019",
+ "fullName": "lincoln019",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/72b791ed133af9f4ceab21e3c93547bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 984
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 984
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 979,
+ "total": 984
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 968,
+ "total": 973
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 115,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 979,
+ "total": 984
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14813326,
+ "username": "lingwen",
+ "fullName": "lingwen",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a2ed20a7c9813e3e85a6ebb6c3397a7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14733070,
+ "username": "loopersosa",
+ "fullName": "loopersosa",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4315
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4315
+ },
+ "translated": {
+ "tmMatch": 90,
+ "default": 4225,
+ "total": 4315
+ },
+ "targetTranslated": {
+ "tmMatch": 119,
+ "default": 4741,
+ "total": 4860
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 90,
+ "default": 4225,
+ "total": 4315
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13971441,
+ "username": "lucidtranslations",
+ "fullName": "lucidtranslations",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://www.gravatar.com/avatar/8260e1494a988a5c98616aae905d4496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 450,
+ "default": 12102,
+ "total": 12552
+ },
+ "targetTranslated": {
+ "tmMatch": 1391,
+ "default": 31824,
+ "total": 33215
+ },
+ "translatedByMt": {
+ "tmMatch": 129,
+ "default": 2540,
+ "total": 2669
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 16432
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937371,
+ "username": "mainulkhaled",
+ "fullName": "mainulkhaled",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/71c448af11b12c4951d886ee6de6b596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 137,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 199,
+ "total": 200
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 137,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14826354,
+ "username": "manzin",
+ "fullName": "manzin",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b20136210328d604d9cd396ecb7e012d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 26,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 32,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 26,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14839218,
+ "username": "marianatcl",
+ "fullName": "marianatcl",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/771898c1e5d57a152272dae2f2641f20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 188
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 188
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 166,
+ "total": 188
+ },
+ "targetTranslated": {
+ "tmMatch": 26,
+ "default": 182,
+ "total": 208
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 166,
+ "total": 188
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14661636,
+ "username": "marino2105",
+ "fullName": "marino2105",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/90b0ccf4eae1678d86f5580c79c1f2bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 284
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 284
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 279,
+ "total": 284
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 336,
+ "total": 345
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 279,
+ "total": 284
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14831430,
+ "username": "markmaksi",
+ "fullName": "markmaksi",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4bb4f33b60109a59a63fb7372d791e38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 13,
+ "total": 13
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845960,
+ "username": "matusame",
+ "fullName": "matusame",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/2ba5acc9f88366ef55d0441d12483c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 719
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 719
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 711,
+ "total": 719
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 659,
+ "total": 668
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 711,
+ "total": 719
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14862916,
+ "username": "mbolfova",
+ "fullName": "mbolfova",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d32d7c204254b0149dadc35770f7eaf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4492
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4492
+ },
+ "translated": {
+ "tmMatch": 242,
+ "default": 4250,
+ "total": 4492
+ },
+ "targetTranslated": {
+ "tmMatch": 178,
+ "default": 3398,
+ "total": 3576
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 80,
+ "total": 86
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 242,
+ "default": 4250,
+ "total": 4492
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855294,
+ "username": "mikoto_1110",
+ "fullName": "mikoto_1110",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855294/medium/31cdc00d3b06b364eb79cd47e3e25812.jpg",
+ "preTranslated": 0,
+ "totalCosts": 911
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 911
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 903,
+ "total": 911
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 1657,
+ "total": 1672
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 69,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 903,
+ "total": 911
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13854995,
+ "username": "muten85",
+ "fullName": "muten85",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13854995/medium/201d1d1193a904192e9d8a18d70d0556.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 39,
+ "total": 39
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14822228,
+ "username": "nTaco",
+ "fullName": "nTaco",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/38cbc3eeebaf79b33d9901249efad48f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 35,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 104,
+ "total": 111
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 35,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14919827,
+ "username": "nbshaoye123",
+ "fullName": "nbshaoye123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/47364ac3d421a00d86b80f51355e4a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14912999,
+ "username": "nemetz83",
+ "fullName": "nemetz83",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1ef6670a20f27964e1859f46824d0774?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 530
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 530
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 526,
+ "total": 530
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 418,
+ "total": 424
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 526,
+ "total": 530
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14723652,
+ "username": "nigthguarder",
+ "fullName": "nigthguarder",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9ed9f22ebeb82c371b8a30a4d9c28fb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914311,
+ "username": "oleglody",
+ "fullName": "oleglody",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/88d1f74e942037fae969788836f15005?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 60
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 60
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 58,
+ "total": 60
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 75,
+ "total": 77
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 58,
+ "total": 60
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13317516,
+ "username": "olka",
+ "fullName": "olka",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13317516/medium/de56e77543599bd2c434479001852e5b.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14908477,
+ "username": "pamir04",
+ "fullName": "pamir04",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d0aa145db5cf0cb5ae0d4f30f63284e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 38
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 38
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 34,
+ "total": 38
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 39,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 34,
+ "total": 38
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14869408,
+ "username": "rezaabbasian",
+ "fullName": "rezaabbasian",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f27f8b419424846d12212697a4cc9752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 54
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 54
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 45,
+ "total": 45
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14766776,
+ "username": "rociodg",
+ "fullName": "rociodg",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/09514e41728e92cdf81fb58b8f487408?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14864742,
"username": "samson7125",
"fullName": "samson7125",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/c27132d583ad290cc5c6e3db6b760069?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 09:10:18"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 2510,
- "target": 1978,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14895934",
+ "preTranslated": 0,
+ "totalCosts": 2510
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2510
+ },
+ "translated": {
+ "tmMatch": 50,
+ "default": 2460,
+ "total": 2510
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 1925,
+ "total": 1978
+ },
+ "translatedByMt": {
+ "tmMatch": 26,
+ "default": 1570,
+ "total": 1596
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 50,
+ "default": 2460,
+ "total": 2510
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902198,
+ "username": "sobna123lampa",
+ "fullName": "sobna123lampa",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f51085ad1e1a530e652e6b6ecd1b9296?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 410
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 410
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 409,
+ "total": 410
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 290,
+ "total": 291
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 409,
+ "total": 410
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14827052,
+ "username": "spargwy",
+ "fullName": "spargwy",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/eb7d685a05c3711249dd58fef854c9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 131,
+ "total": 141
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 38,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 202,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12343167,
+ "username": "spolischook",
+ "fullName": "spolischook",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/e106204e09df019627176fcfddcd6f7b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 142
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 142
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 139,
+ "total": 142
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 110,
+ "total": 114
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 14,
+ "total": 14
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 139,
+ "total": 142
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14915807,
+ "username": "tsangz189",
+ "fullName": "tsangz189",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f00088ffdad322e46c3e2eb701b4d192?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 39
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 39
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 51,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 30,
+ "total": 39
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14909647,
+ "username": "tszar",
+ "fullName": "tszar",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d1a316a5f6951054e644a5eb673d5642?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 17,
+ "total": 17
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895552,
+ "username": "tutkun123",
+ "fullName": "tutkun123",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f3ea21ea1a9e2d03dc444f6a834df729?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1217
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1217
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 1213,
+ "total": 1217
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 1015,
+ "total": 1019
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 1213,
+ "total": 1217
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14936979,
+ "username": "ultranod",
+ "fullName": "ultranod",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9a6eff6771b117d40d9ead9c2329295f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14862460,
+ "username": "vdusart",
+ "fullName": "vdusart",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1e5982486a378fca6ee9afaef32c5482?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 167
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 167
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 167,
+ "total": 167
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 155,
+ "total": 155
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 167,
+ "total": 167
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14800544,
+ "username": "vj-codes",
+ "fullName": "vj-codes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1801099ce8fed3e7e395524675b7c332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 129,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 222,
+ "total": 228
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 129,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14824370,
+ "username": "wholopes",
+ "fullName": "wholopes",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9f5e4a75b583d8871359b17023f3712b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 236
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 236
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 236,
+ "total": 236
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 238,
+ "total": 238
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 236,
+ "total": 236
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14695500,
+ "username": "wuhjie",
+ "fullName": "wuhjie",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/a714b8339e9f214d7f577c93230fd5ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 13
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 13
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 10,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 9,
+ "total": 13
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902838,
+ "username": "xl11sunny",
+ "fullName": "xl11sunny",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67f7e8245031387087e1f6c9e11c1a67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 597
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 597
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 542,
+ "total": 597
+ },
+ "targetTranslated": {
+ "tmMatch": 69,
+ "default": 610,
+ "total": 679
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 542,
+ "total": 597
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14857902,
+ "username": "ytsdts336",
+ "fullName": "ytsdts336",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/20905d99c6ff28b4102d07d51e0af686?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 922
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 922
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 901,
+ "total": 922
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 650,
+ "total": 671
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 901,
+ "total": 922
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13894501,
+ "username": "yuchtyan",
+ "fullName": "yuchtyan",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13894501/medium/beb50eb157c8ed6305719b269fe5e56d.png",
+ "preTranslated": 0,
+ "totalCosts": 37
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 37
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 35,
+ "total": 37
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 35,
+ "total": 37
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895934,
"username": "zajko",
"fullName": "zajko",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/a8af8789126977526c620c2bd4b70daa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 18:03:51"
- },
- "languages": [
- {
- "id": "sl",
- "name": "Slovenian"
+ "preTranslated": 0,
+ "totalCosts": 2487
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2076
+ },
+ "translated": {
+ "tmMatch": 91,
+ "default": 1985,
+ "total": 2076
+ },
+ "targetTranslated": {
+ "tmMatch": 76,
+ "default": 1543,
+ "total": 1619
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 91,
+ "default": 1985,
+ "total": 2076
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2487,
- "target": 2027,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779018",
- "username": "jaskoeth",
- "fullName": "jaskoeth",
- "avatarUrl": "https://www.gravatar.com/avatar/8985ed0bd166da1b98c9c957829d0c24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 04:59:16"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 2348,
- "target": 1626,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13461670",
- "username": "GiorgioHerbie",
- "fullName": "GiorgioHerbie",
- "avatarUrl": "https://www.gravatar.com/avatar/842f442aeb23dc0a3f89ad10e1ba7a04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-06-05 13:07:19"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2311,
- "target": 1990,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6947
- },
- {
- "user": {
- "id": "14712154",
- "username": "fivenicerice",
- "fullName": "fivenicerice",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712154/medium/3730e404a7ef0a2e5f76426f84376d53.jpg",
- "joined": "2021-04-14 20:03:55"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2239,
- "target": 3698,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804410",
- "username": "cartneywong",
- "fullName": "Cartney Wong (cartneywong)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804410/medium/cba5413607865ca4efcda74f37ba418c.png",
- "joined": "2021-06-18 10:09:50"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 411
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 408,
+ "total": 411
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 405,
+ "total": 408
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 408,
+ "total": 411
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815312,
+ "username": "001-uk_00455358",
+ "fullName": "001-UK_00455358 (001-uk_00455358)",
+ "userRole": "Proofreader",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815312/medium/866bc874cf7462eff3219fa2d337e5f2.png",
+ "preTranslated": 0,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 312,
+ "default": 6180,
+ "total": 6492
+ },
+ "targetTranslated": {
+ "tmMatch": 293,
+ "default": 5418,
+ "total": 5711
+ },
+ "translatedByMt": {
+ "tmMatch": 23,
+ "default": 100,
+ "total": 123
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 6691
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895456,
+ "username": "AayushCurious",
+ "fullName": "AayushCurious",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895456/medium/4c25920dcdd629b12dfda520f6f0e718.png",
+ "preTranslated": 0,
+ "totalCosts": 231
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ne-NP",
+ "name": "Nepali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 231
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 230,
+ "total": 231
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 349,
+ "total": 350
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 230,
+ "total": 231
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14698060,
+ "username": "AbrahamYusuf",
+ "fullName": "Abraham Yusuf (AbrahamYusuf)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698060/medium/1bf8fb6a51e2a7684bb25b8a868d7204.png",
+ "preTranslated": 0,
+ "totalCosts": 1669
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1669
+ },
+ "translated": {
+ "tmMatch": 163,
+ "default": 1506,
+ "total": 1669
+ },
+ "targetTranslated": {
+ "tmMatch": 100,
+ "default": 1302,
+ "total": 1402
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 163,
+ "default": 1506,
+ "total": 1669
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896188,
+ "username": "Megalo-don",
+ "fullName": "Adonis Ferreira (Megalo-don)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896188/medium/f5f379d22d24f76f3a69d28b32c68e08.png",
+ "preTranslated": 0,
+ "totalCosts": 402
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 402
+ },
+ "translated": {
+ "tmMatch": 9,
+ "default": 393,
+ "total": 402
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 442,
+ "total": 456
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 9,
+ "default": 393,
+ "total": 402
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842980,
+ "username": "agathadeborja",
+ "fullName": "Agatha Andaluz De Borja (agathadeborja)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842980/medium/1178b247eb1cd0b5ac5a275d028f0ad3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891244,
+ "username": "vaiahmad",
+ "fullName": "Ahmad Rifai (vaiahmad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/3d69123493966c573c54413f63909600?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4563
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4563
+ },
+ "translated": {
+ "tmMatch": 300,
+ "default": 4263,
+ "total": 4563
+ },
+ "targetTranslated": {
+ "tmMatch": 284,
+ "default": 3769,
+ "total": 4053
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 300,
+ "default": 4263,
+ "total": 4563
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14854298,
+ "username": "sahlawiz",
+ "fullName": "Ahmed Sahlawiz (sahlawiz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854298/medium/d74fe68289efd3614f5daeff99c71d00.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 6,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 7,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1912,
- "target": 2094,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1574
- },
- {
- "user": {
- "id": "14942697",
- "username": "cclefjp",
- "fullName": "cclef (cclefjp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942697/medium/f0b6f7427184742914c4e061e485ecf0.jpeg",
- "joined": "2021-09-29 03:25:44"
- },
- "languages": [
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14828314,
+ "username": "164031",
+ "fullName": "Aiden (164031)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828314/medium/5d100860df80e1a9c1c8c6990cbefb5f.png",
+ "preTranslated": 0,
+ "totalCosts": 290
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 290
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 288,
+ "total": 290
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 454,
+ "total": 456
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 118,
+ "total": 118
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 288,
+ "total": 290
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "fullName": "Alberto Gómez Herrera (MirageIonova)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png",
+ "preTranslated": 0,
+ "totalCosts": 127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 127
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 124,
+ "total": 127
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 122,
+ "total": 125
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 124,
+ "total": 127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14914877,
+ "username": "alexding",
+ "fullName": "Alex (alexding)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14914877/medium/d5cd27d11988bc77c9d6dc68a9aa8ae5.jpg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 15,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 30,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 15,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14555882,
+ "username": "ElAmir",
+ "fullName": "Amir Reza (ElAmir)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/edcaf24c34ef3506613bad9099389fc6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 4934
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4934
+ },
+ "translated": {
+ "tmMatch": 190,
+ "default": 4744,
+ "total": 4934
+ },
+ "targetTranslated": {
+ "tmMatch": 243,
+ "default": 5748,
+ "total": 5991
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 1,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 190,
+ "default": 4744,
+ "total": 4934
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14881554,
+ "username": "amisha-adwani",
+ "fullName": "Amisha (amisha-adwani)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881554/medium/129e61bb9dafa27ea7bd84ebf2e145bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 368
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 368
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 365,
+ "total": 368
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 607,
+ "total": 613
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 365,
+ "total": 368
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14886122,
+ "username": "anjaymu09",
+ "fullName": "Ammaifali (anjaymu09)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886122/medium/ab2bf62d80ac24ffb5170b3e72b46aeb.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880134,
+ "username": "andrei.andrianov",
+ "fullName": "Andrei Andrianov (andrei.andrianov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880134/medium/f72d9db33a8ea5923123bd6592d36e1c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 103,
+ "default": 94,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 94,
+ "default": 67,
+ "total": 161
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 103,
+ "default": 94,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14851800,
+ "username": "chrisvu.wabash",
+ "fullName": "Anh Vu (chrisvu.wabash)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851800/medium/368f50b324d31a54a501da2837bceaad.png",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 92,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 69,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13872871,
+ "username": "AntwnhsM.",
+ "fullName": "Antwnhs M. (AntwnhsM.)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b478b15a022566e1891c6ec6055af76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14892798,
+ "username": "Arkagedon",
+ "fullName": "Arkagam A (Arkagedon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892798/medium/1590db87626e9cee6310c63f9d72a16e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 662
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 662
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 619,
+ "total": 662
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 744,
+ "total": 791
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 619,
+ "total": 662
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14828792,
+ "username": "rioobudi",
+ "fullName": "Aryo Pambudi (rioobudi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828792/medium/f69fd14bd2aa648696bac9e1eab3f927.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1777
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1777
+ },
+ "translated": {
+ "tmMatch": 34,
+ "default": 1743,
+ "total": 1777
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 1662,
+ "total": 1695
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 34,
+ "default": 1743,
+ "total": 1777
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14877478,
+ "username": "asrasaatchi1983",
+ "fullName": "Asra Saatchi (asrasaatchi1983)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877478/medium/2fe6df5e4ebe022459774a32ca100fd7.gif",
+ "preTranslated": 0,
+ "totalCosts": 220
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 220
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 212,
+ "total": 220
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 301,
+ "total": 326
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 212,
+ "total": 220
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13831937,
+ "username": "atamerco23",
+ "fullName": "Ata Çağan Atamer (atamerco23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13831937/medium/e1a794be136eb53ee2ec1d58afe8f370.jpg",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 12,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 12,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14869618,
+ "username": "msbarathi07",
+ "fullName": "Barathi M S (msbarathi07)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869618/medium/87fb1a90204c1d83ab5ff43906855789.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 155
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 155
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 151,
+ "total": 155
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 305,
+ "total": 312
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 2,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 151,
+ "total": 155
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14852154,
+ "username": "bartekbugajski",
+ "fullName": "Bartek Bugajski (bartekbugajski)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852154/medium/0039a82eff71b9ca0fe6a2d037273d3a.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1888,
- "target": 4550,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815414",
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 12,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14940215,
+ "username": "Blaslaw",
+ "fullName": "Blaslaw",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940215/medium/8287f3ca1e766a45b1e013f430de367f.png",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 54,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 59,
+ "total": 64
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 54,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959163,
+ "username": "bobjiang",
+ "fullName": "Bob Jiang (bobjiang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959163/medium/f0592e36e25621172a739a84f69d3099.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 32
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 32
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 19,
+ "total": 32
+ },
+ "targetTranslated": {
+ "tmMatch": 20,
+ "default": 27,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 19,
+ "total": 32
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14876952,
+ "username": "brayosimar",
+ "fullName": "Brayan GDesigner (brayosimar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876952/medium/2643e165c521aa4e9df368880d3f9e74.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 121
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 121
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 119,
+ "total": 121
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 102,
+ "total": 104
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 119,
+ "total": 121
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842426,
+ "username": "Brijesh_GeetAshok",
+ "fullName": "Brijesh GeetAshok (Brijesh_GeetAshok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4332a3cb3ddb2f8f80400c9175924f19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815414,
"username": "KoelhoSec",
"fullName": "Bruno Coelho (KoelhoSec)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815414/medium/cc746b15dd6d2fa3bc01369caaef44ed.png",
- "joined": "2021-06-30 07:07:16"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1864,
- "target": 1960,
- "approved": 0,
- "voted": 33,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868458",
+ "preTranslated": 0,
+ "totalCosts": 1864
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1864
+ },
+ "translated": {
+ "tmMatch": 26,
+ "default": 1838,
+ "total": 1864
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 1932,
+ "total": 1960
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 617,
+ "total": 619
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 26,
+ "default": 1838,
+ "total": 1864
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896038,
+ "username": "brunoviniciusdepaularodrigues",
+ "fullName": "Bruno Rodrigues (brunoviniciusdepaularodrigues)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896038/medium/459cc98d3903c4055eba1c4c680adefa.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14855564,
+ "username": "Budenkinder",
+ "fullName": "Budenkinder",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855564/medium/18eaf43a19b5b5491d87b7e117eba1af.png",
+ "preTranslated": 0,
+ "totalCosts": 725
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 725
+ },
+ "translated": {
+ "tmMatch": 71,
+ "default": 654,
+ "total": 725
+ },
+ "targetTranslated": {
+ "tmMatch": 62,
+ "default": 629,
+ "total": 691
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 71,
+ "default": 654,
+ "total": 725
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14874054,
+ "username": "work.research.closil",
+ "fullName": "CLOTILDE SILVA (work.research.closil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14874054/medium/b8c468681861135296f108ae592b801d.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 20
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 24,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 18,
+ "total": 20
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873046,
+ "username": "ycad",
+ "fullName": "Cady Zhou (ycad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873046/medium/d0c199ae81e6f1e4778b04692c599483.png",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 21,
+ "default": 11,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 3,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14886730,
+ "username": "charlyzona",
+ "fullName": "Carlos Rodríguez (charlyzona)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6539
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6539
+ },
+ "translated": {
+ "tmMatch": 78,
+ "default": 6461,
+ "total": 6539
+ },
+ "targetTranslated": {
+ "tmMatch": 84,
+ "default": 6239,
+ "total": 6323
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 358,
+ "total": 358
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 78,
+ "default": 6461,
+ "total": 6539
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14804410,
+ "username": "cartneywong",
+ "fullName": "Cartney Wong (cartneywong)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804410/medium/cba5413607865ca4efcda74f37ba418c.png",
+ "preTranslated": 0,
+ "totalCosts": 1912
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1912
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1912,
+ "total": 1912
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2094,
+ "total": 2094
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1912,
+ "total": 1912
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830280,
+ "username": "songnchant",
+ "fullName": "Changdles K (songnchant)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830280/medium/e544df6876b73ceedb0049774e96c599.png",
+ "preTranslated": 0,
+ "totalCosts": 110
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 110
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 103,
+ "total": 110
+ },
+ "targetTranslated": {
+ "tmMatch": 8,
+ "default": 83,
+ "total": 91
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 103,
+ "total": 110
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13994103,
+ "username": "Alphaaa",
+ "fullName": "Christian Mazzola (Alphaaa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994103/medium/8fada44cb640c9f08080ce6ff2955f65.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907227,
+ "username": "CivicLee",
+ "fullName": "Civic Lee (CivicLee)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907227/medium/1f411053836d29859329adf9d2dc3e8b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 150
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 150
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 140,
+ "total": 150
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 209,
+ "total": 231
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 140,
+ "total": 150
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14075861,
+ "username": "ClaireBeydon",
+ "fullName": "Claire Beydon (ClaireBeydon)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/91c39f2896fb48bdd42c5cc53e42d2ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 10,
+ "default": 75,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 75,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 17,
+ "total": 22
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 10,
+ "default": 75,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14424588,
+ "username": "crowdsourcekurdi",
+ "fullName": "Crowdsource Kurdish (crowdsourcekurdi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14424588/medium/f5640057ffa61f6c90deb847b4c2b622.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 679
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ku",
+ "name": "Kurdish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 679
+ },
+ "translated": {
+ "tmMatch": 175,
+ "default": 504,
+ "total": 679
+ },
+ "targetTranslated": {
+ "tmMatch": 201,
+ "default": 573,
+ "total": 774
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 175,
+ "default": 504,
+ "total": 679
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14853674,
+ "username": "fixprogram",
+ "fullName": "Denis (fixprogram)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853674/medium/bcb233640afd14d2584ebedb9347d249.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 73,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 70,
+ "total": 74
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 73,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14850742,
+ "username": "diegordsx",
+ "fullName": "Diego Rodrigues (diegordsx)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850742/medium/aff2ed82538d1337e6edc75ed81bd679.png",
+ "preTranslated": 0,
+ "totalCosts": 190
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 190
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 185,
+ "total": 190
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 183,
+ "total": 189
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 185,
+ "total": 190
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844054,
+ "username": "Dimitar1512",
+ "fullName": "Dimitar Ivanov (Dimitar1512)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/21544dd242a11c209c548dd3889e9759?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 714
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 714
+ },
+ "translated": {
+ "tmMatch": 190,
+ "default": 524,
+ "total": 714
+ },
+ "targetTranslated": {
+ "tmMatch": 189,
+ "default": 463,
+ "total": 652
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 190,
+ "default": 524,
+ "total": 714
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884086,
+ "username": "491415x",
+ "fullName": "Dino Kralj (491415x)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884086/medium/eefd2b974d2e5b296cc406dc3065fba0.png",
+ "preTranslated": 0,
+ "totalCosts": 2566
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2566
+ },
+ "translated": {
+ "tmMatch": 337,
+ "default": 2229,
+ "total": 2566
+ },
+ "targetTranslated": {
+ "tmMatch": 280,
+ "default": 1714,
+ "total": 1994
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 0,
+ "total": 13
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 337,
+ "default": 2229,
+ "total": 2566
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937349,
+ "username": "doritbenvakil",
+ "fullName": "Dorit Ben Vakil (doritbenvakil)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937349/medium/d94e0fb70b144ad3e88293dd5538a58e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 29
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 29
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 22,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 29,
+ "total": 29
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14852734,
+ "username": "0xEthDuzIt",
+ "fullName": "ETHY-E (0xEthDuzIt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852734/medium/da1e9138c30b0fbcfd54f987a7e55328.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3184
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3184
+ },
+ "translated": {
+ "tmMatch": 199,
+ "default": 2985,
+ "total": 3184
+ },
+ "targetTranslated": {
+ "tmMatch": 522,
+ "default": 5586,
+ "total": 6108
+ },
+ "translatedByMt": {
+ "tmMatch": 24,
+ "default": 344,
+ "total": 368
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 199,
+ "default": 2985,
+ "total": 3184
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14945275,
+ "username": "orellana.edgardo8901",
+ "fullName": "Edgardo Yanez (orellana.edgardo8901)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945275/medium/b1d4c6e48bf2de4b9bbfd1cae7585cd5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14911889,
+ "username": "Doria98",
+ "fullName": "Eduardo Doria (Doria98)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911889/medium/6a8c99b54c65c2c66efadaa47f227bb0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 660
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 660
+ },
+ "translated": {
+ "tmMatch": 56,
+ "default": 604,
+ "total": 660
+ },
+ "targetTranslated": {
+ "tmMatch": 56,
+ "default": 604,
+ "total": 660
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 56,
+ "default": 604,
+ "total": 660
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12926776,
+ "username": "mejlus",
+ "fullName": "Egidijus Griešnovas (mejlus)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/8ec6a8da77fd961397b9919437b50e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 11
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 11,
+ "total": 12
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 10,
+ "total": 11
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14868458,
"username": "EiriniGearkidou",
"fullName": "Eirini Gerakidou (EiriniGearkidou)",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/0473f289979b00a0ee2670e7337eabb4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 03:40:05"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 1820
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eo",
+ "name": "Esperanto",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "el",
- "name": "Greek"
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1786
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 1769,
+ "total": 1786
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 1909,
+ "total": 1937
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 203,
+ "total": 204
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 1769,
+ "total": 1786
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14587890,
+ "username": "Elikill58",
+ "fullName": "Elikill58",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587890/medium/1d5b3a9de8a7b7f6082357f1fe99d654.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 329
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 329
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 309,
+ "total": 329
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 371,
+ "total": 396
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 309,
+ "total": 329
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14544944,
+ "username": "emersonlaurentino",
+ "fullName": "Emerson Laurentino (emersonlaurentino)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544944/medium/307497c490b2c0b11fd011f5f1938cf8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14877334,
+ "username": "Ergi18",
+ "fullName": "Ergi (Ergi18)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877334/medium/4c61f13d89fbae72ff61c0bc2071b6fe.png",
+ "preTranslated": 0,
+ "totalCosts": 10
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13897487,
+ "username": "ethdotorg",
+ "fullName": "Ethereum.org Team (ethdotorg)",
+ "userRole": "Owner",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13897487/medium/246e50d7e9ccde07088ed892b07a0efd.png",
+ "preTranslated": 111536,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 198,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "eo",
- "name": "Esperanto"
- }
- ],
- "translated": 1820,
- "target": 1977,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 6,
- "winning": 0
- },
- {
- "user": {
- "id": "13962433",
- "username": "ethereum.cn",
- "fullName": "ethereum.cn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13962433/medium/6a8b7d48c93a310b833e5f26db2aab4f.jpg",
- "joined": "2019-08-25 21:27:17"
- },
- "languages": [
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 14,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1793,
- "target": 2656,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 894
- },
- {
- "user": {
- "id": "14828792",
- "username": "rioobudi",
- "fullName": "Aryo Pambudi (rioobudi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828792/medium/f69fd14bd2aa648696bac9e1eab3f927.jpeg",
- "joined": "2021-07-06 03:12:09"
- },
- "languages": [
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 852,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1777,
- "target": 1695,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 60,
- "negativeVotes": 11,
- "winning": 0
- },
- {
- "user": {
- "id": "14846010",
- "username": "mfreeman59",
- "fullName": "Kengo,MATSUDA (mfreeman59)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846010/medium/efddb08fc8f1affe72a25cf693c1f947.jpeg",
- "joined": "2021-07-19 21:57:51"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 87,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1676,
- "target": 4412,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14698060",
- "username": "AbrahamYusuf",
- "fullName": "Abraham Yusuf (AbrahamYusuf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14698060/medium/1bf8fb6a51e2a7684bb25b8a868d7204.png",
- "joined": "2021-04-05 05:24:48"
- },
- "languages": [
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1669,
- "target": 1402,
- "approved": 0,
- "voted": 43,
- "positiveVotes": 39,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14897770",
- "username": "0xmike7",
- "fullName": "0xmike7",
- "avatarUrl": "https://www.gravatar.com/avatar/e1316d7734c2eb6961aac5d35ad9aabe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 03:10:27"
- },
- "languages": [
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 50,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 1585,
- "target": 1629,
- "approved": 0,
- "voted": 18,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896794",
- "username": "Paulchemouni",
- "fullName": "Paul Chemouni (Paulchemouni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896794/medium/7c6117fe2c7fda4e2d5cc0c089d1d9e4.jpeg",
- "joined": "2021-08-26 09:30:05"
- },
- "languages": [
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 3004,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1559,
- "target": 1664,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837284",
- "username": "PaN-0-1",
- "fullName": "PaN-0-1",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837284/medium/7f1ad04832bb028fe66564804f5326ee.png",
- "joined": "2021-07-12 21:27:19"
- },
- "languages": [
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 815,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1492,
- "target": 1489,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916229",
- "username": "yannfurrer33",
- "fullName": "Yann Furrer (yannfurrer33)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916229/medium/ef270c9207fc2731c23a32a1765629a1.png",
- "joined": "2021-09-09 19:53:07"
- },
- "languages": [
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 9035,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1419,
- "target": 1396,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14689660",
- "username": "SalvadorC",
- "fullName": "SalvadorC",
- "avatarUrl": "https://www.gravatar.com/avatar/8e96e3eccbbc48619793286ed5f08c2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-30 05:58:48"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 9017,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 1382,
- "target": 1490,
- "approved": 0,
- "voted": 26,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14681570",
- "username": "Val21",
- "fullName": "Val21",
- "avatarUrl": "https://www.gravatar.com/avatar/a751b71711e0d1fb7c0ff58e27f21750?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-24 08:07:57"
- },
- "languages": [
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 697,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 1319,
- "target": 1264,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 0,
- "winning": 10042
- },
- {
- "user": {
- "id": "14842386",
- "username": "rxchard",
- "fullName": "Richard (rxchard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842386/medium/26d2e5d1d9b5f0e6ec25878feb24840b.jpeg",
- "joined": "2021-07-16 16:58:31"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 795,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1318,
- "target": 1221,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774614",
- "username": "biwenming",
- "fullName": "biwenming",
- "avatarUrl": "https://www.gravatar.com/avatar/ec1c9952af60a46c178ab66ac0873d50?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 03:12:44"
- },
- "languages": [
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 536,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 1305,
- "target": 1949,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2605
- },
- {
- "user": {
- "id": "14887772",
- "username": "bruderbuck.eth",
- "fullName": "bruderbuck.eth",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887772/medium/38c9634b12b554feef20f4e9f88bf8c1.png",
- "joined": "2021-08-19 12:12:39"
- },
- "languages": [
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 257,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1236,
- "target": 1221,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895552",
- "username": "tutkun123",
- "fullName": "tutkun123",
- "avatarUrl": "https://www.gravatar.com/avatar/f3ea21ea1a9e2d03dc444f6a834df729?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 11:54:34"
- },
- "languages": [
+ "language": {
+ "id": "eo",
+ "name": "Esperanto",
+ "tmSavings": 0,
+ "preTranslate": 34,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 1217,
- "target": 1019,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838794",
- "username": "JuanB.Mont",
- "fullName": "JuanB.Mont",
- "avatarUrl": "https://www.gravatar.com/avatar/96849b7ff7bc62a4f1c9bebbcfebd42e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 02:20:54"
- },
- "languages": [
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 86,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1212,
- "target": 1090,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 187
- },
- {
- "user": {
- "id": "14907607",
- "username": "dqduong102",
- "fullName": "Quốc Dương Đàng (dqduong102)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907607/medium/4f8e413bd85cd3aabc332c49bab08fae.jpeg",
- "joined": "2021-09-03 10:19:26"
- },
- "languages": [
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 223,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 1186,
- "target": 1678,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823260",
- "username": "omahs",
- "fullName": "omahs",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg",
- "joined": "2021-07-31 09:49:50"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 8366,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 1092,
- "target": 1047,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14751138",
- "username": "cryptohakka",
- "fullName": "hakka (cryptohakka)",
- "avatarUrl": "https://www.gravatar.com/avatar/67c7ea6eb6029a188b2757333abdf96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-11 10:25:28"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 6451,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1078,
- "target": 2383,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 594
- },
- {
- "user": {
- "id": "14907079",
- "username": "Ayano85",
- "fullName": "Ayano85",
- "avatarUrl": "https://www.gravatar.com/avatar/640e34ede10c1d066f45c5b529790ffb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-03 03:36:38"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 2140,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 1071,
- "target": 927,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14923593",
- "username": "simone.pana.2",
- "fullName": "Simone Panattoni (simone.pana.2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14923593/medium/d109453b70ed12f8e71960dd652efd17.jpeg",
- "joined": "2021-09-15 09:27:41"
- },
- "languages": [
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 6,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1054,
- "target": 1148,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903162",
- "username": "MatheusItagiba",
- "fullName": "MatheusItagiba",
- "avatarUrl": "https://www.gravatar.com/avatar/acdce498ab323bc42157ee44c4176a3f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 07:21:43"
- },
- "languages": [
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 106,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 1046,
- "target": 962,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844258",
- "username": "lincoln019",
- "fullName": "lincoln019",
- "avatarUrl": "https://www.gravatar.com/avatar/72b791ed133af9f4ceab21e3c93547bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 11:56:07"
- },
- "languages": [
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 674,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 984,
- "target": 973,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837806",
- "username": "yisosd",
- "fullName": "iso Y (yisosd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837806/medium/a024dfd35587ad67921934a9d6c6410e.png",
- "joined": "2021-07-13 07:50:49"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 8398,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 978,
- "target": 1157,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14910319",
- "username": "KHANAS",
- "fullName": "Khanas Roksolana (KHANAS)",
- "avatarUrl": "https://www.gravatar.com/avatar/d45cb6b71d538c2c6137e22eeeb523f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 17:24:01"
- },
- "languages": [
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 64,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 971,
- "target": 757,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14805280",
- "username": "EckoZhang",
- "fullName": "Mengjia Zhang (EckoZhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805280/medium/a294008196ce6b1800aa175fc7112ad0.jpeg",
- "joined": "2021-06-18 09:53:10"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 3263,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 968,
- "target": 1302,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 603
- },
- {
- "user": {
- "id": "14866158",
- "username": "Kazel",
- "fullName": "Kazel",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866158/medium/95b9c5e14784dc12d1399307e66d4eb2.gif",
- "joined": "2021-08-04 08:56:36"
- },
- "languages": [
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 9169,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 937,
- "target": 876,
- "approved": 0,
- "voted": 19,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812492",
- "username": "samuelPapranec",
- "fullName": "Samuel Papranec (samuelPapranec)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812492/medium/b30337d97ba9d1f073a090434191e294.jpeg",
- "joined": "2021-06-23 11:03:54"
- },
- "languages": [
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 3349,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 928,
- "target": 752,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857902",
- "username": "ytsdts336",
- "fullName": "ytsdts336",
- "avatarUrl": "https://www.gravatar.com/avatar/20905d99c6ff28b4102d07d51e0af686?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 09:20:37"
- },
- "languages": [
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 6,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 922,
- "target": 671,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855294",
- "username": "mikoto_1110",
- "fullName": "mikoto_1110",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855294/medium/31cdc00d3b06b364eb79cd47e3e25812.jpg",
- "joined": "2021-07-27 12:49:02"
- },
- "languages": [
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 9,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 911,
- "target": 1672,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 20,
- "negativeVotes": 15,
- "winning": 0
- },
- {
- "user": {
- "id": "14829178",
- "username": "chenrui5199",
- "fullName": "陈蕊 (chenrui5199)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/e6159a10b18799b3820a73a86a3d8780.png",
- "joined": "2021-07-06 08:41:18"
- },
- "languages": [
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 754,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
+ "language": {
+ "id": "ky",
+ "name": "Kyrgyz",
+ "tmSavings": 0,
+ "preTranslate": 23,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 107,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 894,
- "target": 1210,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884278",
- "username": "snoopey",
- "fullName": "Vlad Styopin (snoopey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884278/medium/6b9b5c53c7e1fbcc9ecb49f7171ac225.jpeg",
- "joined": "2021-08-17 08:29:43"
- },
- "languages": [
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 15,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 881,
- "target": 693,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865420",
- "username": "Sergitxin",
- "fullName": "Sergitxin22 (Sergitxin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865420/medium/c93a1a81a1c919979a6da85151c0bf66.png",
- "joined": "2021-08-03 19:19:10"
- },
- "languages": [
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 552,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 881,
- "target": 842,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14665128",
- "username": "Pierlu_be",
- "fullName": "Pierluigi Belpassi (Pierlu_be)",
- "avatarUrl": "https://www.gravatar.com/avatar/b09dd2530fb46b957c0a8c72efb1fc5b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-12 12:58:35"
- },
- "languages": [
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 587,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 872,
- "target": 946,
- "approved": 0,
- "voted": 37,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 587
- },
- {
- "user": {
- "id": "14903462",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/2452433cbabc01d17f146a15621a0c2d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 11:31:30"
- },
- "languages": [
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 46,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 825,
- "target": 813,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14172881",
- "username": "47hzwhale",
- "fullName": "Ӓlibek Aytjan (47hzwhale)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14172881/medium/dfd0e5efd5dac49f200b7bd24503eb4c.jpg",
- "joined": "2021-08-30 11:20:22"
- },
- "languages": [
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 230,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "kk",
- "name": "Kazakh"
- }
- ],
- "translated": 768,
- "target": 622,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14855564",
- "username": "Budenkinder",
- "fullName": "Budenkinder",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14855564/medium/18eaf43a19b5b5491d87b7e117eba1af.png",
- "joined": "2021-07-27 17:51:26"
- },
- "languages": [
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 888,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 725,
- "target": 691,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 3,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14845960",
- "username": "matusame",
- "fullName": "matusame",
- "avatarUrl": "https://www.gravatar.com/avatar/2ba5acc9f88366ef55d0441d12483c72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 20:06:03"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 9025,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 719,
- "target": 668,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872676",
- "username": "VLN_1",
- "fullName": "Vicente Lorente Noguera (VLN_1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872676/medium/8d173c43fac87f0975a31275048360c8.jpeg",
- "joined": "2021-08-09 14:31:28"
- },
- "languages": [
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 610,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 714,
- "target": 652,
- "approved": 0,
- "voted": 17,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844054",
- "username": "Dimitar1512",
- "fullName": "Dimitar Ivanov (Dimitar1512)",
- "avatarUrl": "https://www.gravatar.com/avatar/21544dd242a11c209c548dd3889e9759?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 08:28:01"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 2917,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 714,
- "target": 652,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891070",
- "username": "LinaUlles",
- "fullName": "LinaUlles",
- "avatarUrl": "https://www.gravatar.com/avatar/6da01d04cd125a243608323649042656?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 07:28:14"
- },
- "languages": [
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 10,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 710,
- "target": 832,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14819294",
- "username": "sekret.tikhon",
- "fullName": "Тихон Секретарев (sekret.tikhon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819294/medium/eba1fc89da13c46a9ab31296200085f5.png",
- "joined": "2021-06-28 16:30:25"
- },
- "languages": [
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 9040,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 682,
- "target": 514,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 9,
- "negativeVotes": 1,
- "winning": 5
- },
- {
- "user": {
- "id": "14803566",
- "username": "w158rk",
- "fullName": "w158rk",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803566/medium/25038b66bd6a7c6e5b55d2b4aa7681c0.png",
- "joined": "2021-06-17 22:44:14"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 1963,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 681,
- "target": 818,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 83
- },
- {
- "user": {
- "id": "14424588",
- "username": "crowdsourcekurdi",
- "fullName": "Crowdsource Kurdish (crowdsourcekurdi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14424588/medium/f5640057ffa61f6c90deb847b4c2b622.jpeg",
- "joined": "2021-09-29 04:00:18"
- },
- "languages": [
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 524,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ku",
- "name": "Kurdish"
- }
- ],
- "translated": 679,
- "target": 774,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14824866",
- "username": "Worr",
- "fullName": "Kadir Ozmen (Worr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824866/medium/d9facd000e85e1be46f8d8f667b6f4d7.jpeg",
- "joined": "2021-07-02 16:58:23"
- },
- "languages": [
+ "language": {
+ "id": "si-LK",
+ "name": "Sinhala",
+ "tmSavings": 0,
+ "preTranslate": 7,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 679,
- "target": 494,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892798",
- "username": "Arkagedon",
- "fullName": "Arkagam A (Arkagedon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892798/medium/1590db87626e9cee6310c63f9d72a16e.jpeg",
- "joined": "2021-08-23 12:20:37"
- },
- "languages": [
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 287,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 662,
- "target": 791,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 15,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911889",
- "username": "Doria98",
- "fullName": "Eduardo Doria (Doria98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911889/medium/6a8c99b54c65c2c66efadaa47f227bb0.jpeg",
- "joined": "2021-09-06 19:04:26"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 605,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 660,
- "target": 660,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14868732",
- "username": "mykola.incognito",
- "fullName": "mykola incognito (mykola.incognito)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868732/medium/f62443bab75b8e6f6e607a4cf3df9a72.png",
- "joined": "2021-08-06 08:20:32"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 8310,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 653,
- "target": 589,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902040",
- "username": "umarhidayatullah16",
- "fullName": "Umar Hidayatullah (umarhidayatullah16)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902040/medium/873a0fe05a4609c6b051ecec7c6c9508.png",
- "joined": "2021-08-30 11:33:56"
- },
- "languages": [
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 47,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 625,
- "target": 500,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838806",
- "username": "CONSEQUENL50",
- "fullName": "CONSEQUENL50",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838806/medium/f1b727400eeeff54d73ab03020db79b3.PNG",
- "joined": "2021-07-25 06:54:23"
- },
- "languages": [
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 144,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 614,
- "target": 521,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902838",
- "username": "xl11sunny",
- "fullName": "xl11sunny",
- "avatarUrl": "https://www.gravatar.com/avatar/67f7e8245031387087e1f6c9e11c1a67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 03:07:50"
- },
- "languages": [
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 75,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 597,
- "target": 679,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896728",
- "username": "ilijarudes84",
- "fullName": "ilijarudes84",
- "avatarUrl": "https://www.gravatar.com/avatar/c78bc289dad4d5c5e1cd3315e7a6f4b2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 08:54:36"
- },
- "languages": [
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 47,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "mk",
- "name": "Macedonian"
- }
- ],
- "translated": 597,
- "target": 628,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844866",
- "username": "PavelM56",
- "fullName": "PavelM56",
- "avatarUrl": "https://www.gravatar.com/avatar/6398b3e46a3e7054b7ca09c59d1ede2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 02:49:08"
- },
- "languages": [
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 20,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 580,
- "target": 493,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13426340",
- "username": "aitorla",
- "fullName": "aitorla",
- "avatarUrl": "https://www.gravatar.com/avatar/92407cd6fab51fd7b6d083d9f853515c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 08:32:26"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 552,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "eu",
- "name": "Basque"
- }
- ],
- "translated": 579,
- "target": 445,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865340",
- "username": "tolunaydundar",
- "fullName": "Tolunay Dündar (tolunaydundar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865340/medium/66516d0d0ba888ac686b0fcc44b9e321.jpg",
- "joined": "2021-08-03 17:25:38"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 990,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 574,
- "target": 487,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14835760",
- "username": "Pineapple010223",
- "fullName": "Pineapple010223",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14835760/medium/36a5126df6f3fab680a105268d03592c.jpg",
- "joined": "2021-07-11 16:14:50"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 3675,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 535,
- "target": 848,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 148
- },
- {
- "user": {
- "id": "14912999",
- "username": "nemetz83",
- "fullName": "nemetz83",
- "avatarUrl": "https://www.gravatar.com/avatar/1ef6670a20f27964e1859f46824d0774?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-07 13:44:03"
- },
- "languages": [
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 37,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 530,
- "target": 424,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14857374",
- "username": "AlexandraM",
- "fullName": "AlexandraM",
- "avatarUrl": "https://www.gravatar.com/avatar/03efa1ca80db76aa09b28020af3e68bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-29 05:05:52"
- },
- "languages": [
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 1431,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sk",
- "name": "Slovak"
- }
- ],
- "translated": 512,
- "target": 432,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895372",
- "username": "iosayin",
- "fullName": "iosayin",
- "avatarUrl": "https://www.gravatar.com/avatar/0106b5930267370e77a54b23cd022fec?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 09:45:24"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 307,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 493,
- "target": 369,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844630",
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 8,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14878484,
+ "username": "FahadOsaimi",
+ "fullName": "Fahad Osaimi (FahadOsaimi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878484/medium/a1b78f9090f604c464b910d59796731a.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 114,
+ "total": 118
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 5,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844630,
"username": "federossotto",
"fullName": "Federico Rossotto (federossotto)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844630/medium/d45be4767bd1a7607afefb86919b908c.jpeg",
- "joined": "2021-08-24 13:29:48"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 487
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 487
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 456,
+ "total": 487
+ },
+ "targetTranslated": {
+ "tmMatch": 38,
+ "default": 545,
+ "total": 583
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 456,
+ "total": 487
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14917615,
+ "username": "G3Bp2ONcJAJ03zq",
+ "fullName": "G3Bp2ONcJAJ03zq",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917615/medium/c2f490d143480e70240b34aa48ec6f76.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880826,
+ "username": "igenekim",
+ "fullName": "GENE KIM (igenekim)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880826/medium/321dd4c0081b9a2246cd14956dd1c36a.png",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 52,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14771528,
+ "username": "gsonicsad",
+ "fullName": "GSS Germanstreetstyle (gsonicsad)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771528/medium/c51abef9fc773d08735d7b7445d524c4.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891780,
+ "username": "GabrielaAndere",
+ "fullName": "Gabriela Andere (GabrielaAndere)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891780/medium/27acbd59c98271b2bbb592ad38bc5f87.jpg",
+ "preTranslated": 0,
+ "totalCosts": 62
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 62
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 58,
+ "total": 62
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 64,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 38,
+ "total": 39
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 58,
+ "total": 62
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846468,
+ "username": "khanh30125",
+ "fullName": "Gia Khánh Phạm (khanh30125)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846468/medium/3749044fc47f1a5aa666bfcc50f7af1d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 75
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 75
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 72,
+ "total": 75
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 118,
+ "total": 124
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 72,
+ "total": 75
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14841924,
+ "username": "giulia29",
+ "fullName": "Giulia Iuppa (giulia29)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14841924/medium/8491c59d47fdaf576a34ff07a9808c5c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 19,
+ "total": 19
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13330091,
+ "username": "Neurone",
+ "fullName": "Giuseppe Bertone (Neurone)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13330091/medium/3b845ffc974bc9d909b60d7ed4ca5bf8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14875990,
+ "username": "guilhermevendramini",
+ "fullName": "Guilherme Vendramini (guilhermevendramini)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875990/medium/6c42a855600f60124d4fbb49962d2226.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4814
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4814
+ },
+ "translated": {
+ "tmMatch": 158,
+ "default": 4656,
+ "total": 4814
+ },
+ "targetTranslated": {
+ "tmMatch": 153,
+ "default": 4352,
+ "total": 4505
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 582,
+ "total": 582
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 158,
+ "default": 4656,
+ "total": 4814
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14900372,
+ "username": "h2-so4",
+ "fullName": "H2-SO4 (h2-so4)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900372/medium/0e2d91393c967253a354ded009b0df61.png",
+ "preTranslated": 0,
+ "totalCosts": 16
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 16
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 16,
+ "total": 16
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12455773,
+ "username": "uzeconomist",
+ "fullName": "Hamza Foziljonov (uzeconomist)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/72756a61e0c4489135139c4fd27da269?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867212,
+ "username": "haritz_950423",
+ "fullName": "Haritz Lopez (haritz_950423)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867212/medium/f2d03c7459424f9158deca133bb7a6db.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 79
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 79
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 79,
+ "total": 79
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14709432,
+ "username": "s.c.macchiato",
+ "fullName": "Haruka Kawamura (s.c.macchiato)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709432/medium/cdfb5efd65d125af9b5d5a1d17d039f8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 34
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 34
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 93,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865958,
+ "username": "hasanmumtaz",
+ "fullName": "Hasan Mumtaz (hasanmumtaz)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865958/medium/cf8ccfc57528109bd94fb6dde9ec456f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 18,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 31,
+ "total": 42
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 2,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 18,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14890278,
+ "username": "Hephaistos357",
+ "fullName": "Hephaistos357",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890278/medium/7fd731668afeab1f389fbe0b256f0619.png",
+ "preTranslated": 0,
+ "totalCosts": 20
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 6,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 4,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 6,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 487,
- "target": 583,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867990",
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 10
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 10,
+ "total": 10
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14877588,
+ "username": "haddadhesam",
+ "fullName": "Hesam Haddad (haddadhesam)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877588/medium/fd55575b0f149dd88deb161c48e961bf.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 109
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 109
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 109,
+ "total": 109
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 138,
+ "total": 138
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 109,
+ "total": 109
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880056,
+ "username": "hiorst8",
+ "fullName": "Hi St8 (hiorst8)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880056/medium/97a843bea0c1b053719867e5e17584aa.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 170,
+ "total": 170
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929235,
+ "username": "Rikr16",
+ "fullName": "Hozan Al Hazin (Rikr16)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6c4f698f7d586c079a9e31fb6f883d4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 211
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 211
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 210,
+ "total": 211
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 178,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 210,
+ "total": 211
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14033202,
+ "username": "Huynhanh883",
+ "fullName": "Huynhanh83 (Huynhanh883)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033202/medium/9283f613d1807b20fdbc4c7a07a54ed1.png",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 12,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14566994,
+ "username": "papoy3",
+ "fullName": "Hydro Honey 3000 (papoy3)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14566994/medium/27c38d4eb236018e454793c342fbf118.jpg",
+ "preTranslated": 0,
+ "totalCosts": 44865
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44865
+ },
+ "translated": {
+ "tmMatch": 1021,
+ "default": 43844,
+ "total": 44865
+ },
+ "targetTranslated": {
+ "tmMatch": 1049,
+ "default": 42111,
+ "total": 43160
+ },
+ "translatedByMt": {
+ "tmMatch": 128,
+ "default": 29253,
+ "total": 29381
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1021,
+ "default": 43844,
+ "total": 44865
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14801848,
+ "username": "jasonlou22",
+ "fullName": "Iasonas Loukaidis (jasonlou22)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801848/medium/ce8cf5bd5bd16320aadbd8438ce2c4b6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 100
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 100
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 84,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14891034,
+ "username": "igor.ciolac",
+ "fullName": "Igor Ciolac (igor.ciolac)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891034/medium/d0954f264a71ebadb2c802cccc7ac38f.png",
+ "preTranslated": 0,
+ "totalCosts": 148
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 148
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 148,
+ "total": 148
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 153,
+ "total": 153
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 148,
+ "total": 148
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13893213,
+ "username": "RelliuG",
+ "fullName": "Isaac Silva (RelliuG)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13893213/medium/88d6b8bda7b6073efd27b5a1799694cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 434
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 434
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 431,
+ "total": 434
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 447,
+ "total": 450
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 96,
+ "total": 96
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 431,
+ "total": 434
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867990,
"username": "jasperhart",
"fullName": "Jasper 't Hart (jasperhart)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867990/medium/ff04b27d870cfd316e6f20cfd87e438a.png",
- "joined": "2021-08-05 16:24:39"
- },
- "languages": [
+ "preTranslated": 0,
+ "totalCosts": 472
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 472
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 465,
+ "total": 472
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 473,
+ "total": 480
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 360,
+ "total": 366
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 465,
+ "total": 472
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14894112,
+ "username": "Spuknit",
+ "fullName": "Jenner Falconi (Spuknit)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894112/medium/c70d81f75092cc062472ff2457d73c09.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 244,
+ "total": 244
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 100,
+ "total": 100
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 197,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14822732,
+ "username": "kingway",
+ "fullName": "Jingwei Zou (kingway)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822732/medium/5fbcf45bc14f5cbe8d207e8adee7bfc1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 40
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 40
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 40,
+ "total": 40
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830540,
+ "username": "Keonez",
+ "fullName": "Joe Tribbiani (Keonez)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830540/medium/0c57d4c791795b7bcdc9f6775936ef7a.gif",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 46,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 40,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14780362,
+ "username": "88wcJoWl",
+ "fullName": "Jona (88wcJoWl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4964dc649d64bbb95e174e1949a779a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 171
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 171
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 171,
+ "total": 171
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 156,
+ "total": 156
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 57,
+ "total": 57
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 171,
+ "total": 171
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14879636,
+ "username": "joseferde",
+ "fullName": "Josef Erde (joseferde)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879636/medium/ddd7c42a87b94cfaf57783881127f849.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 0,
+ "total": 14
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14687676,
+ "username": "joseachemazzei",
+ "fullName": "José A. Mazzei (joseachemazzei)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg",
+ "preTranslated": 0,
+ "totalCosts": 225
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 225
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 225,
+ "total": 225
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 222,
+ "total": 222
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 225,
+ "total": 225
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14941689,
+ "username": "JossVog",
+ "fullName": "José Bernal (JossVog)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14941689/medium/bda6c6857a8faad62b2e05e88afec386.png",
+ "preTranslated": 0,
+ "totalCosts": 45
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 45
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 26,
+ "total": 45
+ },
+ "targetTranslated": {
+ "tmMatch": 22,
+ "default": 26,
+ "total": 48
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 26,
+ "total": 45
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14920111,
+ "username": "JueK3y",
+ "fullName": "JueK3y | Personal Account (JueK3y)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920111/medium/2a49cdd81e2cab1e2190009caa3de573.png",
+ "preTranslated": 0,
+ "totalCosts": 6731
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6731
+ },
+ "translated": {
+ "tmMatch": 360,
+ "default": 6371,
+ "total": 6731
+ },
+ "targetTranslated": {
+ "tmMatch": 373,
+ "default": 6161,
+ "total": 6534
+ },
+ "translatedByMt": {
+ "tmMatch": 26,
+ "default": 56,
+ "total": 82
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 360,
+ "default": 6371,
+ "total": 6731
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14834276,
+ "username": "ElTitoDG",
+ "fullName": "Julián Hinojosa Gil (ElTitoDG)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png",
+ "preTranslated": 0,
+ "totalCosts": 3497
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3497
+ },
+ "translated": {
+ "tmMatch": 49,
+ "default": 3448,
+ "total": 3497
+ },
+ "targetTranslated": {
+ "tmMatch": 57,
+ "default": 3398,
+ "total": 3455
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 20,
+ "total": 20
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 49,
+ "default": 3448,
+ "total": 3497
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896216,
+ "username": "kabilan",
+ "fullName": "Kabilan (kabilan)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896216/medium/624d3b93f0d213ed07b9beef492d09c3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 8
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "targetTranslated": {
+ "tmMatch": 28,
+ "default": 226,
+ "total": 254
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 5,
+ "total": 8
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14824866,
+ "username": "Worr",
+ "fullName": "Kadir Ozmen (Worr)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14824866/medium/d9facd000e85e1be46f8d8f667b6f4d7.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 679
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 679
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 676,
+ "total": 679
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 490,
+ "total": 494
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 676,
+ "total": 679
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14927445,
+ "username": "kazutaka3226",
+ "fullName": "Kaz Tak (kazutaka3226)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927445/medium/0a9fc623888037236c754e61afcb1ea7.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 59,
+ "total": 59
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14880458,
+ "username": "sekisanchi",
+ "fullName": "Kazunori Seki (sekisanchi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7434df198795c08088636407dc7f96c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 26548
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26548
+ },
+ "translated": {
+ "tmMatch": 1182,
+ "default": 25366,
+ "total": 26548
+ },
+ "targetTranslated": {
+ "tmMatch": 3089,
+ "default": 58524,
+ "total": 61613
+ },
+ "translatedByMt": {
+ "tmMatch": 65,
+ "default": 10842,
+ "total": 10907
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1182,
+ "default": 25366,
+ "total": 26548
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846010,
+ "username": "mfreeman59",
+ "fullName": "Kengo,MATSUDA (mfreeman59)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846010/medium/efddb08fc8f1affe72a25cf693c1f947.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1676
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1676
+ },
+ "translated": {
+ "tmMatch": 67,
+ "default": 1609,
+ "total": 1676
+ },
+ "targetTranslated": {
+ "tmMatch": 156,
+ "default": 4256,
+ "total": 4412
+ },
+ "translatedByMt": {
+ "tmMatch": 11,
+ "default": 445,
+ "total": 456
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 67,
+ "default": 1609,
+ "total": 1676
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14910319,
+ "username": "KHANAS",
+ "fullName": "Khanas Roksolana (KHANAS)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/d45cb6b71d538c2c6137e22eeeb523f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 971
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 971
+ },
+ "translated": {
+ "tmMatch": 43,
+ "default": 928,
+ "total": 971
+ },
+ "targetTranslated": {
+ "tmMatch": 47,
+ "default": 710,
+ "total": 757
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 143,
+ "total": 149
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 43,
+ "default": 928,
+ "total": 971
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14830248,
+ "username": "KingGame001",
+ "fullName": "King Game (KingGame001)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830248/medium/0c6cb9850478dd68dd3552998b05eea4.png",
+ "preTranslated": 0,
+ "totalCosts": 128
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 128
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 85,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 128,
+ "total": 128
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14779158,
+ "username": "K0ue1",
+ "fullName": "Kouei (K0ue1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png",
+ "preTranslated": 0,
+ "totalCosts": 48852
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48852
+ },
+ "translated": {
+ "tmMatch": 1361,
+ "default": 47491,
+ "total": 48852
+ },
+ "targetTranslated": {
+ "tmMatch": 2362,
+ "default": 63868,
+ "total": 66230
+ },
+ "translatedByMt": {
+ "tmMatch": 27,
+ "default": 20,
+ "total": 47
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1361,
+ "default": 47491,
+ "total": 48852
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14932861,
+ "username": "kristinebui299",
+ "fullName": "Kristine B (kristinebui299)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7ac4eab3f69b49953eaa21b3e968a496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 52
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 52
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 47,
+ "total": 52
+ },
+ "targetTranslated": {
+ "tmMatch": 7,
+ "default": 63,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 0,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 47,
+ "total": 52
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14815876,
+ "username": "LUMOGROUP",
+ "fullName": "LUMOGROUP",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815876/medium/8debc09b5ece0d371f6a54dd295372b6.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14845846,
+ "username": "LaytonBerth",
+ "fullName": "Layton Berth (LaytonBerth)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845846/medium/33dd43eca062e1472466df8f0d1d1e3f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 197
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 197
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 195,
+ "total": 197
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 199,
+ "total": 201
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 195,
+ "total": 197
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14846664,
+ "username": "donny.darco",
+ "fullName": "Leon Te (donny.darco)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846664/medium/7d61ca2c4b5dc23e2c385b52b51b9cce.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 24
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 24
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 24,
+ "total": 24
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12596551,
+ "username": "lidiam",
+ "fullName": "Lidia Mayoral (lidiam)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12596551/medium/4d64ba444829e0a830179079cbf8fd80.png",
+ "preTranslated": 0,
+ "totalCosts": 200
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 81
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 78,
+ "total": 81
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 90,
+ "total": 93
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 78,
+ "total": 81
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 472,
- "target": 480,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905078",
- "username": "cryptoboi21",
- "fullName": "cryptoboi21",
- "avatarUrl": "https://www.gravatar.com/avatar/9f0cbdf8fc9e85ca33cb1952af123cfa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 14:46:43"
- },
- "languages": [
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 119
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 111,
+ "total": 119
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 76,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 111,
+ "total": 119
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14897560,
+ "username": "LilyX0309",
+ "fullName": "Lily Zhou (LilyX0309)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/7a33ca1183c03e2e9df2ba74129f4e56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 44
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 44
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14908081,
+ "username": "luca.buglioli",
+ "fullName": "Luca Buglioli (luca.buglioli)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908081/medium/a6d00d2a7406dca4ec0b1c8557607f4d.png",
+ "preTranslated": 0,
+ "totalCosts": 48
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 48
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 53,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 48,
+ "total": 48
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14442984,
+ "username": "marseluca",
+ "fullName": "Luca Marseglia (marseluca)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442984/medium/2f899f501af675c0081dff102f33b2ab.jpg",
+ "preTranslated": 0,
+ "totalCosts": 85
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 85
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 83,
+ "total": 85
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 89,
+ "total": 91
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 83,
+ "total": 85
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13544774,
+ "username": "LukaK",
+ "fullName": "Luka Kropec (LukaK)",
+ "userRole": "Manager",
+ "avatarUrl": "https://www.gravatar.com/avatar/4536fcbc2dc226c427318126070e090d?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 21104,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sq",
+ "name": "Albanian",
+ "tmSavings": 0,
+ "preTranslate": 126,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 449,
- "target": 364,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13893213",
- "username": "RelliuG",
- "fullName": "Isaac Silva (RelliuG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13893213/medium/88d6b8bda7b6073efd27b5a1799694cc.jpeg",
- "joined": "2021-09-06 08:58:24"
- },
- "languages": [
+ "language": {
+ "id": "am",
+ "name": "Amharic",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 434,
- "target": 450,
- "approved": 0,
- "voted": 34,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14863670",
- "username": "Fjip",
- "fullName": "Fjip",
- "avatarUrl": "https://www.gravatar.com/avatar/8bfdb4c5d5880bc97e561e52d640bfb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-02 14:29:19"
- },
- "languages": [
+ "language": {
+ "id": "ar",
+ "name": "Arabic",
+ "tmSavings": 0,
+ "preTranslate": 920,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 144
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 416,
- "target": 417,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902198",
- "username": "sobna123lampa",
- "fullName": "sobna123lampa",
- "avatarUrl": "https://www.gravatar.com/avatar/f51085ad1e1a530e652e6b6ecd1b9296?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-30 13:44:13"
- },
- "languages": [
+ "language": {
+ "id": "bn",
+ "name": "Bengali",
+ "tmSavings": 0,
+ "preTranslate": 81,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 410,
- "target": 291,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896464",
- "username": "420Monty69",
- "fullName": "420Monty69",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896464/medium/4358f147e415e6175d852389f1075884.png",
- "joined": "2021-08-26 04:58:46"
- },
- "languages": [
+ "language": {
+ "id": "bi",
+ "name": "Bislama",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
+ "language": {
+ "id": "br-FR",
+ "name": "Breton",
+ "tmSavings": 0,
+ "preTranslate": 13,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "hr",
- "name": "Croatian"
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 820,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 160
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 409,
- "target": 364,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896188",
- "username": "Megalo-don",
- "fullName": "Adonis Ferreira (Megalo-don)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896188/medium/f5f379d22d24f76f3a69d28b32c68e08.png",
- "joined": "2021-08-25 22:48:23"
- },
- "languages": [
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 864,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 34
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 402,
- "target": 456,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14821880",
- "username": "jonathanandrade10",
- "fullName": "jonathanandrade10",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821880/medium/59c6c840e75ec03af8b88b5005744137.jpeg",
- "joined": "2021-06-30 12:47:47"
- },
- "languages": [
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 934,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 218
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 386,
- "target": 407,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13830805",
- "username": "kecrily",
- "fullName": "Percy (kecrily)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13830805/medium/93feb6bb91075026d6409acb05c90edd.jpeg",
- "joined": "2021-07-05 04:30:56"
- },
- "languages": [
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 701,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 88
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 386,
- "target": 500,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 220
- },
- {
- "user": {
- "id": "14905094",
- "username": "Robbie12Lawler",
- "fullName": "Robbie12Lawler",
- "avatarUrl": "https://www.gravatar.com/avatar/9047220ba1bae1ef155706e5c606e157?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 14:58:23"
- },
- "languages": [
+ "language": {
+ "id": "da",
+ "name": "Danish",
+ "tmSavings": 0,
+ "preTranslate": 369,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- }
- ],
- "translated": 371,
- "target": 288,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896404",
- "username": "Gymfreak92",
- "fullName": "Gymfreak92",
- "avatarUrl": "https://www.gravatar.com/avatar/d33350c910d9b7b08a25c6e1c82e7ca0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 04:05:38"
- },
- "languages": [
+ "language": {
+ "id": "nl",
+ "name": "Dutch",
+ "tmSavings": 0,
+ "preTranslate": 313,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 370,
- "target": 287,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881554",
- "username": "amisha-adwani",
- "fullName": "Amisha (amisha-adwani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881554/medium/129e61bb9dafa27ea7bd84ebf2e145bf.jpeg",
- "joined": "2021-08-15 15:18:45"
- },
- "languages": [
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 42,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 368,
- "target": 613,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884566",
- "username": "sparsacolligodutwitter",
- "fullName": "Sparsa Colligo (sparsacolligodutwitter)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884566/medium/c1f416e00e569be883a1c6d8f566d117.jpeg",
- "joined": "2021-08-17 11:52:14"
- },
- "languages": [
+ "language": {
+ "id": "fi",
+ "name": "Finnish",
+ "tmSavings": 0,
+ "preTranslate": 85,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 356,
- "target": 347,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14143907",
- "username": "LQS_ZHTW_linguist",
- "fullName": "LQS_ZHTW_linguist",
- "avatarUrl": "https://www.gravatar.com/avatar/bfccd98f25bea1b676f45938fc8a92ad?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-03-04 00:21:12"
- },
- "languages": [
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 30,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 13
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 356,
- "target": 549,
- "approved": 1711,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 356
- },
- {
- "user": {
- "id": "14865834",
- "username": "georgi_kovachev",
- "fullName": "georgi_kovachev",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865834/medium/5a384f6c7a697cb88524be5332fc8655.jpg",
- "joined": "2021-09-02 09:14:53"
- },
- "languages": [
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 253,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 6,
+ "total": 24
+ },
+ "targetTranslated": {
+ "tmMatch": 17,
+ "default": 5,
+ "total": 22
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 131
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 347,
- "target": 372,
- "approved": 0,
- "voted": 15,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851382",
- "username": "krvtch",
- "fullName": "krvtch",
- "avatarUrl": "https://www.gravatar.com/avatar/acc96f413e7d8f51233a8fe355461e73?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-24 06:45:19"
- },
- "languages": [
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 703,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 362
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 337,
- "target": 306,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904798",
- "username": "HelloYSS",
- "fullName": "fidel pereira (HelloYSS)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904798/medium/545f00d30e7c01e5210295f88ef43c9f.png",
- "joined": "2021-09-01 11:17:51"
- },
- "languages": [
+ "language": {
+ "id": "gu-IN",
+ "name": "Gujarati",
+ "tmSavings": 0,
+ "preTranslate": 147,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 332,
- "target": 313,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897468",
- "username": "Gurx",
- "fullName": "Gurx",
- "avatarUrl": "https://www.gravatar.com/avatar/17c04f473116a5288b97d6a7a9e03ed6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 21:02:33"
- },
- "languages": [
+ "language": {
+ "id": "he",
+ "name": "Hebrew",
+ "tmSavings": 0,
+ "preTranslate": 225,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 331,
- "target": 270,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14558364",
- "username": "Zachinquarantine",
- "fullName": "Zachinquarantine",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558364/medium/f255e187347bd3356751f4c43d10f4be.jpeg",
- "joined": "2021-05-07 09:25:15"
- },
- "languages": [
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 637,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 74
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 330,
- "target": 279,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14587890",
- "username": "Elikill58",
- "fullName": "Elikill58",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587890/medium/1d5b3a9de8a7b7f6082357f1fe99d654.jpeg",
- "joined": "2021-01-21 12:06:22"
- },
- "languages": [
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 70,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 4
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 329,
- "target": 396,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 114
- },
- {
- "user": {
- "id": "14857060",
- "username": "slobato711",
- "fullName": "Sergio Lobato Ramos (slobato711)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14857060/medium/16b052b6094cc8e9e2a1b9d493e20c30.png",
- "joined": "2021-07-28 22:35:19"
- },
- "languages": [
+ "language": {
+ "id": "ig",
+ "name": "Igbo",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 326,
- "target": 302,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14920051",
- "username": "panatagama",
- "fullName": "Panatagama (panatagama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920051/medium/9ba58eec03e143bcd1acbe5b2ecf8250.jpg",
- "joined": "2021-09-13 02:27:51"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 441,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 33
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 322,
- "target": 289,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878048",
- "username": "BINOMFX",
- "fullName": "BINOMFX",
- "avatarUrl": "https://www.gravatar.com/avatar/a6dfc7e15329eadbc61eb905f1bab860?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-13 02:35:36"
- },
- "languages": [
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 313,
- "target": 251,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931651",
- "username": "sinsinpurin",
- "fullName": "masaki obayashi (sinsinpurin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931651/medium/3e26483770249bd37034cfefe44469f0.jpeg",
- "joined": "2021-09-21 05:34:54"
- },
- "languages": [
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 659,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 123
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 305,
- "target": 834,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14858450",
- "username": "marcio.vallep",
- "fullName": "Marcio Vallep (marcio.vallep)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14858450/medium/78a1cc0054358247a009cd3993270109.jpeg",
- "joined": "2021-07-30 01:36:46"
- },
- "languages": [
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 12,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 303,
- "target": 287,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657804",
- "username": "jhonnyvianello",
- "fullName": "jhonnyvianello",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg",
- "joined": "2021-03-07 19:07:27"
- },
- "languages": [
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 299,
- "target": 323,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "13756885",
- "username": "Kenjii",
- "fullName": "Kenjii",
- "avatarUrl": "https://www.gravatar.com/avatar/2676e1ee36216229cfc692b9ce1e859c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-03 12:07:49"
- },
- "languages": [
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 517,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 100
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 292,
- "target": 294,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905112",
- "username": "Nightkiller98",
- "fullName": "Nightkiller98",
- "avatarUrl": "https://www.gravatar.com/avatar/c3a4e9b8fa350017f1129547cc95a683?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 15:09:52"
- },
- "languages": [
+ "language": {
+ "id": "ky",
+ "name": "Kyrgyz",
+ "tmSavings": 0,
+ "preTranslate": 2,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 291,
- "target": 344,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14828314",
- "username": "164031",
- "fullName": "Aiden (164031)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14828314/medium/5d100860df80e1a9c1c8c6990cbefb5f.png",
- "joined": "2021-07-05 15:35:04"
- },
- "languages": [
+ "language": {
+ "id": "lt",
+ "name": "Lithuanian",
+ "tmSavings": 0,
+ "preTranslate": 106,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 290,
- "target": 456,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 48
- },
- {
- "user": {
- "id": "14930117",
- "username": "SemioDan",
- "fullName": "SemioDan",
- "avatarUrl": "https://www.gravatar.com/avatar/791fe9d92cc842432eb36e7312ab1245?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-20 03:14:43"
- },
- "languages": [
+ "language": {
+ "id": "mk",
+ "name": "Macedonian",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 287,
- "target": 195,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14661636",
- "username": "marino2105",
- "fullName": "marino2105",
- "avatarUrl": "https://www.gravatar.com/avatar/90b0ccf4eae1678d86f5580c79c1f2bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 18:58:02"
- },
- "languages": [
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 117,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 284,
- "target": 345,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 87
- },
- {
- "user": {
- "id": "14866294",
- "username": "Burinat",
- "fullName": "Burinat",
- "avatarUrl": "https://www.gravatar.com/avatar/167f1a1305f2bb8d6bcf92833ba65233?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 10:30:41"
- },
- "languages": [
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 329,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 20
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 279,
- "target": 283,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14837106",
- "username": "rofis",
- "fullName": "Rofis Elias Filho (rofis)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837106/medium/e87698d84d41483de2a57483ff5d9455.jpeg",
- "joined": "2021-07-12 17:08:44"
- },
- "languages": [
+ "language": {
+ "id": "mr",
+ "name": "Marathi",
+ "tmSavings": 0,
+ "preTranslate": 275,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 276,
- "target": 279,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14931377",
- "username": "gansfoer",
- "fullName": "Илья Панфилов (gansfoer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931377/medium/6e09fc77f43e6939d342b7aaa7daf622.png",
- "joined": "2021-09-21 23:36:02"
- },
- "languages": [
+ "language": {
+ "id": "mn",
+ "name": "Mongolian",
+ "tmSavings": 0,
+ "preTranslate": 138,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 24
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 276,
- "target": 167,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935073",
- "username": "NerioDaniel",
- "fullName": "NerioDaniel",
- "avatarUrl": "https://www.gravatar.com/avatar/10f959538c7cfee538b84efd2406ea9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 14:19:59"
- },
- "languages": [
+ "language": {
+ "id": "no",
+ "name": "Norwegian",
+ "tmSavings": 0,
+ "preTranslate": 79,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 249,
- "target": 299,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867324",
- "username": "Lltranslating",
- "fullName": "Lltranslating",
- "avatarUrl": "https://www.gravatar.com/avatar/d911615bac9a3b8687a2eb9af8988539?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 05:58:53"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 248,
- "target": 283,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14831696",
- "username": "sajjad.k.btc",
- "fullName": "Sajjad Kadkhodayi (sajjad.k.btc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831696/medium/761047e774f85ccbe49fdf1cbce4a429.jpeg",
- "joined": "2021-07-08 05:33:47"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 248,
- "target": 249,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14727038",
- "username": "agolautner",
- "fullName": "agolautner",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727038/medium/4150668cd11c03c029aeaaa44409248e.png",
- "joined": "2021-04-26 05:47:12"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 247,
- "target": 227,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1735
- },
- {
- "user": {
- "id": "14940333",
- "username": "Angela_Borda",
- "fullName": "Angela_Borda",
- "avatarUrl": "https://www.gravatar.com/avatar/1bf93e45fbc3caf8e5f4be83fff266eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-27 11:11:32"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 241,
- "target": 306,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14675712",
- "username": "LEMIBANDDEXARI",
- "fullName": "MIBAND (LEMIBANDDEXARI)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/3416b6f2cac5da2e70205556774c847e.png",
- "joined": "2021-03-26 08:03:58"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 237,
- "target": 253,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 12,
- "negativeVotes": 0,
- "winning": 49
- },
- {
- "user": {
- "id": "14824370",
- "username": "wholopes",
- "fullName": "wholopes",
- "avatarUrl": "https://www.gravatar.com/avatar/9f5e4a75b583d8871359b17023f3712b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-02 08:11:52"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 236,
- "target": 238,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895456",
- "username": "AayushCurious",
- "fullName": "AayushCurious",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14895456/medium/4c25920dcdd629b12dfda520f6f0e718.png",
- "joined": "2021-08-25 10:45:53"
- },
- "languages": [
- {
- "id": "ne-NP",
- "name": "Nepali"
- }
- ],
- "translated": 231,
- "target": 350,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849836",
- "username": "N0vae",
- "fullName": "N0vae",
- "avatarUrl": "https://www.gravatar.com/avatar/565e2d9a420fd4da204585b8bc0def3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-23 00:03:40"
- },
- "languages": [
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 1474,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 358
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 230,
- "target": 337,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14914189",
- "username": "carloscuadro",
- "fullName": "carloscuadro",
- "avatarUrl": "https://www.gravatar.com/avatar/575a0c9511af3edbc30e63e27eb4c9e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 10:52:02"
- },
- "languages": [
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 8,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 2
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 227,
- "target": 224,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14687676",
- "username": "joseachemazzei",
- "fullName": "José A. Mazzei (joseachemazzei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg",
- "joined": "2021-03-28 21:04:49"
- },
- "languages": [
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 267,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 21
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 225,
- "target": 222,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 942
- },
- {
- "user": {
- "id": "13845025",
- "username": "Bajoodle",
- "fullName": "Bajoodle",
- "avatarUrl": "https://www.gravatar.com/avatar/9a43f170b18626ddce403ce0b81ced35?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-11 15:41:59"
- },
- "languages": [
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 670,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 118
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "da",
- "name": "Danish"
- }
- ],
- "translated": 223,
- "target": 225,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877478",
- "username": "asrasaatchi1983",
- "fullName": "Asra Saatchi (asrasaatchi1983)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877478/medium/2fe6df5e4ebe022459774a32ca100fd7.gif",
- "joined": "2021-08-12 16:00:31"
- },
- "languages": [
+ "language": {
+ "id": "pa-IN",
+ "name": "Punjabi",
+ "tmSavings": 0,
+ "preTranslate": 3,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 220,
- "target": 326,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891920",
- "username": "diegomoretti",
- "fullName": "diegomoretti",
- "avatarUrl": "https://www.gravatar.com/avatar/aa14a762e612a6074e0aa17d46c738ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-22 23:20:24"
- },
- "languages": [
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 505,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 63
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 220,
- "target": 222,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881556",
- "username": "m1shyts",
- "fullName": "Михаил Марухно (m1shyts)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14881556/medium/8d97850e1cb44414c1fa57a7aec17dcc.png",
- "joined": "2021-08-15 15:02:18"
- },
- "languages": [
+ "language": {
+ "id": "sr-CS",
+ "name": "Serbian (Latin)",
+ "tmSavings": 0,
+ "preTranslate": 1308,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 169
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 211,
- "target": 185,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929235",
- "username": "Rikr16",
- "fullName": "Hozan Al Hazin (Rikr16)",
- "avatarUrl": "https://www.gravatar.com/avatar/6c4f698f7d586c079a9e31fb6f883d4a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 09:55:50"
- },
- "languages": [
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 145,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 211,
- "target": 179,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915929",
- "username": "KarolekPLRU",
- "fullName": "KarolekPLRU",
- "avatarUrl": "https://www.gravatar.com/avatar/582fd5beae1a041556b1f404fb78aa37?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 14:18:29"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 278,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 256
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 76,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 21,
+ "total": 21
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 23,
+ "total": 23
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 26
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 210,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887798",
- "username": "MikhailDemin",
- "fullName": "Mikhail Demin (MikhailDemin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887798/medium/8141d544c3ddd3270fe04f02318d6760.jpeg",
- "joined": "2021-08-19 12:50:53"
- },
- "languages": [
+ "language": {
+ "id": "sw",
+ "name": "Swahili",
+ "tmSavings": 0,
+ "preTranslate": 15,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 207,
- "target": 162,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14827052",
- "username": "spargwy",
- "fullName": "spargwy",
- "avatarUrl": "https://www.gravatar.com/avatar/eb7d685a05c3711249dd58fef854c9f2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 17:08:54"
- },
- "languages": [
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 111,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 5
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 207,
- "target": 141,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14754146",
- "username": "alfus5",
- "fullName": "alfu5 (alfus5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754146/medium/69dd3ead82350e6abe958295d8cf6259.jpeg",
- "joined": "2021-08-09 13:25:58"
- },
- "languages": [
+ "language": {
+ "id": "tg",
+ "name": "Tajik",
+ "tmSavings": 0,
+ "preTranslate": 107,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 205,
- "target": 216,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12596551",
- "username": "lidiam",
- "fullName": "Lidia Mayoral (lidiam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12596551/medium/4d64ba444829e0a830179079cbf8fd80.png",
- "joined": "2021-08-09 21:19:47"
- },
- "languages": [
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 145,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ca",
- "name": "Catalan"
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 59,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 200,
- "target": 179,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14893344",
- "username": "DonViktor",
- "fullName": "DonViktor",
- "avatarUrl": "https://www.gravatar.com/avatar/c001e03116cbbb2188f36300d15f704f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-23 22:28:00"
- },
- "languages": [
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 468,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 199,
- "target": 249,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879146",
- "username": "ayala.angel",
- "fullName": "Ángel AB (ayala.angel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879146/medium/d8fad9310dee8ae1ec705e68569ce5f5.jpeg",
- "joined": "2021-08-13 18:41:28"
- },
- "languages": [
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 1070,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 181
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 197,
- "target": 183,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894112",
- "username": "Spuknit",
- "fullName": "Jenner Falconi (Spuknit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894112/medium/c70d81f75092cc062472ff2457d73c09.jpeg",
- "joined": "2021-08-24 11:24:56"
- },
- "languages": [
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 789,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 123
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 197,
- "target": 244,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845846",
- "username": "LaytonBerth",
- "fullName": "Layton Berth (LaytonBerth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845846/medium/33dd43eca062e1472466df8f0d1d1e3f.jpeg",
- "joined": "2021-07-19 17:29:38"
- },
- "languages": [
+ "language": {
+ "id": "ur-PK",
+ "name": "Urdu (Pakistan)",
+ "tmSavings": 0,
+ "preTranslate": 247,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 1
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 197,
- "target": 201,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880134",
- "username": "andrei.andrianov",
- "fullName": "Andrei Andrianov (andrei.andrianov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880134/medium/f72d9db33a8ea5923123bd6592d36e1c.jpeg",
- "joined": "2021-08-14 13:48:36"
- },
- "languages": [
+ "language": {
+ "id": "uz",
+ "name": "Uzbek",
+ "tmSavings": 0,
+ "preTranslate": 3033,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 972
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 197,
- "target": 161,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849436",
- "username": "bbc_h",
- "fullName": "bbc_h",
- "avatarUrl": "https://www.gravatar.com/avatar/954adf8285d5a96d7e58518290e89f8e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-22 14:34:56"
- },
- "languages": [
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 289,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 25
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 195,
- "target": 163,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896966",
+ "language": {
+ "id": "yo",
+ "name": "Yoruba",
+ "tmSavings": 0,
+ "preTranslate": 1,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14894716,
+ "username": "mgagahreforman",
+ "fullName": "M. Gagah Reforman (mgagahreforman)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894716/medium/34bffe30d61288a4b9c13ecc7ab34a23.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14675712,
+ "username": "LEMIBANDDEXARI",
+ "fullName": "MIBAND (LEMIBANDDEXARI)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/3416b6f2cac5da2e70205556774c847e.png",
+ "preTranslated": 0,
+ "totalCosts": 237
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 237
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 223,
+ "total": 237
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 239,
+ "total": 253
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 68,
+ "total": 71
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 223,
+ "total": 237
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14925495,
+ "username": "yuttapolp",
+ "fullName": "Man Yuttapol Pimpison (yuttapolp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14925495/medium/d503eb59e0c32db1225720e570a68719.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 27,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865328,
+ "username": "Lostday",
+ "fullName": "Manuel Ignacio Caviedes (Lostday)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6654ce365e1d6eae2c3928cd70daede3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 4433
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4433
+ },
+ "translated": {
+ "tmMatch": 547,
+ "default": 3886,
+ "total": 4433
+ },
+ "targetTranslated": {
+ "tmMatch": 633,
+ "default": 3994,
+ "total": 4627
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 51,
+ "total": 51
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 547,
+ "default": 3886,
+ "total": 4433
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14895926,
+ "username": "_madmarc",
+ "fullName": "Marc (_madmarc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/f76a17fda51aafca1ad0530e4a11d9ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 141
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 141
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 147,
+ "total": 147
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 141,
+ "total": 141
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14763374,
+ "username": "untipollamadomarcelo",
+ "fullName": "Marcelo Cornejo (untipollamadomarcelo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/6fada991f179e004707187b671444058.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 50
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 50
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 54,
+ "total": 54
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 50,
+ "total": 50
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14858450,
+ "username": "marcio.vallep",
+ "fullName": "Marcio Vallep (marcio.vallep)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14858450/medium/78a1cc0054358247a009cd3993270109.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 303
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 303
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 298,
+ "total": 303
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 281,
+ "total": 287
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 110,
+ "total": 110
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 298,
+ "total": 303
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14911627,
+ "username": "marcoporracin",
+ "fullName": "Marco Porracin (marcoporracin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911627/medium/29719c7ebb665982afa5447e382aeb13.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 178
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 178
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 178,
+ "total": 178
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 165,
+ "total": 165
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 178,
+ "total": 178
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14873848,
+ "username": "seaona",
+ "fullName": "Mariona (seaona)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873848/medium/b17de5f28e79a1bf040851bf192bc9e1.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ca",
+ "name": "Catalan",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 18,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 17,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14888562,
+ "username": "FWW",
+ "fullName": "Masato FUJII (FWW)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888562/medium/d82ec0de0a39d7f254ce38fc3840d529.png",
+ "preTranslated": 0,
+ "totalCosts": 2971
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2971
+ },
+ "translated": {
+ "tmMatch": 76,
+ "default": 2895,
+ "total": 2971
+ },
+ "targetTranslated": {
+ "tmMatch": 250,
+ "default": 8391,
+ "total": 8641
+ },
+ "translatedByMt": {
+ "tmMatch": 10,
+ "default": 197,
+ "total": 207
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 76,
+ "default": 2895,
+ "total": 2971
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14918847,
+ "username": "kryptokurt",
+ "fullName": "Mats Westholm (kryptokurt)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/9e7413a54c5ded7e2b74b662d19960e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sv-SE",
+ "name": "Swedish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838650,
+ "username": "sibannaccian",
+ "fullName": "Mauricio Serrano Rodriguez (sibannaccian)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838650/medium/656027686a316709b3424730ef35fd49.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865322,
+ "username": "muxelmann",
+ "fullName": "Max Zangs (muxelmann)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865322/medium/8e6a15dc96741d3a6c5b516d7f57fa61.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 132
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 132
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 125,
+ "total": 125
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 132,
+ "total": 132
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12591126,
+ "username": "aikyu99",
+ "fullName": "MeArjiet (aikyu99)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b0232e61a3ecdc0f29ed9ee87af4a6fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14805280,
+ "username": "EckoZhang",
+ "fullName": "Mengjia Zhang (EckoZhang)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805280/medium/a294008196ce6b1800aa175fc7112ad0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 968
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 968
+ },
+ "translated": {
+ "tmMatch": 32,
+ "default": 936,
+ "total": 968
+ },
+ "targetTranslated": {
+ "tmMatch": 67,
+ "default": 1235,
+ "total": 1302
+ },
+ "translatedByMt": {
+ "tmMatch": 12,
+ "default": 84,
+ "total": 96
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 32,
+ "default": 936,
+ "total": 968
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14887798,
+ "username": "MikhailDemin",
+ "fullName": "Mikhail Demin (MikhailDemin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887798/medium/8141d544c3ddd3270fe04f02318d6760.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 207
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 207
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 204,
+ "total": 207
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 161,
+ "total": 162
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 204,
+ "total": 207
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14708760,
+ "username": "hypebeans",
+ "fullName": "Muumi (ミュウミ) (hypebeans)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708760/medium/f039dc85a8469b65d9e3e2413f9c4710.png",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 88,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 191,
+ "total": 193
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 88,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14900694,
+ "username": "NagasaiCrowdin",
+ "fullName": "NAGASAI BASVOJU (NagasaiCrowdin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900694/medium/c0786b1def4799c4c8a7c6881a66bb08.png",
+ "preTranslated": 0,
+ "totalCosts": 87
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 87
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 96,
+ "total": 96
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 87,
+ "total": 87
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14918055,
+ "username": "caibangtimvoyeu1",
+ "fullName": "Nam Bảo (caibangtimvoyeu1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918055/medium/caa90ddfc06eec603e36f31baf208c3e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14904476,
+ "username": "shady_neli98",
+ "fullName": "Nelkka Dobrewa (shady_neli98)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904476/medium/9094393854d8e690e3ff1870061cdb5f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14087195,
+ "username": "nicklcanada",
+ "fullName": "Nicolae Liviu (nicklcanada)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/6ba04182461bb02bcf5d19d81c9b1cb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13659341,
+ "username": "nimapourazad52",
+ "fullName": "Nima Pourazad (nimapourazad52)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13659341/medium/4ad7ae1e017a3fd4ddba1d1a8c30bb51.jpg",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 39,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 44,
+ "total": 46
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 39,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14929161,
+ "username": "nonglekkaewkang60",
+ "fullName": "Nonglek Keawkang (nonglekkaewkang60)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929161/medium/94141a2c17bad7643d8b54e7d7137224.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "eu",
+ "name": "Basque",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838604,
+ "username": "lieolik",
+ "fullName": "Olga Shablykina (lieolik)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/16597afc89da43effc248922ddd94267?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 5,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 4,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896966,
"username": "Oswaldoge444",
"fullName": "Oswaldo Gabriel Chacin Padrino (Oswaldoge444)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896966/medium/5e2b5aa7c19a63995192eede5cb187f8.jpeg",
- "joined": "2021-08-26 11:19:21"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 192,
- "target": 219,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14850742",
- "username": "diegordsx",
- "fullName": "Diego Rodrigues (diegordsx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850742/medium/aff2ed82538d1337e6edc75ed81bd679.png",
- "joined": "2021-07-23 15:12:11"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 190,
- "target": 189,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14839218",
- "username": "marianatcl",
- "fullName": "marianatcl",
- "avatarUrl": "https://www.gravatar.com/avatar/771898c1e5d57a152272dae2f2641f20?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-14 07:45:18"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 188,
- "target": 208,
- "approved": 0,
- "voted": 9,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873098",
- "username": "Nahandiee",
- "fullName": "Nahandiee",
- "avatarUrl": "https://www.gravatar.com/avatar/1362220b514ef8bdd60de2e7ea6cb6f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 00:35:04"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 187,
- "target": 246,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14856464",
+ "preTranslated": 0,
+ "totalCosts": 192
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 192
+ },
+ "translated": {
+ "tmMatch": 46,
+ "default": 146,
+ "total": 192
+ },
+ "targetTranslated": {
+ "tmMatch": 50,
+ "default": 169,
+ "total": 219
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 55,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 46,
+ "default": 146,
+ "total": 192
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837284,
+ "username": "PaN-0-1",
+ "fullName": "PaN-0-1",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837284/medium/7f1ad04832bb028fe66564804f5326ee.png",
+ "preTranslated": 0,
+ "totalCosts": 1492
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1492
+ },
+ "translated": {
+ "tmMatch": 64,
+ "default": 1428,
+ "total": 1492
+ },
+ "targetTranslated": {
+ "tmMatch": 53,
+ "default": 1436,
+ "total": 1489
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 690,
+ "total": 695
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 64,
+ "default": 1428,
+ "total": 1492
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14856464,
"username": "redtux",
"fullName": "Pablo Hörtner (redtux)",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/609316eff93c34d3ed62daa2d30dbaa8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-28 10:37:41"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
+ "preTranslated": 0,
+ "totalCosts": 183
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 183
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 179,
+ "total": 183
+ },
+ "targetTranslated": {
+ "tmMatch": 3,
+ "default": 176,
+ "total": 179
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 179,
+ "total": 183
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14920051,
+ "username": "panatagama",
+ "fullName": "Panatagama (panatagama)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920051/medium/9ba58eec03e143bcd1acbe5b2ecf8250.jpg",
+ "preTranslated": 0,
+ "totalCosts": 322
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 322
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 320,
+ "total": 322
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 288,
+ "total": 289
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 320,
+ "total": 322
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837068,
+ "username": "parpok",
+ "fullName": "Patryk (parpok)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837068/medium/ac82c254eca9f7c56757c56079b775c2.png",
+ "preTranslated": 0,
+ "totalCosts": 46
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pl",
+ "name": "Polish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 46
+ },
+ "translated": {
+ "tmMatch": 31,
+ "default": 15,
+ "total": 46
+ },
+ "targetTranslated": {
+ "tmMatch": 299,
+ "default": 94,
+ "total": 393
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 0,
+ "total": 4
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 31,
+ "default": 15,
+ "total": 46
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14922727,
+ "username": "mookmook",
+ "fullName": "Pattaraporn Tripiyaratana (mookmook)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922727/medium/bb4344fb73b75a86661d7acaf9f8d1f3.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 107
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 107
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 107,
+ "total": 107
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896794,
+ "username": "Paulchemouni",
+ "fullName": "Paul Chemouni (Paulchemouni)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896794/medium/7c6117fe2c7fda4e2d5cc0c089d1d9e4.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1559
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1559
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 1546,
+ "total": 1559
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 1650,
+ "total": 1664
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 478,
+ "total": 480
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 1546,
+ "total": 1559
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14575966,
+ "username": "wackerow",
+ "fullName": "Paul Wackerow (wackerow)",
+ "userRole": "Manager",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14575966/medium/1e22043e754e8830a78257791e1c6bad.png",
+ "preTranslated": 7,
+ "totalCosts": 0
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 7,
+ "totalCosts": 0
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14886470,
+ "username": "pegzerthugger",
+ "fullName": "PegzOff TLPV (pegzerthugger)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886470/medium/b560016f96838976470e87b2f9077243.png",
+ "preTranslated": 0,
+ "totalCosts": 76
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 76
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 70,
+ "total": 70
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 76,
+ "total": 76
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13830805,
+ "username": "kecrily",
+ "fullName": "Percy (kecrily)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13830805/medium/93feb6bb91075026d6409acb05c90edd.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 386
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 386
+ },
+ "translated": {
+ "tmMatch": 106,
+ "default": 280,
+ "total": 386
+ },
+ "targetTranslated": {
+ "tmMatch": 138,
+ "default": 362,
+ "total": 500
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 106,
+ "default": 280,
+ "total": 386
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14840702,
+ "username": "EmpirePers",
+ "fullName": "Persacho (EmpirePers)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840702/medium/dab9b07237a7db5ed0e7b5a526edeb9d.png",
+ "preTranslated": 0,
+ "totalCosts": 19
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 19
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 14,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 18,
+ "total": 19
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14838076,
+ "username": "pd.duvnjak",
+ "fullName": "Petar Duvnjak (pd.duvnjak)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838076/medium/300021775f969ae9e2137cafb3c4b61e.png",
+ "preTranslated": 0,
+ "totalCosts": 80
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 80
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 73,
+ "total": 73
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 80,
+ "total": 80
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14825546,
+ "username": "ph4ni",
+ "fullName": "Phanindra (ph4ni)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825546/medium/34f82ec0a369275b6764b4d12b91cf48.png",
+ "preTranslated": 0,
+ "totalCosts": 30
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "te",
+ "name": "Telugu",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 30
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 30,
+ "total": 30
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14665128,
+ "username": "Pierlu_be",
+ "fullName": "Pierluigi Belpassi (Pierlu_be)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/b09dd2530fb46b957c0a8c72efb1fc5b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 872
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 872
+ },
+ "translated": {
+ "tmMatch": 109,
+ "default": 763,
+ "total": 872
+ },
+ "targetTranslated": {
+ "tmMatch": 121,
+ "default": 825,
+ "total": 946
+ },
+ "translatedByMt": {
+ "tmMatch": 15,
+ "default": 204,
+ "total": 219
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 109,
+ "default": 763,
+ "total": 872
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14835760,
+ "username": "Pineapple010223",
+ "fullName": "Pineapple010223",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14835760/medium/36a5126df6f3fab680a105268d03592c.jpg",
+ "preTranslated": 0,
+ "totalCosts": 535
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 535
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 518,
+ "total": 535
+ },
+ "targetTranslated": {
+ "tmMatch": 42,
+ "default": 806,
+ "total": 848
+ },
+ "translatedByMt": {
+ "tmMatch": 6,
+ "default": 0,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 518,
+ "total": 535
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14876410,
+ "username": "dlphin",
+ "fullName": "Pița Rareș (dlphin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876410/medium/e48734129bc32a7965b5c2f11bd36339.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ro",
+ "name": "Romanian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 23,
+ "default": 24,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 28,
+ "total": 53
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 23,
+ "default": 24,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14899686,
+ "username": "preetishpriyadarshi",
+ "fullName": "Preetish Priyadarshi Samal (preetishpriyadarshi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/648e4c1db799f61d97a4b0be7a1969cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 138
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 138
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 136,
+ "total": 138
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 189,
+ "total": 193
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 136,
+ "total": 138
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14907607,
+ "username": "dqduong102",
+ "fullName": "Quốc Dương Đàng (dqduong102)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907607/medium/4f8e413bd85cd3aabc332c49bab08fae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1186
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1186
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 1179,
+ "total": 1186
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 1663,
+ "total": 1678
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 1179,
+ "total": 1186
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861756,
+ "username": "RahayuRafika_12",
+ "fullName": "Rahayu Rafikahwulan Sari (RahayuRafika_12)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12727
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 9,
+ "default": 6,
+ "total": 15
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 4,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
},
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 183,
- "target": 179,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14861744",
- "username": "szabozoltan69",
- "fullName": "Zoltán Szabó (szabozoltan69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861744/medium/f9ef7465cd3b8d070e9c0eb815e0334c.jpeg",
- "joined": "2021-08-01 08:09:10"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 181,
- "target": 135,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14872412",
- "username": "Smokier",
- "fullName": "Станислав Рубашевский (Smokier)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872412/medium/9695aeef85e8a0ab85b4864e9e9cf1c8.gif",
- "joined": "2021-08-09 10:37:24"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 179,
- "target": 203,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14911627",
- "username": "marcoporracin",
- "fullName": "Marco Porracin (marcoporracin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911627/medium/29719c7ebb665982afa5447e382aeb13.jpeg",
- "joined": "2021-09-06 14:37:59"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 4,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 178,
- "target": 165,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14943545",
- "username": "k.otika",
- "fullName": "k.otika",
- "avatarUrl": "https://www.gravatar.com/avatar/166d75bbff1b6b61474e4e64644a5e81?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-29 14:13:37"
- },
- "languages": [
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12713
+ },
+ "translated": {
+ "tmMatch": 331,
+ "default": 12382,
+ "total": 12713
+ },
+ "targetTranslated": {
+ "tmMatch": 295,
+ "default": 10236,
+ "total": 10531
+ },
+ "translatedByMt": {
+ "tmMatch": 4,
+ "default": 1,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 331,
+ "default": 12382,
+ "total": 12713
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 173,
- "target": 194,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14829686",
- "username": "arnchpt",
- "fullName": "arnchpt",
- "avatarUrl": "https://www.gravatar.com/avatar/2c2c6b4ff07878ac50e02fc7ca2019c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-06 16:02:41"
- },
- "languages": [
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866212,
+ "username": "ramesh.jetsoft",
+ "fullName": "Ramesh R (ramesh.jetsoft)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866212/medium/1d8f9a5ae2f70dd83e171ebb1aeb3558.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 18,
+ "default": 8,
+ "total": 26
+ },
+ "translatedByMt": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 7,
+ "default": 2,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14883776,
+ "username": "ramirolucasb",
+ "fullName": "Ramiro Baladron (ramirolucasb)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883776/medium/b7bec81cb51a512c787582e9673a418a.png",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 32,
+ "total": 32
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14917179,
+ "username": "reinholland88",
+ "fullName": "Reza Al Farizi (reinholland88)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917179/medium/92cd0de32c16fea70c7f00c6b3c2c9e4.PNG",
+ "preTranslated": 0,
+ "totalCosts": 3781
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3781
+ },
+ "translated": {
+ "tmMatch": 42,
+ "default": 3739,
+ "total": 3781
+ },
+ "targetTranslated": {
+ "tmMatch": 35,
+ "default": 3014,
+ "total": 3049
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 42,
+ "default": 3739,
+ "total": 3781
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14842386,
+ "username": "rxchard",
+ "fullName": "Richard (rxchard)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842386/medium/26d2e5d1d9b5f0e6ec25878feb24840b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1318
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1318
+ },
+ "translated": {
+ "tmMatch": 75,
+ "default": 1243,
+ "total": 1318
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 1156,
+ "total": 1221
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 75,
+ "default": 1243,
+ "total": 1318
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14553216,
+ "username": "rielychen",
+ "fullName": "Riely (rielychen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/2fd387175612fea1ecb0db49b0178419.png",
+ "preTranslated": 0,
+ "totalCosts": 6586
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6585
+ },
+ "translated": {
+ "tmMatch": 297,
+ "default": 6288,
+ "total": 6585
+ },
+ "targetTranslated": {
+ "tmMatch": 524,
+ "default": 8157,
+ "total": 8681
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 79,
+ "total": 84
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 297,
+ "default": 6288,
+ "total": 6585
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 173,
- "target": 177,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884874",
- "username": "AsUsedtobe",
- "fullName": "AsUsedtobe",
- "avatarUrl": "https://www.gravatar.com/avatar/77a168de5071ef93f6ebe9e6bf01a6c5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 15:09:52"
- },
- "languages": [
+ "language": {
+ "id": "sl",
+ "name": "Slovenian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13645461,
+ "username": "Rixcian",
+ "fullName": "Rixcian",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13645461/medium/49e26bb6cb92868a712624036a627dc3.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 3,
+ "total": 4
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14357794,
+ "username": "robertdosa",
+ "fullName": "Robert Dosa (robertdosa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png",
+ "preTranslated": 0,
+ "totalCosts": 145
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 145
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 137,
+ "total": 139
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837106,
+ "username": "rofis",
+ "fullName": "Rofis Elias Filho (rofis)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837106/medium/e87698d84d41483de2a57483ff5d9455.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 276
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 276
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 275,
+ "total": 276
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 278,
+ "total": 279
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 68,
+ "total": 68
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 275,
+ "total": 276
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14829178,
+ "username": "EffectChen",
+ "fullName": "Rui Chen (EffectChen)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/13566f4f50fbac5c80fdecc351488099.png",
+ "preTranslated": 0,
+ "totalCosts": 894
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 56,
+ "total": 56
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 33,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 172,
- "target": 141,
- "approved": 0,
- "voted": 27,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780362",
- "username": "88wcJoWl",
- "fullName": "Jona (88wcJoWl)",
- "avatarUrl": "https://www.gravatar.com/avatar/58ecaea5ef98515761ef428c59fdacb2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 15:20:51"
- },
- "languages": [
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 856
+ },
+ "translated": {
+ "tmMatch": 65,
+ "default": 791,
+ "total": 856
+ },
+ "targetTranslated": {
+ "tmMatch": 92,
+ "default": 1053,
+ "total": 1145
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 65,
+ "default": 791,
+ "total": 856
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ },
{
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 171,
- "target": 156,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 103
- },
- {
- "user": {
- "id": "14862460",
- "username": "vdusart",
- "fullName": "vdusart",
- "avatarUrl": "https://www.gravatar.com/avatar/1e5982486a378fca6ee9afaef32c5482?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 19:04:53"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 167,
- "target": 155,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 54
- },
- {
- "user": {
- "id": "14792522",
- "username": "WotCa",
- "fullName": "WotCa",
- "avatarUrl": "https://www.gravatar.com/avatar/2805d3c0760cee8d6560761e9d71671d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-11 20:10:05"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 165,
- "target": 484,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14933025",
- "username": "EdgyLsx",
- "fullName": "EdgyLsx",
- "avatarUrl": "https://www.gravatar.com/avatar/58e0d3838f341eb1089af10f1da47f99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 05:12:37"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 164,
- "target": 191,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14887590",
- "username": "javajava",
- "fullName": "吉田圭 (javajava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14887590/medium/ed8d5742366308e76f6f49506b05a19c.png",
- "joined": "2021-08-19 09:44:18"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 157,
- "target": 541,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14902898",
- "username": "JacobEvans56",
- "fullName": "JacobEvans56",
- "avatarUrl": "https://www.gravatar.com/avatar/6ec4d863a839de81ce1e8cb9c19394bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 04:00:30"
- },
- "languages": [
- {
- "id": "am",
- "name": "Amharic"
- }
- ],
- "translated": 155,
- "target": 129,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869618",
- "username": "msbarathi07",
- "fullName": "Barathi M S (msbarathi07)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14869618/medium/87fb1a90204c1d83ab5ff43906855789.jpeg",
- "joined": "2021-08-07 03:44:23"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 155,
- "target": 312,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 23,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14904502",
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 9,
+ "total": 9
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14848176,
+ "username": "rustamg23",
+ "fullName": "Rustam Gubaydullin (rustamg23)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14848176/medium/31ad821cd8075115d725d13c885e9669.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9823
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9823
+ },
+ "translated": {
+ "tmMatch": 201,
+ "default": 9622,
+ "total": 9823
+ },
+ "targetTranslated": {
+ "tmMatch": 174,
+ "default": 7243,
+ "total": 7417
+ },
+ "translatedByMt": {
+ "tmMatch": 36,
+ "default": 1859,
+ "total": 1895
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 201,
+ "default": 9622,
+ "total": 9823
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14831696,
+ "username": "sajjad.k.btc",
+ "fullName": "Sajjad Kadkhodayi (sajjad.k.btc)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14831696/medium/761047e774f85ccbe49fdf1cbce4a429.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 248
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 248
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 234,
+ "total": 248
+ },
+ "targetTranslated": {
+ "tmMatch": 14,
+ "default": 235,
+ "total": 249
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 234,
+ "total": 248
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866558,
+ "username": "sjijioff74",
+ "fullName": "Sammy KH (sjijioff74)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866558/medium/c2ca15a21e982f87474214a24e0fd487.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14812492,
+ "username": "samuelPapranec",
+ "fullName": "Samuel Papranec (samuelPapranec)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812492/medium/b30337d97ba9d1f073a090434191e294.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 928
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "sk",
+ "name": "Slovak",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 928
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 928,
+ "total": 928
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 752,
+ "total": 752
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 928,
+ "total": 928
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14888266,
+ "username": "sandrogomes101",
+ "fullName": "Sandro Gomes (sandrogomes101)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888266/medium/ec3720087a2af8b90ac90119f026a2f8.png",
+ "preTranslated": 0,
+ "totalCosts": 6
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 6
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 6,
+ "total": 6
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14890296,
+ "username": "sehitzler",
+ "fullName": "Sebastian Hitzler (sehitzler)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890296/medium/404ffc28f8996aa26eb3ce5bdc1e3d3f.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 43,
+ "total": 43
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 47,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13559834,
+ "username": "DasMergo",
+ "fullName": "Seied Ali Mirkarimi (DasMergo)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559834/medium/1022545f1391447b44113ac76076957a.jpg",
+ "preTranslated": 0,
+ "totalCosts": 71
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 71
+ },
+ "translated": {
+ "tmMatch": 21,
+ "default": 50,
+ "total": 71
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 54,
+ "total": 86
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 8,
+ "total": 8
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 21,
+ "default": 50,
+ "total": 71
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14936915,
+ "username": "seilkhankulzhanov",
+ "fullName": "Seilkhan Kulzhanov (seilkhankulzhanov)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936915/medium/be75dda81c208776fb04ab0e365f3e49.png",
+ "preTranslated": 0,
+ "totalCosts": 7
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 7
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 7,
+ "total": 7
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14867044,
+ "username": "Sercelik",
+ "fullName": "Sercelik",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867044/medium/d25753e6bc7cb3b8ddbf025dac169b4f.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 23,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 12,
+ "total": 18
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 23,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14857060,
+ "username": "slobato711",
+ "fullName": "Sergio Lobato Ramos (slobato711)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14857060/medium/16b052b6094cc8e9e2a1b9d493e20c30.png",
+ "preTranslated": 0,
+ "totalCosts": 326
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 326
+ },
+ "translated": {
+ "tmMatch": 140,
+ "default": 186,
+ "total": 326
+ },
+ "targetTranslated": {
+ "tmMatch": 124,
+ "default": 178,
+ "total": 302
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 140,
+ "default": 186,
+ "total": 326
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865420,
+ "username": "Sergitxin",
+ "fullName": "Sergitxin22 (Sergitxin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865420/medium/c93a1a81a1c919979a6da85151c0bf66.png",
+ "preTranslated": 0,
+ "totalCosts": 881
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 881
+ },
+ "translated": {
+ "tmMatch": 14,
+ "default": 867,
+ "total": 881
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 830,
+ "total": 842
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 28,
+ "total": 42
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 14,
+ "default": 867,
+ "total": 881
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14875422,
+ "username": "T37B60",
+ "fullName": "Sergiu Gelu Stoica (T37B60)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875422/medium/2e2cc48eb16214729aa8f09f43fe49ac.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 26
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 26
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 25,
+ "total": 25
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 26,
+ "total": 26
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14926377,
+ "username": "ShubhamKukreti",
+ "fullName": "Shubham Kukreti (ShubhamKukreti)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926377/medium/c23d2146ea906d371c9ea8af48d3832f.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 42,
+ "total": 44
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 25,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14901100,
+ "username": "simakpele65",
+ "fullName": "Simon Akpele (simakpele65)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901100/medium/c3354f71aa0f27ef6f54a83b0ea8968d.png",
+ "preTranslated": 0,
+ "totalCosts": 116
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 116
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 120,
+ "total": 120
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 116,
+ "total": 116
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14923593,
+ "username": "simone.pana.2",
+ "fullName": "Simone Panattoni (simone.pana.2)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14923593/medium/d109453b70ed12f8e71960dd652efd17.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1054
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1054
+ },
+ "translated": {
+ "tmMatch": 38,
+ "default": 1016,
+ "total": 1054
+ },
+ "targetTranslated": {
+ "tmMatch": 43,
+ "default": 1105,
+ "total": 1148
+ },
+ "translatedByMt": {
+ "tmMatch": 23,
+ "default": 948,
+ "total": 971
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 38,
+ "default": 1016,
+ "total": 1054
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14904502,
"username": "keslon762",
"fullName": "Sonho De Jogador (keslon762)",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904502/medium/79750cc0fb5d2a1b16f80d91284d485c.jpeg",
- "joined": "2021-09-01 08:01:48"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 152,
- "target": 181,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907227",
- "username": "CivicLee",
- "fullName": "Civic Lee (CivicLee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907227/medium/1f411053836d29859329adf9d2dc3e8b.jpeg",
- "joined": "2021-09-03 05:13:05"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 150,
- "target": 231,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909599",
- "username": "HanaWatanabe",
- "fullName": "HanaWatanabe",
- "avatarUrl": "https://www.gravatar.com/avatar/634865e912a02ed06d5368f8d2d5e7f9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 02:18:05"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 150,
- "target": 475,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 4,
- "winning": 0
- },
- {
- "user": {
- "id": "14891034",
- "username": "igor.ciolac",
- "fullName": "Igor Ciolac (igor.ciolac)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891034/medium/d0954f264a71ebadb2c802cccc7ac38f.png",
- "joined": "2021-08-22 05:38:51"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 148,
- "target": 153,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896320",
- "username": "humairarzmn",
- "fullName": "humairarzmn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896320/medium/2090273c7d30341e9a0cdd0befd332a8.jpeg",
- "joined": "2021-08-26 02:02:28"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 145,
- "target": 137,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14357794",
- "username": "robertdosa",
- "fullName": "Robert Dosa (robertdosa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png",
- "joined": "2020-07-27 14:12:54"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 145,
- "target": 139,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 44908
- },
- {
- "user": {
- "id": "12343167",
- "username": "spolischook",
- "fullName": "spolischook",
- "avatarUrl": "https://www.gravatar.com/avatar/e106204e09df019627176fcfddcd6f7b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-13 16:56:39"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 142,
- "target": 114,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14895926",
- "username": "_madmarc",
- "fullName": "Marc (_madmarc)",
- "avatarUrl": "https://www.gravatar.com/avatar/f76a17fda51aafca1ad0530e4a11d9ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 17:48:10"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 141,
- "target": 147,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937371",
- "username": "mainulkhaled",
- "fullName": "mainulkhaled",
- "avatarUrl": "https://www.gravatar.com/avatar/71c448af11b12c4951d886ee6de6b596?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-26 12:25:07"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 138,
- "target": 200,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899686",
- "username": "preetishpriyadarshi",
- "fullName": "Preetish Priyadarshi Samal (preetishpriyadarshi)",
- "avatarUrl": "https://www.gravatar.com/avatar/648e4c1db799f61d97a4b0be7a1969cc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 16:40:12"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 138,
- "target": 193,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881144",
- "username": "clarinEX",
- "fullName": "clarinEX",
- "avatarUrl": "https://www.gravatar.com/avatar/e65239ac0398cfd2f9b202e6901b37b4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-15 09:23:56"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 133,
- "target": 126,
- "approved": 0,
- "voted": 20,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14935087",
- "username": "Martinpons",
- "fullName": "Martinpons",
- "avatarUrl": "https://www.gravatar.com/avatar/469c9345494c800a82354e926ab96d8a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-23 14:30:26"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 132,
- "target": 114,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800544",
- "username": "vj-codes",
- "fullName": "vj-codes",
- "avatarUrl": "https://www.gravatar.com/avatar/1801099ce8fed3e7e395524675b7c332?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 10:47:24"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 132,
- "target": 228,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14676268",
- "username": "Bachan",
- "fullName": "Bachan",
- "avatarUrl": "https://www.gravatar.com/avatar/d7091aa68a00d2256eb9f3b5709bf974?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-03-20 15:29:29"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 132,
- "target": 156,
- "approved": 0,
- "voted": 25,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14865322",
- "username": "muxelmann",
- "fullName": "Max Zangs (muxelmann)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865322/medium/8e6a15dc96741d3a6c5b516d7f57fa61.jpeg",
- "joined": "2021-08-03 16:59:29"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 132,
- "target": 125,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830248",
- "username": "KingGame001",
- "fullName": "King Game (KingGame001)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830248/medium/0c6cb9850478dd68dd3552998b05eea4.png",
- "joined": "2021-07-07 03:31:32"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 128,
- "target": 85,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13510211",
- "username": "MirageIonova",
- "fullName": "Alberto Gómez Herrera (MirageIonova)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png",
- "joined": "2020-10-01 18:59:30"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 127,
- "target": 125,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 38
- },
- {
- "user": {
- "id": "13817659",
- "username": "Xam089951",
- "fullName": "Xam089951",
- "avatarUrl": "https://www.gravatar.com/avatar/51a567d03e673417de7b5d347bf65156?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 18:14:43"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 124,
- "target": 117,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876952",
- "username": "brayosimar",
- "fullName": "Brayan GDesigner (brayosimar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876952/medium/2643e165c521aa4e9df368880d3f9e74.jpeg",
- "joined": "2021-08-12 10:12:25"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 121,
- "target": 104,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880056",
- "username": "hiorst8",
- "fullName": "Hi St8 (hiorst8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880056/medium/97a843bea0c1b053719867e5e17584aa.png",
- "joined": "2021-08-14 12:55:18"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 116,
- "target": 170,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901100",
- "username": "simakpele65",
- "fullName": "Simon Akpele (simakpele65)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901100/medium/c3354f71aa0f27ef6f54a83b0ea8968d.png",
- "joined": "2021-08-29 21:20:00"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 116,
- "target": 120,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787072",
- "username": "HidroGaming",
- "fullName": "_H1dR0_ (HidroGaming)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787072/medium/43874b3e9048a461c2bf7be02100d08d.png",
- "joined": "2021-09-29 08:13:38"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 113,
- "target": 142,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830280",
- "username": "songnchant",
- "fullName": "Changdles K (songnchant)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830280/medium/e544df6876b73ceedb0049774e96c599.png",
- "joined": "2021-07-07 04:02:31"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 110,
- "target": 91,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877588",
- "username": "haddadhesam",
- "fullName": "Hesam Haddad (haddadhesam)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877588/medium/fd55575b0f149dd88deb161c48e961bf.jpeg",
- "joined": "2021-08-12 17:32:27"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 109,
- "target": 138,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922727",
- "username": "mookmook",
- "fullName": "Pattaraporn Tripiyaratana (mookmook)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922727/medium/bb4344fb73b75a86661d7acaf9f8d1f3.jpeg",
- "joined": "2021-09-14 16:38:03"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 107,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830096",
- "username": "LizYang",
- "fullName": "LizYang",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830096/medium/1d43d1a252a80e0dbe6f6e6d15f1b46c.jpeg",
- "joined": "2021-07-07 01:22:52"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 104,
- "target": 173,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 53
- },
- {
- "user": {
- "id": "14801848",
- "username": "jasonlou22",
- "fullName": "Iasonas Loukaidis (jasonlou22)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801848/medium/ce8cf5bd5bd16320aadbd8438ce2c4b6.jpeg",
- "joined": "2021-06-16 08:44:54"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 100,
- "target": 84,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14769736",
- "username": "Andpatagon",
- "fullName": "Andpatagon",
- "avatarUrl": "https://www.gravatar.com/avatar/5aa159c0ea923eba17a923ca3c2930c6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 15:21:01"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 100,
- "target": 107,
- "approved": 0,
- "voted": 13,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 79
- },
- {
- "user": {
- "id": "14787358",
- "username": "leideribeiro9150",
- "fullName": "leide mariana santos ribeiro (leideribeiro9150)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787358/medium/23937ae5016b2a370875018580c2905b.jpeg",
- "joined": "2021-06-14 13:58:06"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 99,
- "target": 85,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 33,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14933273",
- "username": "MelisaSonmez",
- "fullName": "MelisaSonmez",
- "avatarUrl": "https://www.gravatar.com/avatar/57753792ad4c1879603e1c48ee889e7c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 09:04:20"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 94,
- "target": 87,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708760",
- "username": "hypebeans",
- "fullName": "Muumi (ミュウミ) (hypebeans)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708760/medium/f039dc85a8469b65d9e3e2413f9c4710.png",
- "joined": "2021-04-12 11:22:28"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 90,
- "target": 193,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 107,
- "negativeVotes": 29,
- "winning": 250
- },
- {
- "user": {
- "id": "12702618",
+ "preTranslated": 0,
+ "totalCosts": 152
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 152
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 151,
+ "total": 152
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 180,
+ "total": 181
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 151,
+ "total": 152
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884566,
+ "username": "sparsacolligodutwitter",
+ "fullName": "Sparsa Colligo (sparsacolligodutwitter)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884566/medium/c1f416e00e569be883a1c6d8f566d117.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 356
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 356
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 323,
+ "total": 356
+ },
+ "targetTranslated": {
+ "tmMatch": 33,
+ "default": 314,
+ "total": 347
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 185,
+ "total": 185
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 323,
+ "total": 356
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14935615,
+ "username": "bratzconstantino",
+ "fullName": "Spoiled Bratz (bratzconstantino)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935615/medium/f41b61d9982f8da04237aae32a48a9ab.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 57
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fil",
+ "name": "Filipino",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 57
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 44,
+ "total": 57
+ },
+ "targetTranslated": {
+ "tmMatch": 15,
+ "default": 69,
+ "total": 84
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 44,
+ "total": 57
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13976107,
+ "username": "HelaBasa",
+ "fullName": "Store (HelaBasa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976107/medium/ab4177e8d90665d4603e548488d15c68.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "si-LK",
+ "name": "Sinhala",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 2,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14437788,
+ "username": "talgatbek",
+ "fullName": "Talgatbek Kainarov (talgatbek)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14437788/medium/613193fea546da673bb8490a504d993d.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kk",
+ "name": "Kazakh",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14889596,
+ "username": "thallesamott",
+ "fullName": "Thalles Caramão (thallesamott)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889596/medium/3e50df6563e8389c67e773c0adc8bbc5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 9
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-PT",
+ "name": "Portuguese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 9
+ },
+ "translated": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "targetTranslated": {
+ "tmMatch": 64,
+ "default": 39,
+ "total": 103
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 3,
+ "default": 6,
+ "total": 9
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14865340,
+ "username": "tolunaydundar",
+ "fullName": "Tolunay Dündar (tolunaydundar)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865340/medium/66516d0d0ba888ac686b0fcc44b9e321.jpg",
+ "preTranslated": 0,
+ "totalCosts": 574
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 574
+ },
+ "translated": {
+ "tmMatch": 45,
+ "default": 529,
+ "total": 574
+ },
+ "targetTranslated": {
+ "tmMatch": 46,
+ "default": 441,
+ "total": 487
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 0,
+ "total": 9
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 45,
+ "default": 529,
+ "total": 574
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14879616,
+ "username": "ctossaphol",
+ "fullName": "Tossaphol Chintanaphan (ctossaphol)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879616/medium/2ec654c7bf81fc9fd46d1cafe971d586.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5646
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5646
+ },
+ "translated": {
+ "tmMatch": 213,
+ "default": 5433,
+ "total": 5646
+ },
+ "targetTranslated": {
+ "tmMatch": 152,
+ "default": 1993,
+ "total": 2145
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 213,
+ "default": 5433,
+ "total": 5646
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14898212,
+ "username": "tubelightmediaworks",
+ "fullName": "Tubelight Mediaworks (tubelightmediaworks)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14898212/medium/38ce60e4d7795a5a9f5f0e6995aaa96a.png",
+ "preTranslated": 0,
+ "totalCosts": 31
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ta",
+ "name": "Tamil",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 31
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 67,
+ "total": 67
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 31,
+ "total": 31
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14902040,
+ "username": "umarhidayatullah16",
+ "fullName": "Umar Hidayatullah (umarhidayatullah16)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14902040/medium/873a0fe05a4609c6b051ecec7c6c9508.png",
+ "preTranslated": 0,
+ "totalCosts": 625
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 625
+ },
+ "translated": {
+ "tmMatch": 55,
+ "default": 570,
+ "total": 625
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 475,
+ "total": 500
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 55,
+ "default": 570,
+ "total": 625
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13937453,
+ "username": "umeshjha1998",
+ "fullName": "Umesh Jha (umeshjha1998)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13937453/medium/11a2603b1de4e5ee8da759de59f6df47.jpg",
+ "preTranslated": 0,
+ "totalCosts": 33
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 33
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 32,
+ "total": 33
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 50,
+ "total": 52
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 32,
+ "total": 33
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14690454,
+ "username": "sekoman01",
+ "fullName": "Uğur Daloğlu (sekoman01)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690454/medium/595a121d4a7427f7a21b75b32017c247.jpg",
+ "preTranslated": 0,
+ "totalCosts": 8409
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "tr",
+ "name": "Turkish",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 8409
+ },
+ "translated": {
+ "tmMatch": 159,
+ "default": 8250,
+ "total": 8409
+ },
+ "targetTranslated": {
+ "tmMatch": 137,
+ "default": 6443,
+ "total": 6580
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 159,
+ "default": 8250,
+ "total": 8409
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14711854,
+ "username": "Gamma-Software",
+ "fullName": "Valentin Rudloff (Gamma-Software)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711854/medium/0ae62f880c9fdec755310b2d551953ae.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 4919
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 4919
+ },
+ "translated": {
+ "tmMatch": 108,
+ "default": 4811,
+ "total": 4919
+ },
+ "targetTranslated": {
+ "tmMatch": 91,
+ "default": 4649,
+ "total": 4740
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 2520,
+ "total": 2525
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 108,
+ "default": 4811,
+ "total": 4919
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14934499,
+ "username": "c4r3fyl",
+ "fullName": "Valentino Gechev (c4r3fyl)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934499/medium/2da67358d1967d920a109354e6dade53.png",
+ "preTranslated": 0,
+ "totalCosts": 22
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "bg",
+ "name": "Bulgarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 22
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 20,
+ "total": 21
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 21,
+ "total": 22
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14872676,
+ "username": "VLN_1",
+ "fullName": "Vicente Lorente Noguera (VLN_1)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872676/medium/8d173c43fac87f0975a31275048360c8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 714
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 714
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 714,
+ "total": 714
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 652,
+ "total": 652
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 343,
+ "total": 343
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 714,
+ "total": 714
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14227150,
+ "username": "vidhyanand",
+ "fullName": "Vidhyanand Cs (vidhyanand)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14227150/medium/105fd3bc6a1a8f005dcb0b64a03d22a6.jpg",
+ "preTranslated": 0,
+ "totalCosts": 11371
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ml-IN",
+ "name": "Malayalam",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11371
+ },
+ "translated": {
+ "tmMatch": 263,
+ "default": 11108,
+ "total": 11371
+ },
+ "targetTranslated": {
+ "tmMatch": 446,
+ "default": 19187,
+ "total": 19633
+ },
+ "translatedByMt": {
+ "tmMatch": 5,
+ "default": 2,
+ "total": 7
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 263,
+ "default": 11108,
+ "total": 11371
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14884278,
+ "username": "snoopey",
+ "fullName": "Vlad Styopin (snoopey)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14884278/medium/6b9b5c53c7e1fbcc9ecb49f7171ac225.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 881
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 881
+ },
+ "translated": {
+ "tmMatch": 22,
+ "default": 859,
+ "total": 881
+ },
+ "targetTranslated": {
+ "tmMatch": 25,
+ "default": 668,
+ "total": 693
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 3,
+ "total": 5
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 22,
+ "default": 859,
+ "total": 881
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14928453,
+ "username": "devinderkumar321123",
+ "fullName": "Well Done (devinderkumar321123)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928453/medium/3ff4bb393f438e00e776eb20608acbc8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hi",
+ "name": "Hindi",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14926951,
+ "username": "werew985",
+ "fullName": "Were Were (werew985)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926951/medium/60813b9a95c00bf8943ff51d75bf26ec.png",
+ "preTranslated": 0,
+ "totalCosts": 27
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "my",
+ "name": "Burmese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 27
+ },
+ "translated": {
+ "tmMatch": 13,
+ "default": 14,
+ "total": 27
+ },
+ "targetTranslated": {
+ "tmMatch": 13,
+ "default": 14,
+ "total": 27
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 13,
+ "default": 14,
+ "total": 27
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14714290,
+ "username": "Wisnuadity",
+ "fullName": "Wisnu Aditya (Wisnuadity)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714290/medium/fbae35aeca0836b0acfa8d9ebebfdcd1.jpg",
+ "preTranslated": 0,
+ "totalCosts": 3127
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3127
+ },
+ "translated": {
+ "tmMatch": 197,
+ "default": 2930,
+ "total": 3127
+ },
+ "targetTranslated": {
+ "tmMatch": 201,
+ "default": 2551,
+ "total": 2752
+ },
+ "translatedByMt": {
+ "tmMatch": 54,
+ "default": 9,
+ "total": 63
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 197,
+ "default": 2930,
+ "total": 3127
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14916229,
+ "username": "yannfurrer33",
+ "fullName": "Yann Furrer (yannfurrer33)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14916229/medium/ef270c9207fc2731c23a32a1765629a1.png",
+ "preTranslated": 0,
+ "totalCosts": 1419
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1419
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1419,
+ "total": 1419
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1396,
+ "total": 1396
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 654,
+ "total": 654
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1419,
+ "total": 1419
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12702618,
"username": "p30on",
"fullName": "Yaser Doosti (p30on)",
+ "userRole": "Translator",
"avatarUrl": "https://www.gravatar.com/avatar/a7cd3eede73e079a057b4cb26e31e242?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 15:49:57"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 90,
- "target": 95,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922683",
- "username": "dimityryordanovmitov",
- "fullName": "Димитър Митов (dimityryordanovmitov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14922683/medium/0614e0aa7d663e2b1872912fef4dd747.jpeg",
- "joined": "2021-09-14 15:31:18"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 88,
- "target": 92,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900694",
- "username": "NagasaiCrowdin",
- "fullName": "NAGASAI BASVOJU (NagasaiCrowdin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900694/medium/c0786b1def4799c4c8a7c6881a66bb08.png",
- "joined": "2021-08-29 13:15:17"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 87,
- "target": 96,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14075861",
- "username": "ClaireBeydon",
- "fullName": "Claire Beydon (ClaireBeydon)",
- "avatarUrl": "https://www.gravatar.com/avatar/91c39f2896fb48bdd42c5cc53e42d2ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-01-14 10:33:39"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 85,
- "target": 85,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 0,
- "winning": 2681
- },
- {
- "user": {
- "id": "14442984",
- "username": "marseluca",
- "fullName": "Luca Marseglia (marseluca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14442984/medium/2f899f501af675c0081dff102f33b2ab.jpg",
- "joined": "2021-08-22 08:31:42"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 85,
- "target": 91,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838076",
- "username": "pd.duvnjak",
- "fullName": "Petar Duvnjak (pd.duvnjak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838076/medium/300021775f969ae9e2137cafb3c4b61e.png",
- "joined": "2021-07-13 11:47:09"
- },
- "languages": [
- {
- "id": "hr",
- "name": "Croatian"
- }
- ],
- "translated": 80,
- "target": 73,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867212",
- "username": "haritz_950423",
- "fullName": "Haritz Lopez (haritz_950423)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867212/medium/f2d03c7459424f9158deca133bb7a6db.jpeg",
- "joined": "2021-08-05 04:23:27"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 79,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853674",
- "username": "fixprogram",
- "fullName": "Denis (fixprogram)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853674/medium/bcb233640afd14d2584ebedb9347d249.jpeg",
- "joined": "2021-07-26 08:15:21"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 79,
- "target": 74,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14564238",
- "username": "FreddyAndresParra",
- "fullName": "Фредди Андрес Парра Орельяна (FreddyAndresParra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg",
- "joined": "2021-01-05 16:17:05"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 77,
- "target": 100,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 48,
- "negativeVotes": 2,
- "winning": 2817
- },
- {
- "user": {
- "id": "14893876",
+ "preTranslated": 0,
+ "totalCosts": 90
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fa",
+ "name": "Persian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 90
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 82,
+ "total": 90
+ },
+ "targetTranslated": {
+ "tmMatch": 10,
+ "default": 85,
+ "total": 95
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 2,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 82,
+ "total": 90
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14866604,
+ "username": "yeremiaryangunadi",
+ "fullName": "Yeremia Ryan Gunadi (yeremiaryangunadi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png",
+ "preTranslated": 0,
+ "totalCosts": 94329
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "id",
+ "name": "Indonesian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 94329
+ },
+ "translated": {
+ "tmMatch": 6330,
+ "default": 87999,
+ "total": 94329
+ },
+ "targetTranslated": {
+ "tmMatch": 5282,
+ "default": 77054,
+ "total": 82336
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 0,
+ "total": 1
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6330,
+ "default": 87999,
+ "total": 94329
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14558364,
+ "username": "Zachinquarantine",
+ "fullName": "Zachinquarantine",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14558364/medium/f255e187347bd3356751f4c43d10f4be.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 330
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hr",
+ "name": "Croatian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 330
+ },
+ "translated": {
+ "tmMatch": 17,
+ "default": 313,
+ "total": 330
+ },
+ "targetTranslated": {
+ "tmMatch": 16,
+ "default": 263,
+ "total": 279
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 17,
+ "default": 313,
+ "total": 330
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14861744,
+ "username": "szabozoltan69",
+ "fullName": "Zoltán Szabó (szabozoltan69)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861744/medium/f9ef7465cd3b8d070e9c0eb815e0334c.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 181
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 181
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 181,
+ "total": 181
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 135,
+ "total": 135
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 181,
+ "total": 181
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14787072,
+ "username": "HidroGaming",
+ "fullName": "_H1dR0_ (HidroGaming)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787072/medium/43874b3e9048a461c2bf7be02100d08d.png",
+ "preTranslated": 0,
+ "totalCosts": 113
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 113
+ },
+ "translated": {
+ "tmMatch": 18,
+ "default": 95,
+ "total": 113
+ },
+ "targetTranslated": {
+ "tmMatch": 23,
+ "default": 119,
+ "total": 142
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 51,
+ "total": 51
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 18,
+ "default": 95,
+ "total": 113
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14870630,
+ "username": "a8832021",
+ "fullName": "a8832021",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14870630/medium/b36889c699124e54c6b781e3ba477726.png",
+ "preTranslated": 0,
+ "totalCosts": 41
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 41
+ },
+ "translated": {
+ "tmMatch": 27,
+ "default": 14,
+ "total": 41
+ },
+ "targetTranslated": {
+ "tmMatch": 65,
+ "default": 42,
+ "total": 107
+ },
+ "translatedByMt": {
+ "tmMatch": 13,
+ "default": 8,
+ "total": 21
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 27,
+ "default": 14,
+ "total": 41
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14844420,
+ "username": "actgms",
+ "fullName": "actgms",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844420/medium/db7256e7422c9fdc1fa99e46436b6b4d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ru",
+ "name": "Russian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 45,
+ "total": 50
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 0,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14727038,
+ "username": "agolautner",
+ "fullName": "agolautner",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727038/medium/4150668cd11c03c029aeaaa44409248e.png",
+ "preTranslated": 0,
+ "totalCosts": 247
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "hu",
+ "name": "Hungarian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 247
+ },
+ "translated": {
+ "tmMatch": 33,
+ "default": 214,
+ "total": 247
+ },
+ "targetTranslated": {
+ "tmMatch": 34,
+ "default": 193,
+ "total": 227
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 33,
+ "default": 214,
+ "total": 247
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14893204,
+ "username": "alanwang123",
+ "fullName": "alanwang123",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893204/medium/a117e332c42088df14b116c428944e52.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 18
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 18
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 34,
+ "total": 34
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 18,
+ "total": 18
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14754146,
+ "username": "alfus5",
+ "fullName": "alfu5 (alfus5)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14754146/medium/69dd3ead82350e6abe958295d8cf6259.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 205
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "fr",
+ "name": "French",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 205
+ },
+ "translated": {
+ "tmMatch": 8,
+ "default": 197,
+ "total": 205
+ },
+ "targetTranslated": {
+ "tmMatch": 12,
+ "default": 204,
+ "total": 216
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 127,
+ "total": 127
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 8,
+ "default": 197,
+ "total": 205
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14892132,
+ "username": "bolingboling",
+ "fullName": "bolingboling",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892132/medium/0d05975017e3f5fb32c005f3dca098f5.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 5
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 5
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 11,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 5,
+ "total": 5
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14942697,
+ "username": "cclefjp",
+ "fullName": "cclef (cclefjp)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942697/medium/f0b6f7427184742914c4e061e485ecf0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 1888
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1888
+ },
+ "translated": {
+ "tmMatch": 28,
+ "default": 1860,
+ "total": 1888
+ },
+ "targetTranslated": {
+ "tmMatch": 133,
+ "default": 4417,
+ "total": 4550
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 44,
+ "total": 44
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 28,
+ "default": 1860,
+ "total": 1888
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14850810,
+ "username": "esdi",
+ "fullName": "dapalek (esdi)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14850810/medium/7e3a7993a59f2402dd2a2a32c2d92aed.png",
+ "preTranslated": 0,
+ "totalCosts": 11051
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "cs",
+ "name": "Czech",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 11051
+ },
+ "translated": {
+ "tmMatch": 550,
+ "default": 10501,
+ "total": 11051
+ },
+ "targetTranslated": {
+ "tmMatch": 438,
+ "default": 8589,
+ "total": 9027
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 11,
+ "total": 12
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 550,
+ "default": 10501,
+ "total": 11051
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14853150,
+ "username": "deborah.elizabeth.pereira",
+ "fullName": "deborah pereira (deborah.elizabeth.pereira)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853150/medium/3689e0e41d3b2c7c93aa95dfdebf880b.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14937513,
+ "username": "devudilip",
+ "fullName": "devu dilip (devudilip)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937513/medium/11d939bf3bb9ba2df698db8ac77e020e.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "kn",
+ "name": "Kannada",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14904798,
+ "username": "HelloYSS",
+ "fullName": "fidel pereira (HelloYSS)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904798/medium/545f00d30e7c01e5210295f88ef43c9f.png",
+ "preTranslated": 0,
+ "totalCosts": 332
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 332
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 332,
+ "total": 332
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 313,
+ "total": 313
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 292,
+ "total": 292
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 332,
+ "total": 332
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14804530,
+ "username": "starcoinshine",
+ "fullName": "frank wang (starcoinshine)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14804530/medium/fd9833454bd05fff797a7ee790477d72.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2621
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2621
+ },
+ "translated": {
+ "tmMatch": 99,
+ "default": 2522,
+ "total": 2621
+ },
+ "targetTranslated": {
+ "tmMatch": 198,
+ "default": 3928,
+ "total": 4126
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 99,
+ "default": 2522,
+ "total": 2621
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14568334,
+ "username": "norhorn",
+ "fullName": "george kitsoukakis (norhorn)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/eb41460b41717d2eb2d49964b63c7c0d.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 12780
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "el",
+ "name": "Greek",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 12780
+ },
+ "translated": {
+ "tmMatch": 594,
+ "default": 12186,
+ "total": 12780
+ },
+ "targetTranslated": {
+ "tmMatch": 627,
+ "default": 11506,
+ "total": 12133
+ },
+ "translatedByMt": {
+ "tmMatch": 9,
+ "default": 132,
+ "total": 141
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 594,
+ "default": 12186,
+ "total": 12780
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14751138,
+ "username": "cryptohakka",
+ "fullName": "hakka (cryptohakka)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/67c7ea6eb6029a188b2757333abdf96a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 1078
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1078
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 1077,
+ "total": 1078
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 2381,
+ "total": 2383
+ },
+ "translatedByMt": {
+ "tmMatch": 1,
+ "default": 14,
+ "total": 15
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 1077,
+ "total": 1078
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14101293,
+ "username": "wisterioso",
+ "fullName": "haoyun (wisterioso)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/4b5118faaffcbd991e92a4000b07ffc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 11,
+ "default": 0,
+ "total": 11
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14896320,
+ "username": "humairarzmn",
+ "fullName": "humairarzmn",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896320/medium/2090273c7d30341e9a0cdd0befd332a8.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 145
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ms",
+ "name": "Malay",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 145
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 136,
+ "total": 137
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 143,
+ "total": 145
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14819462,
+ "username": "Finlynd",
+ "fullName": "iamlynvely (Finlynd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819462/medium/89edd710c81f392464c405551b3fe3d9.jpg",
+ "preTranslated": 0,
+ "totalCosts": 2
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ko",
+ "name": "Korean",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 2
+ },
+ "translated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "targetTranslated": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 2,
+ "default": 0,
+ "total": 2
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 13959389,
+ "username": "inlak16",
+ "fullName": "inlak16",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png",
+ "preTranslated": 0,
+ "totalCosts": 15080
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "de",
+ "name": "German",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15080
+ },
+ "translated": {
+ "tmMatch": 506,
+ "default": 14574,
+ "total": 15080
+ },
+ "targetTranslated": {
+ "tmMatch": 448,
+ "default": 11589,
+ "total": 12037
+ },
+ "translatedByMt": {
+ "tmMatch": 28,
+ "default": 3499,
+ "total": 3527
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 506,
+ "default": 14574,
+ "total": 15080
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14837806,
+ "username": "yisosd",
+ "fullName": "iso Y (yisosd)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837806/medium/a024dfd35587ad67921934a9d6c6410e.png",
+ "preTranslated": 0,
+ "totalCosts": 978
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-TW",
+ "name": "Chinese Traditional",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 978
+ },
+ "translated": {
+ "tmMatch": 20,
+ "default": 958,
+ "total": 978
+ },
+ "targetTranslated": {
+ "tmMatch": 32,
+ "default": 1125,
+ "total": 1157
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 20,
+ "default": 958,
+ "total": 978
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 12375993,
+ "username": "nobilistefano",
+ "fullName": "istefano92 (nobilistefano)",
+ "userRole": "Translator",
+ "avatarUrl": "https://www.gravatar.com/avatar/1c7437a7fcac9b4202488c1eb882f4f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
+ "preTranslated": 0,
+ "totalCosts": 47
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 47
+ },
+ "translated": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 30,
+ "total": 36
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 5,
+ "default": 42,
+ "total": 47
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14643054,
+ "username": "izayl",
+ "fullName": "izayl",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643054/medium/d6dd01be4478ea8a2c0eb30797ab34cc.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 3684
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "zh-CN",
+ "name": "Chinese Simplified",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 3684
+ },
+ "translated": {
+ "tmMatch": 178,
+ "default": 3506,
+ "total": 3684
+ },
+ "targetTranslated": {
+ "tmMatch": 262,
+ "default": 3738,
+ "total": 4000
+ },
+ "translatedByMt": {
+ "tmMatch": 8,
+ "default": 370,
+ "total": 378
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 178,
+ "default": 3506,
+ "total": 3684
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14821880,
+ "username": "jonathanandrade10",
+ "fullName": "jonathanandrade10",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14821880/medium/59c6c840e75ec03af8b88b5005744137.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 386
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 386
+ },
+ "translated": {
+ "tmMatch": 30,
+ "default": 356,
+ "total": 386
+ },
+ "targetTranslated": {
+ "tmMatch": 30,
+ "default": 377,
+ "total": 407
+ },
+ "translatedByMt": {
+ "tmMatch": 3,
+ "default": 125,
+ "total": 128
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 30,
+ "default": 356,
+ "total": 386
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14888938,
+ "username": "kenyturpohuamani",
+ "fullName": "keny turpo huamani (kenyturpohuamani)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888938/medium/1ea749d5846031956e5fffe970e3ecb0.png",
+ "preTranslated": 0,
+ "totalCosts": 1
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "es-EM",
+ "name": "Spanish (Modern)",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 1
+ },
+ "translated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "targetTranslated": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 0,
+ "default": 1,
+ "total": 1
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14876232,
+ "username": "takbass7",
+ "fullName": "kittichart Seneewong na ayudhaya (takbass7)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876232/medium/e51cba47d7f770c4fee549426ed45e8e.jpg",
+ "preTranslated": 0,
+ "totalCosts": 15
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "th",
+ "name": "Thai",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 15
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 1,
+ "total": 2
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 11,
+ "total": 15
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14787358,
+ "username": "leideribeiro9150",
+ "fullName": "leide mariana santos ribeiro (leideribeiro9150)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787358/medium/23937ae5016b2a370875018580c2905b.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 99
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "pt-BR",
+ "name": "Portuguese, Brazilian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 99
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 95,
+ "total": 99
+ },
+ "targetTranslated": {
+ "tmMatch": 4,
+ "default": 81,
+ "total": 85
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 3,
+ "total": 3
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 95,
+ "total": 99
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14862718,
+ "username": "anh_khoa",
+ "fullName": "lilkwa (anh_khoa)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862718/medium/17d111d400d4ab22af931aec7e495066.png",
+ "preTranslated": 0,
+ "totalCosts": 36
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "vi",
+ "name": "Vietnamese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 36
+ },
+ "translated": {
+ "tmMatch": 6,
+ "default": 30,
+ "total": 36
+ },
+ "targetTranslated": {
+ "tmMatch": 6,
+ "default": 41,
+ "total": 47
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 6,
+ "default": 30,
+ "total": 36
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14931651,
+ "username": "sinsinpurin",
+ "fullName": "masaki obayashi (sinsinpurin)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14931651/medium/3e26483770249bd37034cfefe44469f0.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 305
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "ja",
+ "name": "Japanese",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 305
+ },
+ "translated": {
+ "tmMatch": 1,
+ "default": 304,
+ "total": 305
+ },
+ "targetTranslated": {
+ "tmMatch": 1,
+ "default": 833,
+ "total": 834
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 62,
+ "total": 62
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 1,
+ "default": 304,
+ "total": 305
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14868732,
+ "username": "mykola.incognito",
+ "fullName": "mykola incognito (mykola.incognito)",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14868732/medium/f62443bab75b8e6f6e607a4cf3df9a72.png",
+ "preTranslated": 0,
+ "totalCosts": 653
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "uk",
+ "name": "Ukrainian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 653
+ },
+ "translated": {
+ "tmMatch": 19,
+ "default": 634,
+ "total": 653
+ },
+ "targetTranslated": {
+ "tmMatch": 19,
+ "default": 570,
+ "total": 589
+ },
+ "translatedByMt": {
+ "tmMatch": 14,
+ "default": 55,
+ "total": 69
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 19,
+ "default": 634,
+ "total": 653
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14854804,
+ "username": "nikbiondo",
+ "fullName": "nikbiondo",
+ "userRole": "Translator",
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854804/medium/e3ad6aa0acf22cbca8794a5fc69f95f9.jpeg",
+ "preTranslated": 0,
+ "totalCosts": 56
+ },
+ "languages": [
+ {
+ "language": {
+ "id": "it",
+ "name": "Italian",
+ "tmSavings": 0,
+ "preTranslate": 0,
+ "totalCosts": 56
+ },
+ "translated": {
+ "tmMatch": 4,
+ "default": 52,
+ "total": 56
+ },
+ "targetTranslated": {
+ "tmMatch": 5,
+ "default": 56,
+ "total": 61
+ },
+ "translatedByMt": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "approved": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ },
+ "translationCosts": {
+ "tmMatch": 4,
+ "default": 52,
+ "total": 56
+ },
+ "approvalCosts": {
+ "tmMatch": 0,
+ "default": 0,
+ "total": 0
+ }
+ }
+ ]
+ },
+ {
+ "user": {
+ "id": 14893876,
"username": "nsafari",
"fullName": "nsafari",
+ "userRole": "Translator",
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893876/medium/2da09d6d609c8e44fe956ce842822c52.png",
- "joined": "2021-08-24 08:07:08"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 76,
- "target": 99,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886470",
- "username": "pegzerthugger",
- "fullName": "PegzOff TLPV (pegzerthugger)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886470/medium/b560016f96838976470e87b2f9077243.png",
- "joined": "2021-08-18 15:47:35"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 76,
- "target": 70,
- "approved": 0,
- "voted": 4,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846468",
- "username": "khanh30125",
- "fullName": "Gia Khánh Phạm (khanh30125)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846468/medium/3749044fc47f1a5aa666bfcc50f7af1d.jpeg",
- "joined": "2021-07-20 06:04:26"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 75,
- "target": 124,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825340",
- "username": "arctic51",
- "fullName": "arctic51",
- "avatarUrl": "https://www.gravatar.com/avatar/097b4b755c59dbbf55017ad0647c05f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 05:09:47"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 72,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896196",
- "username": "leoclark",
- "fullName": "leoclark",
- "avatarUrl": "https://www.gravatar.com/avatar/7e9b882a9e897b57b3e28408fba53538?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-25 23:06:23"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 71,
- "target": 67,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13559834",
- "username": "DasMergo",
- "fullName": "Seied Ali Mirkarimi (DasMergo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13559834/medium/1022545f1391447b44113ac76076957a.jpg",
- "joined": "2021-07-21 14:57:03"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 71,
- "target": 86,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 13,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851800",
- "username": "chrisvu.wabash",
- "fullName": "Anh Vu (chrisvu.wabash)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851800/medium/368f50b324d31a54a501da2837bceaad.png",
- "joined": "2021-07-24 14:57:40"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 71,
- "target": 95,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14885094",
- "username": "FrancoElicabe",
- "fullName": "FrancoElicabe",
- "avatarUrl": "https://www.gravatar.com/avatar/f0f6b7a6624308ec4392f59fc745f03d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 18:28:02"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 62,
- "target": 62,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14891780",
- "username": "GabrielaAndere",
- "fullName": "Gabriela Andere (GabrielaAndere)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14891780/medium/27acbd59c98271b2bbb592ad38bc5f87.jpg",
- "joined": "2021-08-23 16:58:19"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 62,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845564",
- "username": "Ramiro_ETH",
- "fullName": "Ramiro_ETH",
- "avatarUrl": "https://www.gravatar.com/avatar/3d026f6edc66a9646bb43ce532e5b0b3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 12:43:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 61,
- "target": 70,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 9
- },
- {
- "user": {
- "id": "14836710",
- "username": "BumbyMoser",
- "fullName": "BumbyMoser",
- "avatarUrl": "https://www.gravatar.com/avatar/6be8a07ece86c0c1579ccf4ba0bcb151?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-12 10:49:40"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 60,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914311",
- "username": "oleglody",
- "fullName": "oleglody",
- "avatarUrl": "https://www.gravatar.com/avatar/88d1f74e942037fae969788836f15005?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 12:50:38"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 60,
- "target": 77,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13094015",
- "username": "Helldelta",
- "fullName": "Helldelta",
- "avatarUrl": "https://www.gravatar.com/avatar/24aec05b5426673452ad2142981dbbe1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-25 15:04:23"
- },
- "languages": [
- {
- "id": "nl",
- "name": "Dutch"
- }
- ],
- "translated": 59,
- "target": 60,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823752",
- "username": "Leo500023",
- "fullName": "Leo500023",
- "avatarUrl": "https://www.gravatar.com/avatar/367819555226fe04e92cd96b4e10c772?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 23:15:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 59,
- "target": 117,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 59
- },
- {
- "user": {
- "id": "14935615",
- "username": "bratzconstantino",
- "fullName": "Spoiled Bratz (bratzconstantino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935615/medium/f41b61d9982f8da04237aae32a48a9ab.jpeg",
- "joined": "2021-09-24 01:43:03"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 57,
- "target": 84,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14940215",
- "username": "Blaslaw",
- "fullName": "Blaslaw",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14940215/medium/8287f3ca1e766a45b1e013f430de367f.png",
- "joined": "2021-09-27 10:06:03"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 57,
- "target": 64,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854804",
- "username": "nikbiondo",
- "fullName": "nikbiondo",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854804/medium/e3ad6aa0acf22cbca8794a5fc69f95f9.jpeg",
- "joined": "2021-07-27 05:48:17"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 56,
- "target": 61,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14869408",
- "username": "rezaabbasian",
- "fullName": "rezaabbasian",
- "avatarUrl": "https://www.gravatar.com/avatar/f27f8b419424846d12212697a4cc9752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-06 21:20:02"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 54,
- "target": 45,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775946",
- "username": "Beas",
- "fullName": "Beas",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775946/medium/22ad4db44fa2f657ec257775cddc899c.jpg",
- "joined": "2021-05-28 09:52:04"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 54,
- "target": 54,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 46709
- },
- {
- "user": {
- "id": "14932861",
- "username": "kristinebui299",
- "fullName": "Kristine B (kristinebui299)",
- "avatarUrl": "https://www.gravatar.com/avatar/7ac4eab3f69b49953eaa21b3e968a496?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 02:33:09"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 52,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14880826",
- "username": "igenekim",
- "fullName": "GENE KIM (igenekim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880826/medium/321dd4c0081b9a2246cd14956dd1c36a.png",
- "joined": "2021-08-15 04:30:02"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 50,
- "target": 52,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763374",
- "username": "untipollamadomarcelo",
- "fullName": "Marcelo Cornejo (untipollamadomarcelo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/6fada991f179e004707187b671444058.jpeg",
- "joined": "2021-08-14 03:27:04"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 50,
- "target": 54,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14844128",
- "username": "abumalikamr",
- "fullName": "abumalikamr",
- "avatarUrl": "https://www.gravatar.com/avatar/341ead55964ea4cd1cd75ebfd3c3f4f4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-18 09:44:12"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 49,
- "target": 48,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908081",
- "username": "luca.buglioli",
- "fullName": "Luca Buglioli (luca.buglioli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14908081/medium/a6d00d2a7406dca4ec0b1c8557607f4d.png",
- "joined": "2021-09-03 17:29:36"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 48,
- "target": 53,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929487",
- "username": "gutianyichn",
- "fullName": "gutianyichn",
- "avatarUrl": "https://www.gravatar.com/avatar/6aa15b2b5248c923eac9ccf554c8547a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-19 13:07:12"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 48,
- "target": 83,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897648",
- "username": "Verar093",
- "fullName": "Verar093",
- "avatarUrl": "https://www.gravatar.com/avatar/1c2ad271993412f703c043a0ef663e67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-27 00:25:15"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 47,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12375993",
- "username": "nobilistefano",
- "fullName": "istefano92 (nobilistefano)",
- "avatarUrl": "https://www.gravatar.com/avatar/1c7437a7fcac9b4202488c1eb882f4f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-03 18:28:34"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 47,
- "target": 36,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14844420",
- "username": "actgms",
- "fullName": "actgms",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14844420/medium/db7256e7422c9fdc1fa99e46436b6b4d.jpeg",
- "joined": "2021-07-18 15:26:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 47,
- "target": 50,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890296",
- "username": "sehitzler",
- "fullName": "Sebastian Hitzler (sehitzler)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890296/medium/404ffc28f8996aa26eb3ce5bdc1e3d3f.png",
- "joined": "2021-08-21 10:43:39"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 47,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876410",
- "username": "dlphin",
- "fullName": "Pița Rareș (dlphin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876410/medium/e48734129bc32a7965b5c2f11bd36339.png",
- "joined": "2021-08-13 07:28:04"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 47,
- "target": 53,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13544774",
- "username": "LukaK",
- "fullName": "Luka Kropec (LukaK)",
- "avatarUrl": "https://www.gravatar.com/avatar/4536fcbc2dc226c427318126070e090d?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-23 15:15:26"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "ar",
- "name": "Arabic"
- },
- {
- "id": "bg",
- "name": "Bulgarian"
- },
- {
- "id": "ca",
- "name": "Catalan"
- },
- {
- "id": "cs",
- "name": "Czech"
- },
- {
- "id": "da",
- "name": "Danish"
- },
- {
- "id": "de",
- "name": "German"
- },
- {
- "id": "el",
- "name": "Greek"
- },
- {
- "id": "fi",
- "name": "Finnish"
- },
- {
- "id": "gu-IN",
- "name": "Gujarati"
- },
- {
- "id": "he",
- "name": "Hebrew"
- },
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "it",
- "name": "Italian"
- },
- {
- "id": "ja",
- "name": "Japanese"
- },
- {
- "id": "ko",
- "name": "Korean"
- },
- {
- "id": "lt",
- "name": "Lithuanian"
- },
- {
- "id": "mk",
- "name": "Macedonian"
- },
- {
- "id": "mn",
- "name": "Mongolian"
- },
- {
- "id": "nl",
- "name": "Dutch"
- },
- {
- "id": "no",
- "name": "Norwegian"
- },
- {
- "id": "pa-IN",
- "name": "Punjabi"
- },
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "pt-PT",
- "name": "Portuguese"
- },
- {
- "id": "ru",
- "name": "Russian"
- },
- {
- "id": "sk",
- "name": "Slovak"
- },
- {
- "id": "sl",
- "name": "Slovenian"
- },
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "sv-SE",
- "name": "Swedish"
- },
- {
- "id": "tr",
- "name": "Turkish"
- },
- {
- "id": "uk",
- "name": "Ukrainian"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- },
- {
- "id": "vi",
- "name": "Vietnamese"
- },
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- },
- {
- "id": "id",
- "name": "Indonesian"
- },
- {
- "id": "fa",
- "name": "Persian"
- },
- {
- "id": "ta",
- "name": "Tamil"
- },
- {
- "id": "bn",
- "name": "Bengali"
- },
- {
- "id": "mr",
- "name": "Marathi"
- },
- {
- "id": "th",
- "name": "Thai"
- },
- {
- "id": "hr",
- "name": "Croatian"
- },
- {
- "id": "kk",
- "name": "Kazakh"
- },
- {
- "id": "hi",
- "name": "Hindi"
- },
- {
- "id": "ky",
- "name": "Kyrgyz"
- },
- {
- "id": "ms",
- "name": "Malay"
- },
- {
- "id": "te",
- "name": "Telugu"
- },
- {
- "id": "fil",
- "name": "Filipino"
- },
- {
- "id": "ml-IN",
- "name": "Malayalam"
- },
- {
- "id": "br-FR",
- "name": "Breton"
- },
- {
- "id": "uz",
- "name": "Uzbek"
- },
- {
- "id": "kn",
- "name": "Kannada"
- },
- {
- "id": "sw",
- "name": "Swahili"
- },
- {
- "id": "sr-CS",
- "name": "Serbian (Latin)"
- },
- {
- "id": "am",
- "name": "Amharic"
- },
- {
- "id": "tg",
- "name": "Tajik"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- },
- {
- "id": "ig",
- "name": "Igbo"
- },
- {
- "id": "yo",
- "name": "Yoruba"
- },
- {
- "id": "bi",
- "name": "Bislama"
- }
- ],
- "translated": 47,
- "target": 47,
- "approved": 3883,
- "voted": 0,
- "positiveVotes": 143,
- "negativeVotes": 10,
- "winning": 8434
- },
- {
- "user": {
- "id": "14837068",
- "username": "parpok",
- "fullName": "Patryk (parpok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14837068/medium/ac82c254eca9f7c56757c56079b775c2.png",
- "joined": "2021-07-12 16:30:54"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 46,
- "target": 393,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 12
- },
- {
- "user": {
- "id": "14941689",
- "username": "JossVog",
- "fullName": "José Bernal (JossVog)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14941689/medium/bda6c6857a8faad62b2e05e88afec386.png",
- "joined": "2021-09-28 08:53:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 45,
- "target": 48,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848404",
- "username": "Andreccr",
- "fullName": "Andreccr",
- "avatarUrl": "https://www.gravatar.com/avatar/15114d1438719a62279c133fda3e78be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 20:11:31"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 45,
- "target": 44,
- "approved": 0,
- "voted": 7,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14897560",
- "username": "LilyX0309",
- "fullName": "Lily Zhou (LilyX0309)",
- "avatarUrl": "https://www.gravatar.com/avatar/7a33ca1183c03e2e9df2ba74129f4e56?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 22:37:49"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 44,
- "target": 76,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13659341",
- "username": "nimapourazad52",
- "fullName": "Nima Pourazad (nimapourazad52)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13659341/medium/4ad7ae1e017a3fd4ddba1d1a8c30bb51.jpg",
- "joined": "2021-07-21 00:46:30"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 41,
- "target": 46,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830540",
- "username": "Keonez",
- "fullName": "Joe Tribbiani (Keonez)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830540/medium/0c57d4c791795b7bcdc9f6775936ef7a.gif",
- "joined": "2021-07-07 08:10:21"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 41,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14870630",
- "username": "a8832021",
- "fullName": "a8832021",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14870630/medium/b36889c699124e54c6b781e3ba477726.png",
- "joined": "2021-08-08 00:51:30"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 41,
- "target": 107,
- "approved": 0,
- "voted": 12,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822732",
- "username": "kingway",
- "fullName": "Jingwei Zou (kingway)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14822732/medium/5fbcf45bc14f5cbe8d207e8adee7bfc1.jpeg",
- "joined": "2021-07-01 06:36:31"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 40,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855548",
- "username": "bayt",
- "fullName": "bayt",
- "avatarUrl": "https://www.gravatar.com/avatar/3053a78ca2d0c5091d982c9806e9e2a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 17:24:09"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 39,
- "target": 37,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915807",
- "username": "tsangz189",
- "fullName": "tsangz189",
- "avatarUrl": "https://www.gravatar.com/avatar/f00088ffdad322e46c3e2eb701b4d192?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 12:37:18"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 39,
- "target": 70,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822228",
- "username": "nTaco",
- "fullName": "nTaco",
- "avatarUrl": "https://www.gravatar.com/avatar/38cbc3eeebaf79b33d9901249efad48f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-30 20:25:12"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 38,
- "target": 111,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14908477",
- "username": "pamir04",
- "fullName": "pamir04",
- "avatarUrl": "https://www.gravatar.com/avatar/d0aa145db5cf0cb5ae0d4f30f63284e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-04 03:33:22"
- },
- "languages": [
- {
- "id": "tg",
- "name": "Tajik"
- }
- ],
- "translated": 38,
- "target": 43,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14903096",
- "username": "blue_mrvn",
- "fullName": "blue_mrvn",
- "avatarUrl": "https://www.gravatar.com/avatar/690f1eaca7256dfdc02abdd51ec4f4b1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-31 06:33:53"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 38,
- "target": 36,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13894501",
- "username": "yuchtyan",
- "fullName": "yuchtyan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13894501/medium/beb50eb157c8ed6305719b269fe5e56d.png",
- "joined": "2021-08-28 20:26:22"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 37,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14862718",
- "username": "anh_khoa",
- "fullName": "lilkwa (anh_khoa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14862718/medium/17d111d400d4ab22af931aec7e495066.png",
- "joined": "2021-08-02 04:55:08"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 36,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917397",
- "username": "ijann_",
- "fullName": "ijann_",
- "avatarUrl": "https://www.gravatar.com/avatar/af23c70f2e300427aad5461a15b2dc9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 15:48:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 35,
- "target": 31,
- "approved": 0,
- "voted": 21,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915329",
- "username": "Mariam163",
- "fullName": "Mariam163",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14915329/medium/504f7acd4e8cb7ee70fbe35240bed705.jpg",
- "joined": "2021-09-09 08:12:15"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 35,
- "target": 41,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709432",
- "username": "s.c.macchiato",
- "fullName": "Haruka Kawamura (s.c.macchiato)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709432/medium/cdfb5efd65d125af9b5d5a1d17d039f8.jpeg",
- "joined": "2021-09-29 00:06:44"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 34,
- "target": 93,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14826354",
- "username": "manzin",
- "fullName": "manzin",
- "avatarUrl": "https://www.gravatar.com/avatar/b20136210328d604d9cd396ecb7e012d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-04 03:53:01"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 34,
- "target": 42,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13937453",
- "username": "umeshjha1998",
- "fullName": "Umesh Jha (umeshjha1998)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13937453/medium/11a2603b1de4e5ee8da759de59f6df47.jpg",
- "joined": "2021-08-09 15:28:33"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 33,
- "target": 52,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905975",
- "username": "Hendrik07",
- "fullName": "Hendrik07",
- "avatarUrl": "https://www.gravatar.com/avatar/4564777ac0df36d91cad47153846aef1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-02 08:35:45"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 32,
- "target": 35,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13959163",
- "username": "bobjiang",
- "fullName": "Bob Jiang (bobjiang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959163/medium/f0592e36e25621172a739a84f69d3099.jpeg",
- "joined": "2019-08-22 08:03:05"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 32,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14898212",
- "username": "tubelightmediaworks",
- "fullName": "Tubelight Mediaworks (tubelightmediaworks)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14898212/medium/38ce60e4d7795a5a9f5f0e6995aaa96a.png",
- "joined": "2021-08-27 10:02:47"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 31,
- "target": 67,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13854995",
- "username": "muten85",
- "fullName": "muten85",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13854995/medium/201d1d1193a904192e9d8a18d70d0556.png",
- "joined": "2021-06-04 08:08:36"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 31,
- "target": 39,
- "approved": 0,
- "voted": 36,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14823390",
- "username": "bitgalea",
- "fullName": "bitgalea",
- "avatarUrl": "https://www.gravatar.com/avatar/1125e27372dbf2c2f39bd22d7bff7752?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 14:56:48"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 31,
- "target": 29,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14825546",
- "username": "ph4ni",
- "fullName": "Phanindra (ph4ni)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14825546/medium/34f82ec0a369275b6764b4d12b91cf48.png",
- "joined": "2021-07-03 09:10:07"
- },
- "languages": [
- {
- "id": "te",
- "name": "Telugu"
- }
- ],
- "translated": 30,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937349",
- "username": "doritbenvakil",
- "fullName": "Dorit Ben Vakil (doritbenvakil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937349/medium/d94e0fb70b144ad3e88293dd5538a58e.jpeg",
- "joined": "2021-09-25 08:40:16"
- },
- "languages": [
- {
- "id": "he",
- "name": "Hebrew"
- }
- ],
- "translated": 29,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14848120",
- "username": "RickardW",
- "fullName": "RickardW",
- "avatarUrl": "https://www.gravatar.com/avatar/9c29e1f13b3ddc4562ed451b24d241e7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-21 12:48:11"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 29,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14884570",
- "username": "anastasias",
- "fullName": "anastasias",
- "avatarUrl": "https://www.gravatar.com/avatar/1a4b46d27be66e4c6b4db4b4bbedbd59?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-17 11:24:20"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 28,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926377",
- "username": "ShubhamKukreti",
- "fullName": "Shubham Kukreti (ShubhamKukreti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926377/medium/c23d2146ea906d371c9ea8af48d3832f.jpeg",
- "joined": "2021-09-17 06:15:26"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 27,
- "target": 44,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867044",
- "username": "Sercelik",
- "fullName": "Sercelik",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867044/medium/d25753e6bc7cb3b8ddbf025dac169b4f.png",
- "joined": "2021-08-05 01:48:29"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 27,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14925495",
- "username": "yuttapolp",
- "fullName": "Man Yuttapol Pimpison (yuttapolp)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14925495/medium/d503eb59e0c32db1225720e570a68719.jpeg",
- "joined": "2021-09-16 13:48:27"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 27,
- "target": 11,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14927445",
- "username": "kazutaka3226",
- "fullName": "Kaz Tak (kazutaka3226)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14927445/medium/0a9fc623888037236c754e61afcb1ea7.png",
- "joined": "2021-09-18 00:00:22"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 27,
- "target": 59,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14926951",
- "username": "werew985",
- "fullName": "Were Were (werew985)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14926951/medium/60813b9a95c00bf8943ff51d75bf26ec.png",
- "joined": "2021-09-17 14:04:29"
- },
- "languages": [
- {
- "id": "my",
- "name": "Burmese"
- }
- ],
- "translated": 27,
- "target": 27,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13330091",
- "username": "Neurone",
- "fullName": "Giuseppe Bertone (Neurone)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13330091/medium/3b845ffc974bc9d909b60d7ed4ca5bf8.jpeg",
- "joined": "2021-09-10 19:16:03"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 26,
- "target": 31,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14875422",
- "username": "T37B60",
- "fullName": "Sergiu Gelu Stoica (T37B60)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14875422/medium/2e2cc48eb16214729aa8f09f43fe49ac.jpeg",
- "joined": "2021-08-11 11:12:14"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 26,
- "target": 25,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14883776",
- "username": "ramirolucasb",
- "fullName": "Ramiro Baladron (ramirolucasb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14883776/medium/b7bec81cb51a512c787582e9673a418a.png",
- "joined": "2021-08-17 01:55:38"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 26,
- "target": 32,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14922369",
- "username": "halley.oliveira",
- "fullName": "halley.oliveira",
- "avatarUrl": "https://www.gravatar.com/avatar/50becb2743c21fc6a72320fa8961e0d7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-14 10:48:46"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 25,
- "target": 26,
- "approved": 0,
- "voted": 10,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865958",
- "username": "hasanmumtaz",
- "fullName": "Hasan Mumtaz (hasanmumtaz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865958/medium/cf8ccfc57528109bd94fb6dde9ec456f.jpeg",
- "joined": "2021-08-04 06:03:17"
- },
- "languages": [
- {
- "id": "bn",
- "name": "Bengali"
- }
- ],
- "translated": 24,
- "target": 42,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846664",
- "username": "donny.darco",
- "fullName": "Leon Te (donny.darco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14846664/medium/7d61ca2c4b5dc23e2c385b52b51b9cce.jpeg",
- "joined": "2021-07-20 09:05:15"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 24,
- "target": 31,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 3,
- "winning": 0
- },
- {
- "user": {
- "id": "14631076",
- "username": "Kuthep",
- "fullName": "Kuthep",
- "avatarUrl": "https://www.gravatar.com/avatar/6bb2f5fe2b472535dabfe1454f4a591e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-02-19 02:25:37"
- },
- "languages": [
- {
- "id": "mr",
- "name": "Marathi"
- }
- ],
- "translated": 22,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723652",
- "username": "nigthguarder",
- "fullName": "nigthguarder",
- "avatarUrl": "https://www.gravatar.com/avatar/9ed9f22ebeb82c371b8a30a4d9c28fb6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 09:47:48"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 22,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14934499",
- "username": "c4r3fyl",
- "fullName": "Valentino Gechev (c4r3fyl)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14934499/medium/2da67358d1967d920a109354e6dade53.png",
- "joined": "2021-09-23 07:08:13"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 22,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14870048",
- "username": "Sunnyhk",
- "fullName": "Sunnyhk",
- "avatarUrl": "https://www.gravatar.com/avatar/102f6302741e7b4349b06d0fb1bc33c2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-07 12:06:00"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 22,
- "target": 47,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14890278",
- "username": "Hephaistos357",
- "fullName": "Hephaistos357",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890278/medium/7fd731668afeab1f389fbe0b256f0619.png",
- "joined": "2021-08-21 10:19:15"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 20,
- "target": 22,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842502",
- "username": "excelaa",
- "fullName": "excelaa",
- "avatarUrl": "https://www.gravatar.com/avatar/831f1e467000356793c95289198ac7bf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 19:34:03"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 20,
- "target": 14,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14915729",
- "username": "Gae..l",
- "fullName": "Gae..l",
- "avatarUrl": "https://www.gravatar.com/avatar/cbca2ac72780df856d9bfd8434cf3cfd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-09 11:42:33"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 20,
- "target": 28,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901400",
- "username": "shimanto2",
- "fullName": "shimanto (shimanto2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14901400/medium/05a5f76d6f25c24b20989cc2a8481a6f.jpg",
- "joined": "2021-08-30 03:27:31"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 20,
- "target": 63,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874054",
- "username": "work.research.closil",
- "fullName": "CLOTILDE SILVA (work.research.closil)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14874054/medium/b8c468681861135296f108ae592b801d.png",
- "joined": "2021-08-10 11:17:22"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 20,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873848",
- "username": "seaona",
- "fullName": "Mariona (seaona)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873848/medium/b17de5f28e79a1bf040851bf192bc9e1.jpeg",
- "joined": "2021-08-10 08:58:45"
- },
- "languages": [
- {
- "id": "ca",
- "name": "Catalan"
- }
- ],
- "translated": 19,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14840702",
- "username": "EmpirePers",
- "fullName": "Persacho (EmpirePers)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14840702/medium/dab9b07237a7db5ed0e7b5a526edeb9d.png",
- "joined": "2021-07-15 09:20:36"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 19,
- "target": 26,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916719",
- "username": "erndevelop",
- "fullName": "erndevelop",
- "avatarUrl": "https://www.gravatar.com/avatar/616a39f2f590e4d611da9061b6b152bc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 05:34:07"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 19,
- "target": 25,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909801",
- "username": "client2019",
- "fullName": "client2019",
- "avatarUrl": "https://www.gravatar.com/avatar/048b048fbf8560ca3d71782944d0ce9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 06:28:53"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 19,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845634",
- "username": "andrejmnunes",
- "fullName": "andrejmnunes",
- "avatarUrl": "https://www.gravatar.com/avatar/81251e5f80461de5f05f16e9651c2212?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-19 13:41:38"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 19,
- "target": 18,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802836",
- "username": "Ryeore",
- "fullName": "Ryeore",
- "avatarUrl": "https://www.gravatar.com/avatar/fd23450634472a71b25a23da1ed4b329?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 02:10:37"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 19,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1036
- },
- {
- "user": {
- "id": "14852154",
- "username": "bartekbugajski",
- "fullName": "Bartek Bugajski (bartekbugajski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852154/medium/0039a82eff71b9ca0fe6a2d037273d3a.jpeg",
- "joined": "2021-07-25 01:49:27"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 19,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813326",
- "username": "lingwen",
- "fullName": "lingwen",
- "avatarUrl": "https://www.gravatar.com/avatar/a2ed20a7c9813e3e85a6ebb6c3397a7d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-24 01:59:02"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 18,
- "target": 24,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14899828",
- "username": "MickeyMelendez7",
- "fullName": "MickeyMelendez7",
- "avatarUrl": "https://www.gravatar.com/avatar/ce60ac7fdfb503c810a5ec177105f40a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-28 20:02:45"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 18,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14841924",
- "username": "giulia29",
- "fullName": "Giulia Iuppa (giulia29)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14841924/medium/8491c59d47fdaf576a34ff07a9808c5c.jpg",
- "joined": "2021-07-16 18:29:21"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 18,
- "target": 19,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14893204",
- "username": "alanwang123",
- "fullName": "alanwang123",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14893204/medium/a117e332c42088df14b116c428944e52.jpeg",
- "joined": "2021-08-24 18:39:28"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 18,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710420",
- "username": "Afshin4030",
- "fullName": "Afshin4030",
- "avatarUrl": "https://www.gravatar.com/avatar/095e0bdee3d3f914fe82205d5e3a267a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 13:48:30"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- },
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 18,
- "target": 20,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14874804",
- "username": "cg123",
- "fullName": "cg123",
- "avatarUrl": "https://www.gravatar.com/avatar/ac933b9d10dd7f9559fdc39e35603357?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-11 02:32:36"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 17,
- "target": 204,
- "approved": 0,
- "voted": 22,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830086",
- "username": "Kirschm",
- "fullName": "Kirschm",
- "avatarUrl": "https://www.gravatar.com/avatar/eb37d97855a77d257dfaf8b6daf645d1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-07 01:28:58"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 17,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13831937",
- "username": "atamerco23",
- "fullName": "Ata Çağan Atamer (atamerco23)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13831937/medium/e1a794be136eb53ee2ec1d58afe8f370.jpg",
- "joined": "2021-08-06 09:13:53"
- },
- "languages": [
- {
- "id": "tr",
- "name": "Turkish"
- }
- ],
- "translated": 16,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914877",
- "username": "alexding",
- "fullName": "Alex (alexding)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14914877/medium/d5cd27d11988bc77c9d6dc68a9aa8ae5.jpg",
- "joined": "2021-09-09 00:39:15"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 16,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14871250",
- "username": "Kiepasaaaaa",
- "fullName": "Kiepasaaaaa",
- "avatarUrl": "https://www.gravatar.com/avatar/abd1d53abc1ac7a2913000a934adeff9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-08 14:07:12"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- },
- {
- "id": "sq",
- "name": "Albanian"
- }
- ],
- "translated": 16,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14900372",
- "username": "h2-so4",
- "fullName": "H2-SO4 (h2-so4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14900372/medium/0e2d91393c967253a354ded009b0df61.png",
- "joined": "2021-08-29 08:00:37"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 16,
- "target": 23,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14933019",
- "username": "Nodral",
- "fullName": "Nodral",
- "avatarUrl": "https://www.gravatar.com/avatar/c49a614198d66adaecf930dea95b8419?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-22 05:11:03"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 16,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14876232",
- "username": "takbass7",
- "fullName": "kittichart Seneewong na ayudhaya (takbass7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14876232/medium/e51cba47d7f770c4fee549426ed45e8e.jpg",
- "joined": "2021-08-12 02:54:21"
- },
- "languages": [
- {
- "id": "th",
- "name": "Thai"
- }
- ],
- "translated": 15,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867004",
- "username": "JRay",
- "fullName": "JRay",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867004/medium/82c9ff6ab75bffb7784d244698b3becc.jpg",
- "joined": "2021-08-05 00:45:45"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 15,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14033202",
- "username": "Huynhanh883",
- "fullName": "Huynhanh83 (Huynhanh883)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14033202/medium/9283f613d1807b20fdbc4c7a07a54ed1.png",
- "joined": "2019-11-21 01:17:46"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 15,
- "target": 15,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867008",
- "username": "LJian",
- "fullName": "LJian",
- "avatarUrl": "https://www.gravatar.com/avatar/495d44b77952b5132b203781a3911fe0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 00:56:06"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 15,
- "target": 30,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14901548",
- "username": "ctz0411",
- "fullName": "ctz0411",
- "avatarUrl": "https://www.gravatar.com/avatar/cf42c2743649e5d62fb172dcde84594e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-30 05:21:40"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 14,
- "target": 21,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14822530",
- "username": "krishnagaurav",
- "fullName": "krishnagaurav",
- "avatarUrl": "https://www.gravatar.com/avatar/80cfc37428c1f903133c139927c52fbc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-01 03:45:19"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 14,
- "target": 668,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14845082",
- "username": "overeasyy",
- "fullName": "overeasyy",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14845082/medium/c3f88881536bddc4173514c2d6c6103a.png",
- "joined": "2021-07-19 06:37:07"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 13,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14695500",
- "username": "wuhjie",
- "fullName": "wuhjie",
- "avatarUrl": "https://www.gravatar.com/avatar/a714b8339e9f214d7f577c93230fd5ab?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-03 04:37:21"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 13,
- "target": 18,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14897212",
- "username": "iosadcha",
- "fullName": "iosadcha",
- "avatarUrl": "https://www.gravatar.com/avatar/21196c23e9d447ef70bb9f014aa28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-26 15:58:31"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 12,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14873224",
- "username": "haren724",
- "fullName": "haren724",
- "avatarUrl": "https://www.gravatar.com/avatar/05e8aae1708a6c3b39dbf300192da0dc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-10 02:56:54"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 12,
- "target": 34,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14854298",
- "username": "sahlawiz",
- "fullName": "Ahmed Sahlawiz (sahlawiz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14854298/medium/d74fe68289efd3614f5daeff99c71d00.jpeg",
- "joined": "2021-07-26 18:22:05"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- },
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 12,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14565190",
- "username": "Sky_NiniKo",
- "fullName": "Sky_NiniKo",
- "avatarUrl": "https://www.gravatar.com/avatar/481074cbd6e69b55df35ad0431c75082?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-06 06:37:43"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12926776",
- "username": "mejlus",
- "fullName": "Egidijus Griešnovas (mejlus)",
- "avatarUrl": "https://www.gravatar.com/avatar/8ec6a8da77fd961397b9919437b50e04?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-09 06:16:32"
- },
- "languages": [
- {
- "id": "lt",
- "name": "Lithuanian"
- }
- ],
- "translated": 11,
- "target": 12,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928669",
- "username": "knowwell",
- "fullName": "knowwell",
- "avatarUrl": "https://www.gravatar.com/avatar/f84d23e5e00cfce6b33405177e3a76f5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-18 22:10:09"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 10,
- "target": 10,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14909647",
- "username": "tszar",
- "fullName": "tszar",
- "avatarUrl": "https://www.gravatar.com/avatar/d1a316a5f6951054e644a5eb673d5642?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-05 03:33:58"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 10,
- "target": 17,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14657118",
- "username": "evgasadov",
- "fullName": "Евгений Асадов (evgasadov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657118/medium/468b1c43cdb413475632521eb8b7f031.jpeg",
- "joined": "2021-08-18 12:34:57"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 10,
- "target": 154,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14881646",
- "username": "constan2305",
- "fullName": "constan2305",
- "avatarUrl": "https://www.gravatar.com/avatar/cf566e9043b091f6632d9260c70fb352?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-15 16:39:43"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 10,
- "target": 16,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14831430",
- "username": "markmaksi",
- "fullName": "markmaksi",
- "avatarUrl": "https://www.gravatar.com/avatar/4bb4f33b60109a59a63fb7372d791e38?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-08 00:32:40"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 10,
- "target": 13,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14877334",
- "username": "Ergi18",
- "fullName": "Ergi (Ergi18)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14877334/medium/4c61f13d89fbae72ff61c0bc2071b6fe.png",
- "joined": "2021-08-12 13:55:33"
- },
- "languages": [
- {
- "id": "fr",
- "name": "French"
- }
- ],
- "translated": 10,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14889596",
- "username": "thallesamott",
- "fullName": "Thalles Caramão (thallesamott)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14889596/medium/3e50df6563e8389c67e773c0adc8bbc5.jpeg",
- "joined": "2021-08-20 19:23:13"
- },
- "languages": [
- {
- "id": "pt-PT",
- "name": "Portuguese"
- }
- ],
- "translated": 9,
- "target": 103,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866212",
- "username": "ramesh.jetsoft",
- "fullName": "Ramesh R (ramesh.jetsoft)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866212/medium/1d8f9a5ae2f70dd83e171ebb1aeb3558.jpeg",
- "joined": "2021-08-04 09:29:29"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 9,
- "target": 26,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796574",
- "username": "EthBasti",
- "fullName": "EthBasti",
- "avatarUrl": "https://www.gravatar.com/avatar/7a6732a86f7c1ccb5433213069d82c29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 07:39:33"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 9,
- "target": 10,
- "approved": 0,
- "voted": 6,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14873046",
- "username": "ycad",
- "fullName": "Cady Zhou (ycad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14873046/medium/d0c199ae81e6f1e4778b04692c599483.png",
- "joined": "2021-08-09 23:11:46"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 8,
- "target": 32,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896216",
- "username": "kabilan",
- "fullName": "Kabilan (kabilan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896216/medium/624d3b93f0d213ed07b9beef492d09c3.jpeg",
- "joined": "2021-08-26 00:06:02"
- },
- "languages": [
- {
- "id": "ta",
- "name": "Tamil"
- }
- ],
- "translated": 8,
- "target": 254,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936915",
- "username": "seilkhankulzhanov",
- "fullName": "Seilkhan Kulzhanov (seilkhankulzhanov)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14936915/medium/be75dda81c208776fb04ab0e365f3e49.png",
- "joined": "2021-09-24 22:44:39"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14855956",
- "username": "RRKamil",
- "fullName": "RRKamil",
- "avatarUrl": "https://www.gravatar.com/avatar/787a4f479b22ca62f51ecbe4be547b72?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-28 03:37:27"
- },
- "languages": [
- {
- "id": "hu",
- "name": "Hungarian"
- }
- ],
- "translated": 7,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14382632",
- "username": "gabe_san_",
- "fullName": "gabe_san_",
- "avatarUrl": "https://www.gravatar.com/avatar/ba104028940a36ea18502399fe70aef0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-09 22:24:49"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 17,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14544944",
- "username": "emersonlaurentino",
- "fullName": "Emerson Laurentino (emersonlaurentino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14544944/medium/307497c490b2c0b11fd011f5f1938cf8.jpeg",
- "joined": "2021-08-16 17:12:36"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14878484",
- "username": "FahadOsaimi",
- "fullName": "Fahad Osaimi (FahadOsaimi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14878484/medium/a1b78f9090f604c464b910d59796731a.png",
- "joined": "2021-08-13 08:46:38"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 6,
- "target": 118,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838604",
- "username": "lieolik",
- "fullName": "Olga Shablykina (lieolik)",
- "avatarUrl": "https://www.gravatar.com/avatar/16597afc89da43effc248922ddd94267?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-31 08:49:34"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 6,
- "target": 7,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888266",
- "username": "sandrogomes101",
- "fullName": "Sandro Gomes (sandrogomes101)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888266/medium/ec3720087a2af8b90ac90119f026a2f8.png",
- "joined": "2021-08-19 21:46:06"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 6,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14916763",
- "username": "MuhammadharoonShaukat",
- "fullName": "MuhammadharoonShaukat",
- "avatarUrl": "https://www.gravatar.com/avatar/4c2d21221e2483bea9d18c71516793e4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-10 06:52:58"
- },
- "languages": [
- {
- "id": "sq",
- "name": "Albanian"
- },
- {
- "id": "ur-PK",
- "name": "Urdu (Pakistan)"
- }
- ],
- "translated": 6,
- "target": 39,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14892132",
- "username": "bolingboling",
- "fullName": "bolingboling",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14892132/medium/0d05975017e3f5fb32c005f3dca098f5.jpeg",
- "joined": "2021-08-30 22:58:21"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 5,
- "target": 11,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14907321",
- "username": "vitalli",
- "fullName": "Віталій Петрів (vitalli)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14907321/medium/287a90ef0414e5cc3e9b9719a44c47cc.jpeg",
- "joined": "2021-09-03 06:27:42"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 5,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13872871",
- "username": "AntwnhsM.",
- "fullName": "Antwnhs M. (AntwnhsM.)",
- "avatarUrl": "https://www.gravatar.com/avatar/b478b15a022566e1891c6ec6055af76f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-31 05:36:11"
- },
- "languages": [
- {
- "id": "el",
- "name": "Greek"
- }
- ],
- "translated": 5,
- "target": 7,
- "approved": 0,
- "voted": 2,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12930933",
- "username": "kerocate",
- "fullName": "kerocate",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12930933/medium/98233a4ea01a32d666991eedd9c30a9a.png",
- "joined": "2021-07-23 13:16:57"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 5,
- "target": 10,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14861960",
- "username": "isaul",
- "fullName": "isaul",
- "avatarUrl": "https://www.gravatar.com/avatar/44895e9c99a8fde7d2fd25632415e024?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 11:13:13"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 4,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842426",
- "username": "Brijesh_GeetAshok",
- "fullName": "Brijesh GeetAshok (Brijesh_GeetAshok)",
- "avatarUrl": "https://www.gravatar.com/avatar/4332a3cb3ddb2f8f80400c9175924f19?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 19:12:12"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 4,
- "target": 6,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14879636",
- "username": "joseferde",
- "fullName": "Josef Erde (joseferde)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14879636/medium/ddd7c42a87b94cfaf57783881127f849.jpeg",
- "joined": "2021-08-14 06:23:01"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 4,
- "target": 14,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14437788",
- "username": "talgatbek",
- "fullName": "Talgatbek Kainarov (talgatbek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14437788/medium/613193fea546da673bb8490a504d993d.jpg",
- "joined": "2021-09-26 07:55:47"
- },
- "languages": [
- {
- "id": "kk",
- "name": "Kazakh"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13805545",
- "username": "crowbit",
- "fullName": "crowbit",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13805545/medium/8b944306602f95c5d9adce2ef8bb68e7.jpg",
- "joined": "2021-09-05 08:08:52"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 5,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766776",
- "username": "rociodg",
- "fullName": "rociodg",
- "avatarUrl": "https://www.gravatar.com/avatar/09514e41728e92cdf81fb58b8f487408?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-21 07:58:14"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 3,
- "target": 9,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 179
- },
- {
- "user": {
- "id": "14904476",
- "username": "shady_neli98",
- "fullName": "Nelkka Dobrewa (shady_neli98)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14904476/medium/9094393854d8e690e3ff1870061cdb5f.jpeg",
- "joined": "2021-09-01 07:17:07"
- },
- "languages": [
- {
- "id": "bg",
- "name": "Bulgarian"
- }
- ],
- "translated": 3,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14929161",
- "username": "nonglekkaewkang60",
- "fullName": "Nonglek Keawkang (nonglekkaewkang60)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14929161/medium/94141a2c17bad7643d8b54e7d7137224.jpeg",
- "joined": "2021-09-19 09:22:23"
- },
- "languages": [
- {
- "id": "eu",
- "name": "Basque"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13317516",
- "username": "olka",
- "fullName": "olka",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13317516/medium/de56e77543599bd2c434479001852e5b.jpg",
- "joined": "2021-08-04 07:39:52"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14896038",
- "username": "brunoviniciusdepaularodrigues",
- "fullName": "Bruno Rodrigues (brunoviniciusdepaularodrigues)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14896038/medium/459cc98d3903c4055eba1c4c680adefa.jpeg",
- "joined": "2021-08-25 19:46:04"
- },
- "languages": [
- {
- "id": "pt-BR",
- "name": "Portuguese, Brazilian"
- }
- ],
- "translated": 3,
- "target": 80,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14849118",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/6ad4fd22a59d84105c2f97a68d661071?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-27 14:08:30"
- },
- "languages": [
- {
- "id": "ms",
- "name": "Malay"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14851016",
- "username": "0633233490a",
- "fullName": "olena godhzh (0633233490a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14851016/medium/3d6589dac72d5fe109d7fda192fa93d8.png",
- "joined": "2021-07-23 22:11:33"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14886122",
- "username": "anjaymu09",
- "fullName": "Ammaifali (anjaymu09)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886122/medium/ab2bf62d80ac24ffb5170b3e72b46aeb.jpg",
- "joined": "2021-08-18 10:15:07"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 3,
- "target": 3,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14936979",
- "username": "ultranod",
- "fullName": "ultranod",
- "avatarUrl": "https://www.gravatar.com/avatar/9a6eff6771b117d40d9ead9c2329295f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-25 00:52:54"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853042",
- "username": "vanamaziev",
- "fullName": "Иван Мазиев (vanamaziev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853042/medium/ceff19a9fd0e8b88bb59464f5f6632c9.jpeg",
- "joined": "2021-07-25 20:08:54"
- },
- "languages": [
- {
- "id": "uk",
- "name": "Ukrainian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12591126",
- "username": "aikyu99",
- "fullName": "MeArjiet (aikyu99)",
- "avatarUrl": "https://www.gravatar.com/avatar/b0232e61a3ecdc0f29ed9ee87af4a6fb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-09 05:47:08"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14865144",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/f07a1c6153744ecce6fe71e9b206044b?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-04 12:13:28"
- },
- "languages": [
- {
- "id": "no",
- "name": "Norwegian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "12455773",
- "username": "uzeconomist",
- "fullName": "Hamza Foziljonov (uzeconomist)",
- "avatarUrl": "https://www.gravatar.com/avatar/72756a61e0c4489135139c4fd27da269?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-01 06:56:09"
- },
- "languages": [
- {
- "id": "uz",
- "name": "Uzbek"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815876",
- "username": "LUMOGROUP",
- "fullName": "LUMOGROUP",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815876/medium/8debc09b5ece0d371f6a54dd295372b6.jpeg",
- "joined": "2021-08-17 10:08:50"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14101293",
- "username": "wisterioso",
- "fullName": "haoyun (wisterioso)",
- "avatarUrl": "https://www.gravatar.com/avatar/4b5118faaffcbd991e92a4000b07ffc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-02-04 12:17:29"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 11,
- "approved": 0,
- "voted": 5,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13645461",
- "username": "Rixcian",
- "fullName": "Rixcian",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13645461/medium/49e26bb6cb92868a712624036a627dc3.png",
- "joined": "2021-07-23 11:22:08"
- },
- "languages": [
- {
- "id": "cs",
- "name": "Czech"
- }
- ],
- "translated": 2,
- "target": 4,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14905348",
- "username": "MIntAP",
- "fullName": "MIntAP",
- "avatarUrl": "https://www.gravatar.com/avatar/c3743f4719855a1c27338db60123f863?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-01 21:14:12"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918055",
- "username": "caibangtimvoyeu1",
- "fullName": "Nam Bảo (caibangtimvoyeu1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14918055/medium/caa90ddfc06eec603e36f31baf208c3e.jpeg",
- "joined": "2021-09-11 07:35:26"
- },
- "languages": [
- {
- "id": "zh-CN",
- "name": "Chinese Simplified"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13976107",
- "username": "HelaBasa",
- "fullName": "Store (HelaBasa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13976107/medium/ab4177e8d90665d4603e548488d15c68.jpg",
- "joined": "2021-08-25 06:53:27"
- },
- "languages": [
- {
- "id": "si-LK",
- "name": "Sinhala"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14819462",
- "username": "Finlynd",
- "fullName": "iamlynvely (Finlynd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14819462/medium/89edd710c81f392464c405551b3fe3d9.jpg",
- "joined": "2021-06-28 23:12:36"
- },
- "languages": [
- {
- "id": "ko",
- "name": "Korean"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14894716",
- "username": "mgagahreforman",
- "fullName": "M. Gagah Reforman (mgagahreforman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894716/medium/34bffe30d61288a4b9c13ecc7ab34a23.jpeg",
- "joined": "2021-09-01 09:02:20"
- },
- "languages": [
- {
- "id": "id",
- "name": "Indonesian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14853150",
- "username": "deborah.elizabeth.pereira",
- "fullName": "deborah pereira (deborah.elizabeth.pereira)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14853150/medium/3689e0e41d3b2c7c93aa95dfdebf880b.png",
- "joined": "2021-07-25 22:31:09"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14918847",
- "username": "kryptokurt",
- "fullName": "Mats Westholm (kryptokurt)",
- "avatarUrl": "https://www.gravatar.com/avatar/9e7413a54c5ded7e2b74b662d19960e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 00:54:43"
- },
- "languages": [
- {
- "id": "sv-SE",
- "name": "Swedish"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14842980",
- "username": "agathadeborja",
- "fullName": "Agatha Andaluz De Borja (agathadeborja)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14842980/medium/1178b247eb1cd0b5ac5a275d028f0ad3.jpeg",
- "joined": "2021-07-25 02:33:49"
- },
- "languages": [
- {
- "id": "fil",
- "name": "Filipino"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14830514",
- "username": "ny030897",
- "fullName": "ny030897",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14830514/medium/29d88484dbe97732ba437fd01889a680.png",
- "joined": "2021-07-07 07:44:31"
- },
- "languages": [
- {
- "id": "vi",
- "name": "Vietnamese"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14852550",
- "username": "Hassaqnation",
- "fullName": "Hassaqnation",
- "avatarUrl": "https://www.gravatar.com/avatar/a00b4aadf8f89bf322d359dd96bcbc2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-25 10:34:51"
- },
- "languages": [
- {
- "id": "kk",
- "name": "Kazakh"
- }
- ],
- "translated": 2,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14937513",
- "username": "devudilip",
- "fullName": "devu dilip (devudilip)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14937513/medium/11d939bf3bb9ba2df698db8ac77e020e.jpeg",
- "joined": "2021-09-25 11:14:13"
- },
- "languages": [
- {
- "id": "kn",
- "name": "Kannada"
- }
- ],
- "translated": 2,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "13994103",
- "username": "Alphaaa",
- "fullName": "Christian Mazzola (Alphaaa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13994103/medium/8fada44cb640c9f08080ce6ff2955f65.png",
- "joined": "2021-01-28 13:55:30"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14867836",
- "username": "Pardesh",
- "fullName": "Pardesh",
- "avatarUrl": "https://www.gravatar.com/avatar/ae15bc8e88200e364707879af00f076e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-08-05 13:23:30"
- },
- "languages": [
- {
- "id": "it",
- "name": "Italian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14771528",
- "username": "gsonicsad",
- "fullName": "GSS Germanstreetstyle (gsonicsad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14771528/medium/c51abef9fc773d08735d7b7445d524c4.png",
- "joined": "2021-05-25 01:12:01"
- },
- "languages": [
- {
- "id": "de",
- "name": "German"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14866558",
- "username": "sjijioff74",
- "fullName": "Sammy KH (sjijioff74)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866558/medium/c2ca15a21e982f87474214a24e0fd487.jpeg",
- "joined": "2021-08-04 14:10:52"
- },
- "languages": [
- {
- "id": "ru",
- "name": "Russian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776878",
- "username": "JoshNX",
- "fullName": "JoshNX",
- "avatarUrl": "https://www.gravatar.com/avatar/4137d46ef3ef3f0fcb886d48e80491d6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 16:30:16"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 5,
- "approved": 0,
- "voted": 3,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14914493",
- "username": "jagaroki",
- "fullName": "jagaroki",
- "avatarUrl": "https://www.gravatar.com/avatar/46522ddc46f26f6fbdefcea4773a6f8b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-08 16:22:16"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14928453",
- "username": "devinderkumar321123",
- "fullName": "Well Done (devinderkumar321123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14928453/medium/3ff4bb393f438e00e776eb20608acbc8.jpeg",
- "joined": "2021-09-18 16:20:07"
- },
- "languages": [
- {
- "id": "hi",
- "name": "Hindi"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14835754",
- "username": "Grzegorzcz",
- "fullName": "Grzegorzcz",
- "avatarUrl": "https://www.gravatar.com/avatar/0c2f4f0f96fdf6214acf9928c511cb00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-11 15:48:55"
- },
- "languages": [
- {
- "id": "pl",
- "name": "Polish"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14945275",
- "username": "orellana.edgardo8901",
- "fullName": "Edgardo Yanez (orellana.edgardo8901)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14945275/medium/b1d4c6e48bf2de4b9bbfd1cae7585cd5.jpeg",
- "joined": "2021-09-30 23:05:28"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14087195",
- "username": "nicklcanada",
- "fullName": "Nicolae Liviu (nicklcanada)",
- "avatarUrl": "https://www.gravatar.com/avatar/6ba04182461bb02bcf5d19d81c9b1cb0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2020-08-31 00:00:13"
- },
- "languages": [
- {
- "id": "ro",
- "name": "Romanian"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14919827",
- "username": "nbshaoye123",
- "fullName": "nbshaoye123",
- "avatarUrl": "https://www.gravatar.com/avatar/47364ac3d421a00d86b80f51355e4a23?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-09-12 22:20:23"
- },
- "languages": [
- {
- "id": "zh-TW",
- "name": "Chinese Traditional"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14846810",
- "username": "Mohammedfaq4",
- "fullName": "Mohammedfaq4",
- "avatarUrl": "https://www.gravatar.com/avatar/e49b8112e5456a3293dd7f518bab73ed?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-20 12:01:32"
- },
- "languages": [
- {
- "id": "ar",
- "name": "Arabic"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14838650",
- "username": "sibannaccian",
- "fullName": "Mauricio Serrano Rodriguez (sibannaccian)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14838650/medium/656027686a316709b3424730ef35fd49.jpeg",
- "joined": "2021-07-13 22:47:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14932469",
- "username": "LadyLurvecia",
- "fullName": "LadyLurvecia",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14932469/medium/15d23e44ef625fd6ceab89b52fdda53b.JPG",
- "joined": "2021-09-21 17:48:57"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1,
- "target": 2,
- "approved": 0,
- "voted": 1,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14888938",
- "username": "kenyturpohuamani",
- "fullName": "keny turpo huamani (kenyturpohuamani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14888938/medium/1ea749d5846031956e5fffe970e3ecb0.png",
- "joined": "2021-08-20 09:33:06"
- },
- "languages": [
- {
- "id": "es-EM",
- "name": "Spanish (Modern)"
- }
- ],
- "translated": 1,
- "target": 1,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14917615",
- "username": "G3Bp2ONcJAJ03zq",
- "fullName": "G3Bp2ONcJAJ03zq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14917615/medium/c2f490d143480e70240b34aa48ec6f76.jpeg",
- "joined": "2021-09-10 22:24:35"
- },
- "languages": [
- {
- "id": "ja",
- "name": "Japanese"
- }
- ],
- "translated": 1,
- "target": 4,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805844",
- "username": "07969951000796995100",
- "fullName": "Afeef Alomar (07969951000796995100)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805844/medium/0d01e031f7ff07296dc63980ae219bda.jpeg",
- "joined": "2021-06-18 16:11:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14806108",
- "username": "arquitecto.pt",
- "fullName": "arquitectopt (arquitecto.pt)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14806108/medium/4d5116534778fe93ecdb04eab5b4427b.jpg",
- "joined": "2021-06-18 22:33:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804170",
- "username": "pnda0132",
- "fullName": "pnda0132",
- "avatarUrl": "https://www.gravatar.com/avatar/388f5c4bf43f79684dc47d0abb44a718?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 17:02:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780896",
- "username": "Hacklowa",
- "fullName": "Hacklowa",
- "avatarUrl": "https://www.gravatar.com/avatar/d8e6df7ff204ca03bc2a2f76c4923b33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 00:52:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781010",
- "username": "NinaWrong",
- "fullName": "NinaWrong",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781010/medium/8c3e0660cd91ea8501e6d571d298fc62.jpeg",
- "joined": "2021-06-01 02:44:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14780966",
- "username": "umut-ay",
- "fullName": "Umut Kaan Işık (umut-ay)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780966/medium/f40dd13f50d7e4a2a2ad9294fe429bc6.jpeg",
- "joined": "2021-06-01 02:01:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780880",
- "username": "arnoldo.lat",
- "fullName": "arnoldo.lat",
- "avatarUrl": "https://www.gravatar.com/avatar/b465c0d7ec2b8fdb93400d9e93585262?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 00:26:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781944",
- "username": "tg.hamoemxye",
- "fullName": "Rostislav Nikiforov (tg.hamoemxye)",
- "avatarUrl": "https://www.gravatar.com/avatar/f9c2a8650234834b6fdd930a5036d78e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 15:17:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804278",
- "username": "edier022",
- "fullName": "edier022",
- "avatarUrl": "https://www.gravatar.com/avatar/2d827e020ed536385d790dd0c1eaff03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 19:02:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14806100",
- "username": "lin-123",
- "fullName": "Kakaka Hou (lin-123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14806100/medium/1534fdcb8c32fc98a646e35e9302ac70.jpeg",
- "joined": "2021-06-18 22:24:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815950",
- "username": "hungkhongten7777",
- "fullName": "hungkhongten7777",
- "avatarUrl": "https://www.gravatar.com/avatar/d79a59a099285520a062ed09b26b849d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 00:11:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805590",
- "username": "liushooter",
- "fullName": "liushooter",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805590/medium/a79b39967e3163a23f1aa233b780ac69.jpg",
- "joined": "2021-06-18 12:57:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14781776",
- "username": "duyvt_123",
- "fullName": "duyvt_123",
- "avatarUrl": "https://www.gravatar.com/avatar/4fb74d6dc9f3018836c713b5fef6ca42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 12:34:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781418",
- "username": "Martha_Stein",
- "fullName": "Martha Stein (Martha_Stein)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781418/medium/1578d9e8f05c516c1bb985dd0580c4e8.jpeg",
- "joined": "2021-06-01 08:25:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807030",
- "username": "Anitavicen9",
- "fullName": "Anitavicen9",
- "avatarUrl": "https://www.gravatar.com/avatar/83ab280eeb42d39e02108ee53717709b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 12:54:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805464",
- "username": "lijiachuan",
- "fullName": "lijiachuan",
- "avatarUrl": "https://www.gravatar.com/avatar/7742cb188d8172fd11144ebcbc1d1d1b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 20:55:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812942",
- "username": "humbertoantsc",
- "fullName": "Humberto SC (humbertoantsc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812942/medium/498f62a5f1b429232e9dfd7ab697523f.jpeg",
- "joined": "2021-06-23 16:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 75
- },
- {
- "user": {
- "id": "14781478",
- "username": "pantherax",
- "fullName": "pantherax",
- "avatarUrl": "https://www.gravatar.com/avatar/1352f74fc2d80f346e7ec67cd650d1da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 09:04:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815846",
- "username": "biboufr",
- "fullName": "Midori Nika (biboufr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815846/medium/e3ef6e9bf613468bccc78bf46b9ed89b.png",
- "joined": "2021-06-25 20:44:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812860",
- "username": "tuncaykaptan",
- "fullName": "Tuncay KAPTAN (tuncaykaptan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812860/medium/2cdf593e7ba6d701b968638ec78cce3f.gif",
- "joined": "2021-10-17 11:49:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782424",
- "username": "Randolph",
- "fullName": "陈龙 (Randolph)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782424/medium/7851e17a78e604a0d9fdc5862efb394b.png",
- "joined": "2021-06-02 00:18:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 31
- },
- {
- "user": {
- "id": "14781240",
- "username": "herrisonfnascimento",
- "fullName": "Herrison (herrisonfnascimento)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781240/medium/7ca1a1a0b850a8d749c5e711eba35e85.png",
- "joined": "2021-06-01 06:26:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782486",
- "username": "Parachute",
- "fullName": "Parachute",
- "avatarUrl": "https://www.gravatar.com/avatar/a362d2974306319eb6209c67123f775b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-02 01:48:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782118",
- "username": "morozov8707",
- "fullName": "Василий Морозов (morozov8707)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782118/medium/71fa0343fb0dc8062bb541b635b9a493.png",
- "joined": "2021-06-01 18:32:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781176",
- "username": "GraysonZhang",
- "fullName": "我是花轮 (GraysonZhang)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781176/medium/d43f3175d04c05008e18cb3c14209ff2.png",
- "joined": "2021-06-01 05:57:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781616",
- "username": "hayato8088",
- "fullName": "Hayato Sato (hayato8088)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781616/medium/72713e9d193f0d5f97bab396820ca17a.png",
- "joined": "2021-06-01 10:30:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813084",
- "username": "vlarm",
- "fullName": "Giuseppe Faraone (vlarm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813084/medium/7609f9b9668506662db8a550982e0667.jpeg",
- "joined": "2021-06-23 19:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781120",
- "username": "hamed.ashrafi",
- "fullName": "Hamed Ashrafi (hamed.ashrafi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14781120/medium/d555db51771c6342e7a1cbe6ac78039b.jpeg",
- "joined": "2021-06-01 04:49:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14781034",
- "username": "Tomfoxy0852",
- "fullName": "Tomfoxy0852",
- "avatarUrl": "https://www.gravatar.com/avatar/51f8a651a0b3b57c601d5cf147e3ae29?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-01 03:13:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14804874",
- "username": "LHD",
- "fullName": "LHD",
- "avatarUrl": "https://www.gravatar.com/avatar/e24fcfddb6f5847a01d8bcd8d40b8693?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 04:49:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14805648",
- "username": "xyomega",
- "fullName": "xyomega",
- "avatarUrl": "https://www.gravatar.com/avatar/517aa8b351cbb0cc04149503ee7d9334?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-18 13:38:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14805836",
- "username": "dmitriydamaru",
- "fullName": "Dmitriy Damaru (dmitriydamaru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14805836/medium/1fb2a40c0c75451f65b0324c4e66762f.jpeg",
- "joined": "2021-06-18 16:04:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814760",
- "username": "zhaoyonghe",
- "fullName": "zhaoyonghe",
- "avatarUrl": "https://www.gravatar.com/avatar/1849350f7cb43f8db85818f35ebc6edf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 03:53:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807238",
- "username": "rom1919",
- "fullName": "Romualdo Zayas-Lagunas (rom1919)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14807238/medium/4e9d7e22b8ba45851bf0d10bf4bb2f68.jpeg",
- "joined": "2021-06-19 15:57:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14812426",
- "username": "Robert-Me",
- "fullName": "Robert-Me",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14812426/medium/c6d86ade730b6777e9e90c4ab6ca2227.png",
- "joined": "2021-06-23 08:21:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14779612",
- "username": "gwenael.griffon",
- "fullName": "GwN (gwenael.griffon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779612/medium/a701e4e478f925227717ec68a9fb0581.jpeg",
- "joined": "2021-05-31 04:27:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779586",
- "username": "patrick020804",
- "fullName": "Patrick D. Halberg (patrick020804)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779586/medium/e95f76f316fe199da587bb52cdb0e89d.png",
- "joined": "2021-05-31 04:00:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810158",
- "username": "victora0",
- "fullName": "Víctor Vera Gómez (victora0)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810158/medium/eca56cd9269d07b76a32626622599257.png",
- "joined": "2021-06-21 16:32:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779562",
- "username": "andrejmirovic",
- "fullName": "andrejmirovic",
- "avatarUrl": "https://www.gravatar.com/avatar/43a8f2a3cb58903a933b335fe6a98e36?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 03:36:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779546",
- "username": "arpit.kumar",
- "fullName": "ARPIT KUMAR (arpit.kumar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779546/medium/1b77f7cf2e4930307ad3dd36345e5017.png",
- "joined": "2021-05-31 03:31:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810374",
- "username": "Typinrov",
- "fullName": "Typinrov",
- "avatarUrl": "https://www.gravatar.com/avatar/a6abee81a045c3b64a550f0ca4b3f344?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 21:06:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14779518",
- "username": "iromain",
- "fullName": "iromain",
- "avatarUrl": "https://www.gravatar.com/avatar/e8b9b351cf57be1bddf548fc104dcb09?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 02:48:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810702",
- "username": "Joisir",
- "fullName": "Joisir",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810702/medium/26fc6df7964704f4b4281510ca2a1d8f.png",
- "joined": "2021-06-22 03:33:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779512",
- "username": "amkelhatw",
- "fullName": "Aly Hatw (amkelhatw)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779512/medium/c1bff336933b85526e7bba7078cc79be.png",
- "joined": "2021-05-31 02:39:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779418",
- "username": "arminshoughi",
- "fullName": "armin shoghi (arminshoughi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779418/medium/871c3e1eb7d9102bbec05027c14dcdfe.jpeg",
- "joined": "2021-05-31 00:18:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811054",
- "username": "podiumdesu",
- "fullName": "PetnaKanojo (podiumdesu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811054/medium/425ba0ebc0a6bf2478e9bda9c233e4d1.jpeg",
- "joined": "2021-06-22 08:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 33
- },
- {
- "user": {
- "id": "14779220",
- "username": "damienk",
- "fullName": "damienk",
- "avatarUrl": "https://www.gravatar.com/avatar/00a8722582bce7f61d6e74e2fd1c2471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 19:23:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779212",
- "username": "matthewrock2011",
- "fullName": "Lil Homo (matthewrock2011)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779212/medium/39661a937aa3dc153a7acd8d06b4a8fd.jpeg",
- "joined": "2021-05-30 19:21:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 18
- },
- {
- "user": {
- "id": "14810002",
- "username": "pettinarip",
- "fullName": "Pablo Pettinari (pettinarip)",
- "avatarUrl": "https://www.gravatar.com/avatar/ba86a933c7e919a2b12f9a431e54fd9a?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 13:58:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816548",
- "username": "ayoubkaraou",
- "fullName": "ayoubkaraou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816548/medium/6ea87133077c227da4a197131ce1b935.png",
- "joined": "2021-06-26 11:43:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779146",
- "username": "Ewen190402",
- "fullName": "Ewen (Ewen190402)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779146/medium/9b4d550ef47412c053101f91995038c5.png",
- "joined": "2021-05-30 18:07:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779128",
- "username": "Alexandros_An",
- "fullName": "Alexandros_An",
- "avatarUrl": "https://www.gravatar.com/avatar/12664a63595289ebc401fba5acab07c8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 17:48:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816704",
- "username": "wanghuasong97",
- "fullName": "wanghuasong97",
- "avatarUrl": "https://www.gravatar.com/avatar/6e646fda6a18f3e0f478966dcbefa5be?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 13:35:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816748",
- "username": "max.m0n",
- "fullName": "Максим Ельян (max.m0n)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816748/medium/5ede72ee6c8877a8246d571e675a46fb.jpeg",
- "joined": "2021-06-26 14:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778994",
- "username": "george_madikas",
- "fullName": "George Madikas (george_madikas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778994/medium/4cfe80680f967a77cf11d702460efc46.jpeg",
- "joined": "2021-05-30 15:21:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811142",
- "username": "flachavantes",
- "fullName": "Marcio B. Coelho (flachavantes)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811142/medium/847ce51d6ee66f3927157f038db83603.png",
- "joined": "2021-06-22 09:14:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811536",
- "username": "vanessajtb",
- "fullName": "vanessa (vanessajtb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811536/medium/ded311b23fe9e792d83e09f68768a794.jpeg",
- "joined": "2021-06-23 10:54:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778992",
- "username": "IsmaelRC",
- "fullName": "El Gato (IsmaelRC)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778992/medium/646865835d4b959bf3bfca67b66ef04f.png",
- "joined": "2021-05-30 15:24:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811672",
- "username": "Pois",
- "fullName": "Pois",
- "avatarUrl": "https://www.gravatar.com/avatar/cb689198fe8c6b621ba3c281df1c8041?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-22 16:58:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778976",
- "username": "Jakob_Farian_Krarup",
- "fullName": "Jakob Farian Krarup (Jakob_Farian_Krarup)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778976/medium/b0d2bc0c4bb05f9c8da4fac5af6acd5b.jpeg",
- "joined": "2021-05-30 15:24:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811680",
- "username": "pavelmac06",
- "fullName": "Pavel Macicek (pavelmac06)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811680/medium/6fff82b72c07e37f66ee0974314f0acb.png",
- "joined": "2021-06-22 16:58:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14810086",
- "username": "pinapalmieri",
- "fullName": "pina palmieri (pinapalmieri)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14810086/medium/42fdb28f8d445e4e2774845014a7fffa.jpeg",
- "joined": "2021-06-25 03:38:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779628",
- "username": "echo.wang9192",
- "fullName": "echo wang (echo.wang9192)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779628/medium/d2ecefc415ceccd7755167fc332eb6c4.png",
- "joined": "2021-06-23 05:28:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807258",
- "username": "fccxw",
- "fullName": "fccxw",
- "avatarUrl": "https://www.gravatar.com/avatar/5f111ebb9921906dfb0d53101ed27b94?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 16:13:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14812604",
- "username": "tjesco75",
- "fullName": "tjesco75",
- "avatarUrl": "https://www.gravatar.com/avatar/f9269b3383b308eae1ca50ae7ac3b85c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-23 10:39:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780840",
- "username": "amy.yingzhao",
- "fullName": "Amy (amy.yingzhao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780840/medium/0aba5691262a6bf6a8a56d9a391c6b9f.jpeg",
- "joined": "2021-05-31 23:52:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 88
- },
- {
- "user": {
- "id": "14816088",
- "username": "allbuy",
- "fullName": "allbuy",
- "avatarUrl": "https://www.gravatar.com/avatar/2f66e10eb6ac8e4b6b83ccbf1864a9a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-26 03:32:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 26
- },
- {
- "user": {
- "id": "14780684",
- "username": "ssfuentes.99",
- "fullName": "sebastian fuentes (ssfuentes.99)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780684/medium/043f791a09160411432cc5c7146f6aaa.jpeg",
- "joined": "2021-05-31 20:26:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14807310",
- "username": "fercgomes",
- "fullName": "fercgomes",
- "avatarUrl": "https://www.gravatar.com/avatar/8f84a7745e9af28cbc53a948b8a10f62?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-19 16:56:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780506",
- "username": "madhupuranik",
- "fullName": "Madhu S Puranik (madhupuranik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780506/medium/fcaf897c30258cd1a675a9d9210816a9.jpeg",
- "joined": "2021-05-31 16:07:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780488",
- "username": "daniil.khyzhniak",
- "fullName": "Daniil Khyzhniak (daniil.khyzhniak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780488/medium/3cfbd9dab620e021904c163e614199e3.png",
- "joined": "2021-05-31 15:43:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14816094",
- "username": "karislam0322",
- "fullName": "karis lam (karislam0322)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816094/medium/6a5e736d81288d51f223a0f107d09d8a.png",
- "joined": "2021-06-26 03:40:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3
- },
- {
- "user": {
- "id": "14807818",
- "username": "Trettionde",
- "fullName": "Trettionde",
- "avatarUrl": "https://www.gravatar.com/avatar/85bd16a83cde2748b53ccf3036c6a81e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 03:48:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782574",
- "username": "Jaclyn_yjq",
- "fullName": "Jaclyn_yjq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782574/medium/4c7964fe21988781e8d2ce791c65dee0.jpg",
- "joined": "2021-06-02 03:08:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14816306",
- "username": "Coppka",
- "fullName": "Copkka Doktor (Coppka)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14816306/medium/e6b16332c695ea9e29db0e5aa83b9331.png",
- "joined": "2021-06-26 08:05:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808906",
- "username": "jokerjoker",
- "fullName": "jokerjoker",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8d31857171b3c5e96e8e46974b7672?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 23:17:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780208",
- "username": "marko.soldo17",
- "fullName": "ice578 (marko.soldo17)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780208/medium/9ed60f78ebf70fd97eee70588062babb.jpeg",
- "joined": "2021-05-31 11:35:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14780050",
- "username": "davidsard",
- "fullName": "David Sardinha (davidsard)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14780050/medium/a71a50629c8f17bbc5648dfc208157f8.png",
- "joined": "2021-05-31 09:34:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779686",
- "username": "WorsT21",
- "fullName": "WorsT21",
- "avatarUrl": "https://www.gravatar.com/avatar/d4d30285fbef0996a2f6e878115f6a44?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 05:13:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808910",
- "username": "hiroyuki-tanaka",
- "fullName": "hiroyuki-tanaka",
- "avatarUrl": "https://www.gravatar.com/avatar/1854870b7149174e0f7a873c5fea7d33?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-20 23:25:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779956",
- "username": "aminmousavi5147",
- "fullName": "amin mousavi (aminmousavi5147)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779956/medium/e7f9bbadcf8a0fcd735ad66373fdb4fd.png",
- "joined": "2021-05-31 08:09:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779894",
- "username": "willemringnalda",
- "fullName": "Don Willy (willemringnalda)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779894/medium/b053311fee67d8e8d1bb6a197022979b.png",
- "joined": "2021-05-31 07:11:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779764",
- "username": "Mar3s",
- "fullName": "Mario Yang (Mar3s)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779764/medium/7bbdbc6cac3c460360fe5e1295a139b9.png",
- "joined": "2021-05-31 05:45:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808924",
- "username": "DreamerM",
- "fullName": "Dreamer-M (DreamerM)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808924/medium/46e29fd1040a6e72e30c12277beb89fd.jpeg",
- "joined": "2021-06-21 00:08:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 30
- },
- {
- "user": {
- "id": "14809636",
- "username": "ferminbote",
- "fullName": "Abelardo Martínez (ferminbote)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809636/medium/0f4e4659fa483a701cd8961128ffb63e.png",
- "joined": "2021-06-21 09:56:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809732",
- "username": "bao1994",
- "fullName": "bao1994",
- "avatarUrl": "https://www.gravatar.com/avatar/fda8b0b99a9b71f8804bcfc6d94b59ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 10:51:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779700",
- "username": "viktolas",
- "fullName": "Victor B (viktolas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779700/medium/b093f2503629b02618afc9e43f1ec486.jpeg",
- "joined": "2021-05-31 05:16:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14779688",
- "username": "michaelmeli",
- "fullName": "michaelmeli",
- "avatarUrl": "https://www.gravatar.com/avatar/359dabbe068e2581c31d896b17648203?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-31 05:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809786",
- "username": "th851dan",
- "fullName": "Đặng Sơn (th851dan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809786/medium/9f51944f586e5ea82248a2fdc6b75265.png",
- "joined": "2021-06-21 11:29:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809902",
- "username": "vezga",
- "fullName": "vezga san (vezga)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809902/medium/675a032e3202a461706fb2a350572bc5.png",
- "joined": "2021-06-21 16:17:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809908",
- "username": "luvil2906",
- "fullName": "Lucky Lukman (luvil2906)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14809908/medium/26c58911597e909385606e63bdd815d8.png",
- "joined": "2021-06-21 12:53:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14809970",
- "username": "Corwintines",
- "fullName": "Corwintines",
- "avatarUrl": "https://www.gravatar.com/avatar/5d89ab750b46aca0640461f7486eab13?s=68&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-21 13:41:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14808338",
- "username": "MalekHaddad",
- "fullName": "عبد الملك الحداد (MalekHaddad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14808338/medium/ce2e0b8ab319c37c7971ab891c33816b.jpeg",
- "joined": "2021-06-20 12:00:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803150",
- "username": "jp_aulet",
- "fullName": "J.P. Aulet (jp_aulet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803150/medium/b3e0e270c8b5b72787b8bc760872e567.png",
- "joined": "2021-09-23 06:33:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14782800",
- "username": "dongfengg19980930",
- "fullName": "FENG GUITAR (dongfengg19980930)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14782800/medium/f1e8ed09f992269795a28e1a776bfc63.jpeg",
- "joined": "2021-06-02 06:03:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815664",
- "username": "Marigold0106",
- "fullName": "Marigold0106",
- "avatarUrl": "https://www.gravatar.com/avatar/75b35629161d0cd3e8255e81efacf231?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 16:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794586",
- "username": "Scipiomx",
- "fullName": "Scipiomx",
- "avatarUrl": "https://www.gravatar.com/avatar/0a39e7e1170e203766f4082e495e988d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 16:10:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788632",
- "username": "Desuros",
- "fullName": "Desuros",
- "avatarUrl": "https://www.gravatar.com/avatar/bddd54e3c2b558678a021359c83dc4c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 15:14:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794760",
- "username": "ignv",
- "fullName": "Ignacio Viggiani (ignv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794760/medium/2059ce788a83774e10a1ed6de1bf27ab.jpeg",
- "joined": "2021-06-10 19:39:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 24,
- "negativeVotes": 3,
- "winning": 647
- },
- {
- "user": {
- "id": "14788556",
- "username": "Mika1801",
- "fullName": "Mika1801",
- "avatarUrl": "https://www.gravatar.com/avatar/bdff3eb483b40ba527a95fd39d16ac4f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 13:46:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788394",
- "username": "k-sad",
- "fullName": "k-sad",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788394/medium/d36035c2e171b8c0a75df7a938eceadb.jpg",
- "joined": "2021-06-06 11:41:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 132
- },
- {
- "user": {
- "id": "14788050",
- "username": "ZyWwQq",
- "fullName": "ZyWwQq",
- "avatarUrl": "https://www.gravatar.com/avatar/13dc1aa3f6dd80f01b67a5328de4655e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-07-16 00:45:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794910",
- "username": "PyrojoKes",
- "fullName": "PyrojoKes",
- "avatarUrl": "https://www.gravatar.com/avatar/3213c05c3849d8586442c2af51998c42?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 23:24:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788004",
- "username": "pokupki.ks",
- "fullName": "pokupki.ks",
- "avatarUrl": "https://www.gravatar.com/avatar/f3ff2a967dbff6bbaaa2516ffa7757a8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 03:05:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794938",
- "username": "ariaphoenix5",
- "fullName": "Aria Phoenix (ariaphoenix5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794938/medium/1205998ed6714e039c979e44a2f7c3fd.jpeg",
- "joined": "2021-06-11 00:20:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795304",
- "username": "beyzagokmen",
- "fullName": "beyzagokmen",
- "avatarUrl": "https://www.gravatar.com/avatar/90b128369daaa823c799b6985b9c46e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 10:41:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814206",
- "username": "novoadaniel2",
- "fullName": "Daniel Novoa (novoadaniel2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814206/medium/67568f30eb32fc4106e9e34eeba4f794.png",
- "joined": "2021-06-24 15:55:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814106",
- "username": "agatavital13",
- "fullName": "agatavital13",
- "avatarUrl": "https://www.gravatar.com/avatar/aa2bcddbcf212717c3391de55a6ac4e9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-28 16:39:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14795314",
- "username": "lvyulv",
- "fullName": "lvyulv",
- "avatarUrl": "https://www.gravatar.com/avatar/6da7daf6080bbc77e7b32daf876970eb?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 07:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788680",
- "username": "lucasmelo.dev",
- "fullName": "lucasmelo.dev",
- "avatarUrl": "https://www.gravatar.com/avatar/78f6cae002c440a35994411a1bb3ec52?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 15:57:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14795952",
- "username": "Khoa61020000",
- "fullName": "Nguyễn thái đăng khoa (Khoa61020000)",
- "avatarUrl": "https://www.gravatar.com/avatar/a1dfcd00c37f65bafe044729e2e48f58?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 17:36:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796030",
- "username": "Nextstar.eth",
- "fullName": "Aman Ullah (Nextstar.eth)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14796030/medium/500ebe6ce71623e4e7e0c2adfa59ae0e.jpg",
- "joined": "2021-06-11 18:51:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815816",
- "username": "cristianedacruzcris311",
- "fullName": "Cristiane da Cruz Cris (cristianedacruzcris311)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815816/medium/7f416e5f55737c497a41004380cc21d0.png",
- "joined": "2021-06-28 21:43:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796076",
- "username": "plf",
- "fullName": "plf",
- "avatarUrl": "https://www.gravatar.com/avatar/8ecfbf7d5e932f06a3ec6aab644945c1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 20:05:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787988",
- "username": "thaiduckman",
- "fullName": "Suppatach Sabpisal (thaiduckman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787988/medium/9524a35b654ed1767e2ed2aeddf23edb.jpeg",
- "joined": "2021-06-06 02:49:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787946",
- "username": "importwyf",
- "fullName": "汪一帆 (importwyf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14787946/medium/887ff1f844f3421fdad67e477aa2b0f7.png",
- "joined": "2021-06-06 01:57:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796126",
- "username": "Lyubo69",
- "fullName": "Lyubo69",
- "avatarUrl": "https://www.gravatar.com/avatar/031a3ffbe3f054bc23ce7dc79d030b03?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-11 22:09:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14796460",
- "username": "PA.SA.",
- "fullName": "PA.SA.",
- "avatarUrl": "https://www.gravatar.com/avatar/19d3a27d39c9b423f90d07241055ba95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 05:32:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787830",
- "username": "Novalina26",
- "fullName": "Novalina26",
- "avatarUrl": "https://www.gravatar.com/avatar/12c84e9c2167c20221fdab982da8ae3c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 22:46:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797214",
- "username": "rootban",
- "fullName": "rootban",
- "avatarUrl": "https://www.gravatar.com/avatar/290726f39936f7d6d0cda7b6b8be0724?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 19:26:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797460",
- "username": "lytrung879",
- "fullName": "Trung Ly (lytrung879)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797460/medium/a0891f5734c048a30ef16d67f5760f75.jpeg",
- "joined": "2021-06-13 01:43:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787744",
- "username": "ZLJ165",
- "fullName": "ZLJ165",
- "avatarUrl": "https://www.gravatar.com/avatar/2df29854a6f98dae5a044f3489f05323?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 20:45:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14794006",
- "username": "Keshuking02",
- "fullName": "Keshuking02",
- "avatarUrl": "https://www.gravatar.com/avatar/5bdd06248ff8e476a9a10f4a53d49240?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 07:57:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14793958",
- "username": "CavalST",
- "fullName": "CavalST",
- "avatarUrl": "https://www.gravatar.com/avatar/8a74c3ad91c5c464dc7d5d7044561342?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-10 07:21:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797670",
- "username": "stassizyakin45",
- "fullName": "Ann Partovi (stassizyakin45)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797670/medium/9e08f4e6af0d5ea0617c0f3347c2701f.jpeg",
- "joined": "2021-06-13 06:49:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815080",
- "username": "0904508678duy",
- "fullName": "Nguyen Duy (0904508678duy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815080/medium/d175930e28a0382f4ad6127ee47c961a.png",
- "joined": "2021-06-25 08:01:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791672",
- "username": "Luchito",
- "fullName": "Luchito",
- "avatarUrl": "https://www.gravatar.com/avatar/946202481cc6d9ecf0831139b7d01a80?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 17:14:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791710",
- "username": "7TRESSLESS",
- "fullName": "7TRESSLESS",
- "avatarUrl": "https://www.gravatar.com/avatar/a8762a651e6f41bdf0abd6336e0f1a15?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 18:01:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 383
- },
- {
- "user": {
- "id": "14791842",
- "username": "fayewang4",
- "fullName": "wang faye (fayewang4)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791842/medium/89d1c354959cba1cc202d48868419686.png",
- "joined": "2021-06-08 21:46:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791670",
- "username": "nestisamet",
- "fullName": "Samet TEMIZER (nestisamet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791670/medium/9ebd2f349d30bf2a7ea46cf7b33ff0ac.jpeg",
- "joined": "2021-06-08 17:12:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814690",
- "username": "khodaarahmi",
- "fullName": "Ehsan Khodaarahmi (khodaarahmi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814690/medium/22dbf1e43823e76cb094bff3fdcca212.jpeg",
- "joined": "2021-06-25 02:47:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 5,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791370",
- "username": "williamx",
- "fullName": "williamx",
- "avatarUrl": "https://www.gravatar.com/avatar/4eb4b1506023a58feece224f73949a43?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 12:34:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 2,
- "winning": 515
- },
- {
- "user": {
- "id": "14814830",
- "username": "keskn.sertac7655",
- "fullName": "Sertaç Keskin (keskn.sertac7655)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814830/medium/fcc4262e29d4555d87b18d8f9d840ddc.png",
- "joined": "2021-06-25 05:08:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14791328",
- "username": "milindsoorya",
- "fullName": "milind soorya (milindsoorya)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791328/medium/0ebf10e4cf80866063dff115afe00116.jpeg",
- "joined": "2021-06-08 12:13:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 48
- },
- {
- "user": {
- "id": "14791926",
- "username": "dwroy",
- "fullName": "dwroy",
- "avatarUrl": "https://www.gravatar.com/avatar/cc587a55e19c901560b508395d50465e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 23:25:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814600",
- "username": "vPEPO",
- "fullName": "Luciano Orlando (vPEPO)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814600/medium/677ea1f4add63149a74de564de70989a.png",
- "joined": "2021-06-25 00:52:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 22
- },
- {
- "user": {
- "id": "14790916",
- "username": "Smaily",
- "fullName": "Smaily",
- "avatarUrl": "https://www.gravatar.com/avatar/85245f1a50ea372727e77bfc29d7fa98?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-08 08:17:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790502",
- "username": "leo-cuellar",
- "fullName": "Leo Cuéllar (leo-cuellar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790502/medium/3e58c2b7fb2644f6fa95eb909909f256.jpeg",
- "joined": "2021-06-08 01:16:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14790426",
- "username": "skankhunt66",
- "fullName": "dlx (skankhunt66)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790426/medium/3a251c06cee98a01dc50c5ad612df818.jpeg",
- "joined": "2021-08-20 19:55:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778974",
- "username": "Plaotin",
- "fullName": "Plaotin",
- "avatarUrl": "https://www.gravatar.com/avatar/eab03bb8abbb3f1774760eea9ff5be07?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 15:03:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790254",
- "username": "GreenbowAlabama",
- "fullName": "Matheus Borges (GreenbowAlabama)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14790254/medium/81f5c0174896beb123d3e740d1a28c5c.jpeg",
- "joined": "2021-06-07 19:04:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815280",
- "username": "Plomanto0419",
- "fullName": "Plomanto0419",
- "avatarUrl": "https://www.gravatar.com/avatar/a410222b823ca7093977051400ce41cd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 10:17:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14790174",
- "username": "FatihOng",
- "fullName": "FatihOng",
- "avatarUrl": "https://www.gravatar.com/avatar/b19940a772c651ab824a365987d98cee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 17:23:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792200",
- "username": "liuxiaotong15",
- "fullName": "liuxiaotong (liuxiaotong15)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792200/medium/651095028597144eac73720a0c320b3d.jpeg",
- "joined": "2021-06-09 04:25:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1206
- },
- {
- "user": {
- "id": "14814538",
- "username": "multilkyx",
- "fullName": "Multi lkyx (multilkyx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814538/medium/a758db833b50a769463ef35c5d5b99f1.gif",
- "joined": "2021-06-24 23:36:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 71
- },
- {
- "user": {
- "id": "14789894",
- "username": "Cruca",
- "fullName": "Cruca",
- "avatarUrl": "https://www.gravatar.com/avatar/4c661a063d5bb5916c713c57a4e2033e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-07 12:39:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792324",
- "username": "aghamojtaba1349",
- "fullName": "mojtaba saadat (aghamojtaba1349)",
- "avatarUrl": "https://www.gravatar.com/avatar/dbed5862e02fded0c295b09800adc625?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-09 06:16:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792352",
- "username": "Naoku",
- "fullName": "Yunus Emre Yıl (Naoku)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792352/medium/d30f4fedd7a4b5d565918a164bc7b044.png",
- "joined": "2021-06-09 06:42:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14788998",
- "username": "ccosds",
- "fullName": "ccosds",
- "avatarUrl": "https://www.gravatar.com/avatar/06ab597f272f96e88582faca01cb1cb5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-06 23:51:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14792498",
- "username": "tyevlag",
- "fullName": "tyevlag",
- "avatarUrl": "https://www.gravatar.com/avatar/16e0cdde1a9cb6ce5788ff1f24cb89f7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-27 05:09:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 1022
- },
- {
- "user": {
- "id": "14788710",
- "username": "niliosmon",
- "fullName": "Равиль Вахиев (niliosmon)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14788710/medium/279fe400c614f4ff9e976f620d8e3293.jpeg",
- "joined": "2021-06-06 16:45:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14814346",
- "username": "ThunderDeliverer",
- "fullName": "Jan Turk (ThunderDeliverer)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814346/medium/0b89b5f1816ee9e6fd8cd60e01ac357c.png",
- "joined": "2021-06-24 18:48:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14815610",
- "username": "mnw586",
- "fullName": "mnw586",
- "avatarUrl": "https://www.gravatar.com/avatar/690011ed4104436727a2a5c7c64962fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-25 15:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797568",
- "username": "renansuporte",
- "fullName": "Renan Azedo de Oliveira (renansuporte)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797568/medium/054e1de8d64f59ad4fa3f990108fdbb6.jpeg",
- "joined": "2021-06-13 04:32:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14797736",
- "username": "hugues.occansey",
- "fullName": "NO MORE LIMITS VR (hugues.occansey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14797736/medium/9ba14023162fa366a352033048f79442.png",
- "joined": "2021-06-13 08:21:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14783432",
- "username": "Husain7",
- "fullName": "HusainKapasi (Husain7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783432/medium/44a62ae94f5961e10f4ed656175d8ec3.jpeg",
- "joined": "2021-06-02 14:14:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14773468",
- "username": "limin.yan.cs",
- "fullName": "Yan LiMin (limin.yan.cs)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14773468/medium/4155ab1e68774a89fe4a7be36a66c641.png",
- "joined": "2021-05-26 07:57:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785890",
- "username": "lu_schy",
- "fullName": "Lu (lu_schy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785890/medium/9af95930308caa40e0747a37886265d2.jpeg",
- "joined": "2021-06-04 13:11:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785636",
- "username": "hakasekenken",
- "fullName": "hakasekenken",
- "avatarUrl": "https://www.gravatar.com/avatar/649dd538c5dcd0b067043e01edfffa61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:40:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785628",
- "username": "gucoo",
- "fullName": "gucoo",
- "avatarUrl": "https://www.gravatar.com/avatar/98ff76f33f4003bd8b487e02d1e6e7c3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:35:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14785626",
- "username": "Brange_",
- "fullName": "Brange_",
- "avatarUrl": "https://www.gravatar.com/avatar/d5f99d63541e8c56e475f86660e48e2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 05:31:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14785458",
- "username": "ReturnWTF",
- "fullName": "wangchuang (ReturnWTF)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785458/medium/e83fd1082d399556b9c9dc3a956046c5.jpeg",
- "joined": "2021-06-04 03:27:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785220",
- "username": "rokinot",
- "fullName": "Rokinot Channel (rokinot)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785220/medium/4a6f6852105b606735b08d45c74b0fd7.png",
- "joined": "2021-06-03 22:55:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14785200",
- "username": "JoSaint22",
- "fullName": "JoSaint22",
- "avatarUrl": "https://www.gravatar.com/avatar/6dea88dd0e14ef8236e6557fb5d99cba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 22:02:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784930",
- "username": "vaclav.kyval",
- "fullName": "Václav Kýval (vaclav.kyval)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784930/medium/124a3262e9172e0da7b788575a4c4f3d.jpeg",
- "joined": "2021-06-03 14:58:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784812",
- "username": "motxx",
- "fullName": "moti (motxx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784812/medium/7ddb99d66ba8a59e09d05bbcf9c49887.png",
- "joined": "2021-06-03 13:15:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784788",
- "username": "Matburnx",
- "fullName": "Matburnx",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784788/medium/c6e248018a668c2334d68bf2cee929d4.png",
- "joined": "2021-06-03 13:02:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802856",
- "username": "hadeel.a",
- "fullName": "Hadeel A. (hadeel.a)",
- "avatarUrl": "https://www.gravatar.com/avatar/db294d466dc1976479f39453d7cd9ff4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 08:41:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802894",
- "username": "015-uk_0002",
- "fullName": "015-UK_0002 (015-uk_0002)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802894/medium/588f892df67fca18b552e5c40980776e.png",
- "joined": "2021-06-24 09:36:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14784750",
- "username": "PaulOurs",
- "fullName": "PaulOurs",
- "avatarUrl": "https://www.gravatar.com/avatar/cd699edb9198b1b5c53f8dec55e5528c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 12:45:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14802794",
- "username": "Lanlanluu88",
- "fullName": "Lanlanluu88",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802794/medium/075e46cf87966cd0e74cab0fee2b6a39.png",
- "joined": "2021-06-17 01:20:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784442",
- "username": "HaloEric",
- "fullName": "HaloEric",
- "avatarUrl": "https://www.gravatar.com/avatar/919702c1532616a88d4990268af2386d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 08:54:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803342",
- "username": "harikhan036",
- "fullName": "hari Khan (harikhan036)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803342/medium/8f68d2b204c5760635466eea56c14112.png",
- "joined": "2021-06-17 08:14:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14813110",
- "username": "nefcorp",
- "fullName": "nefcorp",
- "avatarUrl": "https://www.gravatar.com/avatar/cdb2e3e35746dffd44051a409a082939?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-23 20:40:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 7
- },
- {
- "user": {
- "id": "14803498",
- "username": "DeograciousAggrey",
- "fullName": "DeograciousAggrey",
- "avatarUrl": "https://www.gravatar.com/avatar/5c60d0cf9580eabc0799b3dc5ea5dec3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-17 09:52:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784414",
- "username": "Gregory.Scalet",
- "fullName": "DeFiGregg (Gregory.Scalet)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784414/medium/3c33d392c019608a477744d2c30ee357.jpg",
- "joined": "2021-06-03 08:44:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14784406",
- "username": "garbirel",
- "fullName": "garbirel",
- "avatarUrl": "https://www.gravatar.com/avatar/e72968b533b18b4a8a00dfe052493636?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 08:34:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 64
- },
- {
- "user": {
- "id": "14784336",
- "username": "8rax",
- "fullName": "8rax",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784336/medium/9acf0e353a205518b69bcf8b130aacf7.gif",
- "joined": "2021-06-03 07:43:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14784198",
- "username": "Rojojue",
- "fullName": "Rojojue",
- "avatarUrl": "https://www.gravatar.com/avatar/4c2a031d6833806ff9578eacd213b471?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-03 05:08:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14784092",
- "username": "akarakuzu8",
- "fullName": "Ahmet Karakuzu (akarakuzu8)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14784092/medium/c6dc90c8ae877bc5304606836ad5379d.png",
- "joined": "2021-06-03 03:18:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803836",
- "username": "chhsherpa",
- "fullName": "CHONGBA SHERPA (chhsherpa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803836/medium/11076ad6dcb6a82c7c4814053a5362a3.jpeg",
- "joined": "2021-06-17 12:38:26"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14803952",
- "username": "Oscar_small",
- "fullName": "Oscar_small",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14803952/medium/98aa4e60adbdf6174d78c96da90f0c11.jpeg",
- "joined": "2021-06-17 14:03:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14783598",
- "username": "lemony.jerome",
- "fullName": "Jj (lemony.jerome)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14783598/medium/3222a279390e4b25e1a6a456c008139b.jpeg",
- "joined": "2021-06-02 16:21:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 1
- },
- {
- "user": {
- "id": "14785924",
- "username": "KaerMorh",
- "fullName": "SkyEternal (KaerMorh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14785924/medium/c4f322ead0ea660939705b498e4614ad.png",
- "joined": "2021-06-04 09:26:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 57
- },
- {
- "user": {
- "id": "14786220",
- "username": "AkumaAsuramaru",
- "fullName": "Black Label (AkumaAsuramaru)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786220/medium/eecd1bcb00da5c64d5718883aa99466e.jpeg",
- "joined": "2021-06-04 12:57:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 8
- },
- {
- "user": {
- "id": "14797974",
- "username": "salehtavakoli",
- "fullName": "salehtavakoli",
- "avatarUrl": "https://www.gravatar.com/avatar/beabe6ead932a8557c4b62793e499e4d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-13 12:12:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786888",
- "username": "amiramin695",
- "fullName": "amiramin695",
- "avatarUrl": "https://www.gravatar.com/avatar/9be9b78cf2a8e9a83567fbb6ba5b1526?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 03:46:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14798406",
- "username": "bozorgzadehhabib",
- "fullName": "Habib Bozorgzadeh (bozorgzadehhabib)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798406/medium/f39d4189a95fd756bc3b50d906d3e624.jpeg",
- "joined": "2021-06-13 20:47:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787116",
- "username": "Mustang",
- "fullName": "Mustang",
- "avatarUrl": "https://www.gravatar.com/avatar/21c1c7ddcdf4d1d9f54d8673035aba1d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 07:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14798702",
- "username": "FlorentLef",
- "fullName": "Florent Lefebvre (FlorentLef)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14798702/medium/b7d6ed1d69505955e065e3518df312b0.jpeg",
- "joined": "2021-06-14 04:12:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14787090",
- "username": "Sim0n",
- "fullName": "Sim0n",
- "avatarUrl": "https://www.gravatar.com/avatar/5c818046bf8ff41c9022c66788021066?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-05 07:20:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14813188",
- "username": "zhizheng",
- "fullName": "Zack Wang (zhizheng)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14813188/medium/2e7f6339b3b0cef257f1a26dd6fdc970.jpeg",
- "joined": "2021-06-23 23:01:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14799060",
- "username": "alpergindao",
- "fullName": "alp (alpergindao)",
- "avatarUrl": "https://www.gravatar.com/avatar/0de6f9af763cc0a46781ae451a2bf1a5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-14 10:15:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 21
- },
- {
- "user": {
- "id": "14799150",
- "username": "bilalbayram",
- "fullName": "bilalbayram",
- "avatarUrl": "https://www.gravatar.com/avatar/238bf199085eed31386992556fc4a3da?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-14 11:19:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799334",
- "username": "m037871",
- "fullName": "Huan Xian WU (m037871)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799334/medium/a03fb1630d23f9aec41d2bca4cfb9422.jpeg",
- "joined": "2021-06-14 14:10:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14799412",
- "username": "vane.dcm",
- "fullName": "vane.dcm",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14799412/medium/77cfcb8d6a2a8bb61519a7a136745224.jpg",
- "joined": "2021-06-14 15:19:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 106
- },
- {
- "user": {
- "id": "14799822",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/42b84f2eb981d8587680d8ba76208c22?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 00:11:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14800200",
- "username": "adrianpazosg",
- "fullName": "Adrián Pazos (adrianpazosg)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800200/medium/6ed8760ef8fce69662fcee35915085d0.jpeg",
- "joined": "2021-06-15 06:51:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786918",
- "username": "shuaishao",
- "fullName": "Shuai Shao (shuaishao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786918/medium/683fae422ad7adbf5241cbfbfd5d08f9.png",
- "joined": "2021-06-05 04:22:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786760",
- "username": "Christiadarma",
- "fullName": "David Christiadarma Setiawan (Christiadarma)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786760/medium/0a9de74a9a0f585ec24105d566a0170b.png",
- "joined": "2021-06-05 00:23:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801934",
- "username": "allanalves",
- "fullName": "allanalves",
- "avatarUrl": "https://www.gravatar.com/avatar/99bd2d54249b669e37a6b09a740b8d65?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 10:01:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800260",
- "username": "onhorou",
- "fullName": "onhorou",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800260/medium/5e6c1ca22c8427777ebb9cb232779238.png",
- "joined": "2021-06-15 07:53:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800546",
- "username": "durchunddurch",
- "fullName": "durchunddurch",
- "avatarUrl": "https://www.gravatar.com/avatar/e31bdda13e37cbf4b4bd18c88541fdc4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 10:48:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800588",
- "username": "CarolinaFilipe",
- "fullName": "CarolinaFilipe",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14800588/medium/d8be152e1a3b5e6fbe43fadfe904a737.jpeg",
- "joined": "2021-06-15 11:17:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786740",
- "username": "szwangyuanjie",
- "fullName": "王袁杰 (szwangyuanjie)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786740/medium/e60a7723bf81e1ec3d888e173a0f6052.jpeg",
- "joined": "2021-06-05 00:07:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14800734",
- "username": "xiao101599",
- "fullName": "xiao101599",
- "avatarUrl": "https://www.gravatar.com/avatar/e3fc77c6e9c35ef4097e994502ead8ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-15 13:08:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786572",
- "username": "ohmygosh",
- "fullName": "ohmygosh",
- "avatarUrl": "https://www.gravatar.com/avatar/b304387a3d7f3421a5b6dbed250f7f67?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-04 19:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801120",
- "username": "yousefjoo363.me",
- "fullName": "Mohamed Elsayed (yousefjoo363.me)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801120/medium/a0b8716af339d4cf3f31537f266a771c.jpeg",
- "joined": "2021-06-15 21:01:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786568",
- "username": "barabara54b",
- "fullName": "Bara Barann (barabara54b)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786568/medium/28bb342744a64bff6c38e2e99c97a1ee.png",
- "joined": "2021-06-05 02:13:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786554",
- "username": "themorit",
- "fullName": "Sami H. (themorit)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786554/medium/3e41ddf73b067709e17114acc3057c3d.jpg",
- "joined": "2021-06-04 19:21:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 108
- },
- {
- "user": {
- "id": "14786426",
- "username": "Drmasoudrezaei",
- "fullName": "Dr Masoud Rezaei (Drmasoudrezaei)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786426/medium/655a2e23f8fe6400cf5260b7ebd6f504.jpeg",
- "joined": "2021-06-04 16:20:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14786318",
- "username": "raptoright",
- "fullName": "Orhun Onar (raptoright)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14786318/medium/7ea95d1beaa64d32c9af167ec73c44bc.jpeg",
- "joined": "2021-06-04 14:04:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 96
- },
- {
- "user": {
- "id": "14801560",
- "username": "jeb-steve",
- "fullName": "jeb-steve",
- "avatarUrl": "https://www.gravatar.com/avatar/24a5366768a8c30fd91a8569549c08e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-16 04:29:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14801608",
- "username": "burgmancat",
- "fullName": "Andres Sanchez (burgmancat)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14801608/medium/37108cefa2cd3315ef2183f2d9fe70ae.jpeg",
- "joined": "2021-06-16 07:21:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14811950",
- "username": "yanyanho",
- "fullName": "yanyanho",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14811950/medium/19ae645e2dd0ce102ecb67c0330ae71e.png",
- "joined": "2021-06-23 00:41:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736248",
- "username": "dogarol",
- "fullName": "Dogan Erol (dogarol)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736248/medium/abd45e199e835369cdcf596016e685c9.jpeg",
- "joined": "2021-05-03 06:57:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778956",
- "username": "zhaitkin",
- "fullName": "Zak Haitkin (zhaitkin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778956/medium/cbbcb41eea198309631de1e55bd67ddd.jpeg",
- "joined": "2021-05-30 14:56:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14730220",
- "username": "chanmix51",
- "fullName": "chanmix51",
- "avatarUrl": "https://www.gravatar.com/avatar/b80a4b5f0be0575599f7b18b80ced91c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 12:11:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728440",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/9588577b4a09b7b9a4df8000b32b1846?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 08:08:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728652",
- "username": "gaokunjie",
- "fullName": "gaokunjie",
- "avatarUrl": "https://www.gravatar.com/avatar/46c53eacc7017d1df19251a99975ef24?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 10:58:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728816",
- "username": "scaliotifrancesco",
- "fullName": "Francesco Scalioti (scaliotifrancesco)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728816/medium/44402c6a7b9e61f79ebcfc9f7afb14c4.jpg",
- "joined": "2021-04-27 13:06:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728892",
- "username": "kaan.ezerr",
- "fullName": "kaan.ezerr",
- "avatarUrl": "https://www.gravatar.com/avatar/2480cd9ca1aa823a659bdd33c42642e0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 13:53:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729132",
- "username": "jackg",
- "fullName": "Jack Goldenberg (jackg)",
- "avatarUrl": "https://www.gravatar.com/avatar/a972a2fefea2d1bb1a250d03de5811a3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 17:35:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729310",
- "username": "STEPHANIEHERMANO9",
- "fullName": "STEPHANIEHERMANO9",
- "avatarUrl": "https://www.gravatar.com/avatar/5e76a79d22610c337e2b829b14ee505e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 22:11:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729416",
- "username": "ronnyfahrudin",
- "fullName": "Ronny Fahrudin (ronnyfahrudin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729416/medium/b86dd8784f1012350c8387237a5f6014.jpeg",
- "joined": "2021-04-28 00:55:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729438",
- "username": "adnankattekaden",
- "fullName": "Adnan Kattekaden (adnankattekaden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729438/medium/bc7d6ec3824e1fde2c8e408044662f2e.jpg",
- "joined": "2021-04-28 01:30:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729442",
- "username": "dddpower",
- "fullName": "HS J (dddpower)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729442/medium/0914935a24ff8326fedeab8863ffe8a7.jpg",
- "joined": "2021-05-24 21:41:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729514",
- "username": "kylin7647",
- "fullName": "顾轻言 (kylin7647)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729514/medium/86176f28da9e30f87eec5e8dd06df954.jpeg",
- "joined": "2021-04-28 02:52:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 28
- },
- {
- "user": {
- "id": "14729586",
- "username": "hila1gt2",
- "fullName": "Benjamin Mattmann (hila1gt2)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14729586/medium/b2148ad52e0bc29f3b569d164434a221.jpeg",
- "joined": "2021-04-28 04:06:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14729712",
- "username": "Dharmayudha",
- "fullName": "Dharmayudha",
- "avatarUrl": "https://www.gravatar.com/avatar/101efaf88524ecc7518f1af1bf14494e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 05:29:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730026",
- "username": "joandeportol",
- "fullName": "joandeportol",
- "avatarUrl": "https://www.gravatar.com/avatar/569e25fc4405d1f17ad069c9fbf1303e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 09:48:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730036",
- "username": "shoyu",
- "fullName": "shoyu",
- "avatarUrl": "https://www.gravatar.com/avatar/63482119a319a16ec7701c49c531212c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 09:53:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730314",
- "username": "miekemouse123",
- "fullName": "miekemouse123",
- "avatarUrl": "https://www.gravatar.com/avatar/f13e090b894e27d422d9e2b74e50837c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 21:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728346",
- "username": "qiuchunse",
- "fullName": "qiuchunse",
- "avatarUrl": "https://www.gravatar.com/avatar/42cf23315b5cc4f43fc547bea4e466ba?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 06:34:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730402",
- "username": "ramboo45",
- "fullName": "ramboo45",
- "avatarUrl": "https://www.gravatar.com/avatar/5d666cdc930b84ca18d4397304df72fc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 15:04:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730432",
- "username": "fkilic13",
- "fullName": "fkilic13",
- "avatarUrl": "https://www.gravatar.com/avatar/428994f60afeff7073ce6489d5f813b7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 15:24:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730452",
- "username": "pperezcolombia",
- "fullName": "Pedro Fabián Pérez Arteaga (pperezcolombia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730452/medium/9755c40f928912583a0ca30b50bc7d01.jpeg",
- "joined": "2021-04-28 15:53:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730558",
- "username": "ram0304",
- "fullName": "ram0304",
- "avatarUrl": "https://www.gravatar.com/avatar/df5136e2d6fb7371c6104d5a582cd573?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-28 17:44:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730600",
- "username": "Datenshi",
- "fullName": "Datenshi",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730600/medium/562d4270c70922086fe1ce42f079e984.jpg",
- "joined": "2021-04-28 20:22:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 39,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730618",
- "username": "emilnachev69",
- "fullName": "Emil Nachev (emilnachev69)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730618/medium/4cb6f96ea43b40aeabd58221e4ced361.jpeg",
- "joined": "2021-04-28 19:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14730690",
- "username": "Khasanboy91",
- "fullName": "Khasanboy Abdullaev H7 (Khasanboy91)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730690/medium/272dc1528c197c387c450230a21bc893.jpg",
- "joined": "2021-04-28 20:45:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730796",
- "username": "mukhamadkurniarrokhman",
- "fullName": "Mukhamad kurniarrokhman (mukhamadkurniarrokhman)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730796/medium/3e2f1ca6fbbc5a2785754c7e209a8358.jpeg",
- "joined": "2021-04-28 23:35:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14730856",
- "username": "incio_chca",
- "fullName": "Cesar Incio (incio_chca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730856/medium/814f97b84cb2c46e7a0262db09698a11.jpg",
- "joined": "2021-04-29 11:02:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730858",
- "username": "VanessaF",
- "fullName": "VanessaF",
- "avatarUrl": "https://www.gravatar.com/avatar/3e380250dbb8d90b2f76c1ec445d06ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 01:20:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14730882",
- "username": "visp80",
- "fullName": "Руслан Пузыч (visp80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730882/medium/dc86e89520a84b606933c26d250c2fd4.jpg",
- "joined": "2021-04-29 01:48:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731048",
- "username": "Xackurai",
- "fullName": "Xackurai",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731048/medium/f26e2018bffc93ae932ec0a7c8ad8775.jpeg",
- "joined": "2021-04-29 05:14:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731202",
- "username": "Sungbin",
- "fullName": "Sungbin Lee (Sungbin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14731202/medium/8766d6dd42fc7373d7b9580769ff4baa.jpg",
- "joined": "2021-04-29 07:18:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731248",
- "username": "Ivan-Stepanenko",
- "fullName": "Ivan-Stepanenko",
- "avatarUrl": "https://www.gravatar.com/avatar/6f195c3ef662fb75acba8423de1de144?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 07:50:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728354",
- "username": "shenglim",
- "fullName": "shenglim",
- "avatarUrl": "https://www.gravatar.com/avatar/49d5ce3fdc3a6faa8e8bf10cb6340dfe?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 22:57:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728190",
- "username": "Marcus27UK",
- "fullName": "Marcus27UK",
- "avatarUrl": "https://www.gravatar.com/avatar/ea761150b8eb3a29b899a1bad118010b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 03:40:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731532",
- "username": "Stanislavy",
- "fullName": "Stanislavy",
- "avatarUrl": "https://www.gravatar.com/avatar/eaff8c967173bbebd45589751487931c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 12:00:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726400",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/a3c8b6df152674573f363cd65e8acd8d?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 15:45:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 314
- },
- {
- "user": {
- "id": "14725036",
- "username": "ergngndz",
- "fullName": "bawer ceqtar (ergngndz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725036/medium/1971b811cb0120336703db7a1a27ff8f.jpg",
- "joined": "2021-04-24 12:14:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725086",
- "username": "Ackermann",
- "fullName": "Ackermann",
- "avatarUrl": "https://www.gravatar.com/avatar/55f6733f811a59351c943a13950dc228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 13:18:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725116",
- "username": "kanitha",
- "fullName": "kanitha",
- "avatarUrl": "https://www.gravatar.com/avatar/3ea660f399f8871e760c9d82862c0462?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 13:54:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725188",
- "username": "bagira2512",
- "fullName": "ivanna panasuk (bagira2512)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725188/medium/8de0ac373b7fbd055402a38215b9e0a6.jpg",
- "joined": "2021-04-24 15:36:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725224",
- "username": "julioabrahao",
- "fullName": "Julio Abrahão (julioabrahao)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725224/medium/71c544a5f76fec25c5a1f156b4e74474.jpeg",
- "joined": "2021-04-24 16:18:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725288",
- "username": "HypeRush",
- "fullName": "yağız berk vural (HypeRush)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725288/medium/94cb2ca98cad3a255cfe800f33d77761.jpeg",
- "joined": "2021-04-24 17:16:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 44
- },
- {
- "user": {
- "id": "14725384",
- "username": "kokxxxxik",
- "fullName": "ANDRZEJ J. (kokxxxxik)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725384/medium/3d95e67f2d0cf018557b337329216fa4.jpeg",
- "joined": "2021-04-24 19:47:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725740",
- "username": "paolo.mantovani",
- "fullName": "Paolo Mantovani (paolo.mantovani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725740/medium/209c984838eb1bee4aede9f0e6c5dee6.jpeg",
- "joined": "2021-04-25 04:39:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725874",
- "username": "Mizeri",
- "fullName": "Mizeri",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725874/medium/438f8e88827805ef3cb42b27290f4954.png",
- "joined": "2021-04-25 07:37:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14725992",
- "username": "gkhnatc80",
- "fullName": "Gökhan Atıcı (gkhnatc80)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725992/medium/738fc97226613aced2536303eff2ff22.jpeg",
- "joined": "2021-04-25 09:40:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 29
- },
- {
- "user": {
- "id": "14725996",
- "username": "alvilica.bouanani",
- "fullName": "Stormisausore (alvilica.bouanani)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14725996/medium/40e18610dc51e592ef05c698d2904e5d.png",
- "joined": "2021-04-25 09:41:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726036",
- "username": "wangyanghr",
- "fullName": "Yang Wang (wangyanghr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726036/medium/5448c6150411b094b13b79d8fe4a3f29.jpeg",
- "joined": "2021-04-25 10:52:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726110",
- "username": "dugarte.z981",
- "fullName": "Daniel Horacio Ugarte (dugarte.z981)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726110/medium/6ce23defc916504b5bf20fade6532619.jpeg",
- "joined": "2021-04-25 12:05:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726116",
- "username": "salih.keyf",
- "fullName": "salih keyf (salih.keyf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726116/medium/276f7773be59d0dd0ea1252e816006ca.jpg",
- "joined": "2021-04-25 12:14:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726406",
- "username": "MartoEpo",
- "fullName": "MartoEpo",
- "avatarUrl": "https://www.gravatar.com/avatar/ea584d4c746d9d5b1da12c32138fed2c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 15:37:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14728134",
- "username": "lamphor",
- "fullName": "Nikhil Nigam (lamphor)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14728134/medium/ca927d6270c363e3dfb94161c0d9d671.png",
- "joined": "2021-04-27 02:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726474",
- "username": "zzhou",
- "fullName": "zzhou",
- "avatarUrl": "https://www.gravatar.com/avatar/5fb2ce40f06959b253dabc90bece479d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 16:56:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14726558",
- "username": "jpsossavi",
- "fullName": "jpsossavi",
- "avatarUrl": "https://www.gravatar.com/avatar/fb2b7d0bdefc2ba5bca029ef0382b209?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 19:20:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726566",
- "username": "Cronaldo",
- "fullName": "Cronaldo",
- "avatarUrl": "https://www.gravatar.com/avatar/ea2ae1349e64d8ad4d36a0f3bf231ea9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-25 19:29:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726596",
- "username": "cp_leonardo",
- "fullName": "César Pineda (cp_leonardo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726596/medium/cae3d03e9fe8e133b699b393d72c87f4.jpeg",
- "joined": "2021-04-25 20:28:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 217
- },
- {
- "user": {
- "id": "14726702",
- "username": "m.mirgolbabaei666",
- "fullName": "Mohammad Mirgolbabaei (m.mirgolbabaei666)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726702/medium/2fb4c1a6333de898cb2ba671be78222a.jpg",
- "joined": "2021-04-30 02:54:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726760",
- "username": "setiawanst",
- "fullName": "setiawanst",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726760/medium/5b90f1769b62ac80a10233b8b9558eed.jpg",
- "joined": "2021-04-26 00:45:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14726900",
- "username": "hassanatef312",
- "fullName": "Hassan Atef (hassanatef312)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14726900/medium/58cf487ada651b35a1d57a135b52650f.jpeg",
- "joined": "2021-04-26 03:37:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727044",
- "username": "MetehanOzyurek",
- "fullName": "Metehan Özyürek (MetehanOzyurek)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727044/medium/185fcf0359203eb8d719570e8cf23646.png",
- "joined": "2021-04-28 05:56:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727190",
- "username": "chakibnori",
- "fullName": "chakibnori",
- "avatarUrl": "https://www.gravatar.com/avatar/97c01b1b73f91f10614cac8567b7317d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 08:10:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727256",
- "username": "daniela108",
- "fullName": "daniela (daniela108)",
- "avatarUrl": "https://www.gravatar.com/avatar/5b73016b6311188aaa3eaeeb0d2a8c88?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 09:03:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727746",
- "username": "boygirlln1",
- "fullName": "Tamxom da1992 (boygirlln1)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727746/medium/bb9d9d833f8280f65c9f53620fc789b3.jpeg",
- "joined": "2021-04-26 17:07:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14727924",
- "username": "YuriNascimento",
- "fullName": "Yuri Nascimento (YuriNascimento)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727924/medium/64551c4f06627c3dc665d55f0c240b6f.jpeg",
- "joined": "2021-04-26 21:17:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14727958",
- "username": "PBK0227",
- "fullName": "PBK0227",
- "avatarUrl": "https://www.gravatar.com/avatar/dd46421af00469930767a0cf35d4a53c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-26 22:11:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 1,
- "winning": 225
- },
- {
- "user": {
- "id": "14727978",
- "username": "moilui",
- "fullName": "moilui",
- "avatarUrl": "https://www.gravatar.com/avatar/f4ffa63acc404899932a5c05085aeea1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-27 16:36:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731338",
- "username": "Kanna121",
- "fullName": "Kanna121",
- "avatarUrl": "https://www.gravatar.com/avatar/c3a5760c8e49d21d649b252d1fd14d95?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 09:05:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14731932",
- "username": "MQL83",
- "fullName": "MQL83",
- "avatarUrl": "https://www.gravatar.com/avatar/348c513aed120afc29cc2d347b1a4bff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 16:11:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14724780",
- "username": "arnabethu",
- "fullName": "arnabethu",
- "avatarUrl": "https://www.gravatar.com/avatar/b89e7d5a2b18f4fc465d6ef6ebb4343d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 08:03:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737234",
- "username": "yuichiroaokidoctorqube",
- "fullName": "Masako H (yuichiroaokidoctorqube)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737234/medium/b061a4e877a4876137ed20ef7d18d172.png",
- "joined": "2021-05-04 01:02:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 90
- },
- {
- "user": {
- "id": "14735952",
- "username": "DeMmAge",
- "fullName": "DeMmAge",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735952/medium/e04b2e75d4d0e43ccd1b6ee12e0c14a4.jpeg",
- "joined": "2021-05-03 02:00:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735992",
- "username": "tcmpasq",
- "fullName": "tcmpasq",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735992/medium/4d084cf7bbb19395652e6bae9d61873c.jpg",
- "joined": "2021-05-03 02:41:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14736246",
- "username": "Sami.staar",
- "fullName": "Sami Najem (Sami.staar)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736246/medium/f963438693a03d07d9b914e6839f09f1.jpeg",
- "joined": "2021-05-03 06:52:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736264",
- "username": "purtual",
- "fullName": "Morten Lautrup (purtual)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736264/medium/bfa73783034f3c6b355dfc74f9a1a1cd.png",
- "joined": "2021-05-03 07:02:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736324",
- "username": "0DarkAngel0",
- "fullName": "0DarkAngel0",
- "avatarUrl": "https://www.gravatar.com/avatar/29ea01522c35f95fabd23287a67d2dfc?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 08:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736338",
- "username": "Jennyantonon",
- "fullName": "Jennyantonon",
- "avatarUrl": "https://www.gravatar.com/avatar/9354ab13ddd3a3fef260c70941fe5529?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 08:23:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736478",
- "username": "ogander",
- "fullName": "ogander",
- "avatarUrl": "https://www.gravatar.com/avatar/894f54abd346f9c2956b14afb644847e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 10:32:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736586",
- "username": "nixonogoi",
- "fullName": "Nixon W. Ogoi (nixonogoi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736586/medium/ec41b3ccb42bed3514461d6998cf6e18.png",
- "joined": "2021-05-03 12:17:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736706",
- "username": "plutarkh",
- "fullName": "plutarkh",
- "avatarUrl": "https://www.gravatar.com/avatar/74d14126cda3b37c49581e426c5cb356?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 14:02:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736878",
- "username": "Arash21",
- "fullName": "ChetMokh (Arash21)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736878/medium/fd05611e841717b68d7c494b58eeb00a.png",
- "joined": "2021-05-03 16:50:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14736936",
- "username": "Nagihan",
- "fullName": "Nagihan Erbaş (Nagihan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14736936/medium/da62b14c0eb800dba5863fc2834f35f7.jpeg",
- "joined": "2021-05-03 17:39:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737034",
- "username": "Hyeo_n",
- "fullName": "Hyeo_n",
- "avatarUrl": "https://www.gravatar.com/avatar/6f7556096b5c4db5979cd960daa73107?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 19:54:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737126",
- "username": "KiBeRuS",
- "fullName": "KiBeRuS",
- "avatarUrl": "https://www.gravatar.com/avatar/af54e3eaa4b0748ffe96e109407fc501?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 21:48:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737170",
- "username": "pedr0.1",
- "fullName": "pedr0.1",
- "avatarUrl": "https://www.gravatar.com/avatar/75276e63cfd3d2c57437560609a8bd28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 23:08:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737304",
- "username": "tommrovi",
- "fullName": "tommr (tommrovi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737304/medium/7c139dcf13435f5400716746d18acc51.jpeg",
- "joined": "2021-05-04 02:46:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735878",
- "username": "KnowsCount",
- "fullName": "KnowsCount",
- "avatarUrl": "https://www.gravatar.com/avatar/e9bad5d32ab7ceabb15d5c92689925b8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 00:01:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14737354",
- "username": "mopheus",
- "fullName": "mopheus",
- "avatarUrl": "https://www.gravatar.com/avatar/795bcc36dfa80bc3f1412f62fdce30a4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 03:43:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737370",
- "username": "vitalik.mv.13cross",
- "fullName": "Vitto Gang (vitalik.mv.13cross)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737370/medium/48590bdefeea5905954dcf0793f12676.jpeg",
- "joined": "2021-05-04 03:54:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737456",
- "username": "mobin1398",
- "fullName": "Mobin (mobin1398)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737456/medium/076fa1a5de7808f091883768edc14981.jpeg",
- "joined": "2021-05-04 05:18:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737506",
- "username": "Fatorin",
- "fullName": "Fatorin",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737506/medium/2d0f76b581d1fef9ebf6e3a26f0faee2.png",
- "joined": "2021-05-04 06:03:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737524",
- "username": "Rasshepkin",
- "fullName": "Rasshepkin",
- "avatarUrl": "https://www.gravatar.com/avatar/ce43ec774ac109964b50f2124b80aab0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 06:19:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737644",
- "username": "DylanCONIN",
- "fullName": "conin dylan (DylanCONIN)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737644/medium/d981e7d9ae1b98b7e8a21245675fc0e0.jpg",
- "joined": "2021-05-04 07:58:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 3165
- },
- {
- "user": {
- "id": "14737668",
- "username": "shexhx0906",
- "fullName": "知最 (shexhx0906)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737668/medium/b4101bd6f1d00337cb0d1ebf676e4323.jpeg",
- "joined": "2021-05-04 08:11:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 289
- },
- {
- "user": {
- "id": "14737690",
- "username": "alireza8445",
- "fullName": "ali reza (alireza8445)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737690/medium/0b41ad06dec9747ab1b978e7432af22d.jpeg",
- "joined": "2021-05-04 08:38:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14737778",
- "username": "darksrlacc",
- "fullName": "darksrlacc",
- "avatarUrl": "https://www.gravatar.com/avatar/8529b28c92caf5e2d19b644a091e8fce?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 09:25:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737838",
- "username": "farukre",
- "fullName": "Faruk Urer (farukre)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737838/medium/7121319a2b515e6170c50820f96538c9.png",
- "joined": "2021-05-04 10:28:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 49
- },
- {
- "user": {
- "id": "14737902",
- "username": "ruthiel",
- "fullName": "Ruthiel Trevisan (ruthiel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737902/medium/e80d38870c2a31088c929bdee3c74491.jpeg",
- "joined": "2021-05-04 10:53:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737918",
- "username": "saeednajafi959",
- "fullName": "دنیای موازی (saeednajafi959)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737918/medium/c35be6100a6ddd43d7be39a9abb3ad8d.jpeg",
- "joined": "2021-05-04 11:18:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14737978",
- "username": "ZeroSlayer",
- "fullName": "ZeroSlayer",
- "avatarUrl": "https://www.gravatar.com/avatar/380c49ddbb967b5cc345f3f544059f5e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 11:59:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14738064",
- "username": "msprinceana",
- "fullName": "Mihai Mihai (msprinceana)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738064/medium/36ee3d9e8af2e019299e5513f0039c1e.jpeg",
- "joined": "2021-05-04 13:24:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735944",
- "username": "JoseLuisHerzS",
- "fullName": "JoseLuisHerzS",
- "avatarUrl": "https://www.gravatar.com/avatar/e63283022f8c5fbbf3b688d9d450501e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-03 01:50:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735846",
- "username": "weronicamc",
- "fullName": "Veronika Dudová (weronicamc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735846/medium/ade7898c29d686ea8682dbbe2cec816e.jpeg",
- "joined": "2021-05-02 23:59:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732012",
- "username": "FlavioEPimentel",
- "fullName": "Flávio E Pimentel (FlavioEPimentel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732012/medium/202a93142c6959ff5855813a8735d10a.png",
- "joined": "2021-04-29 22:26:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733556",
- "username": "chernymamba",
- "fullName": "chernymamba",
- "avatarUrl": "https://www.gravatar.com/avatar/ac1de2ebcc370eaac642897a460d901e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 20:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732022",
- "username": "k33r33r",
- "fullName": "k33r33r",
- "avatarUrl": "https://www.gravatar.com/avatar/2642170c278268e6070c7e21bec2f3d2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-29 17:38:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732192",
- "username": "sajadsm1979",
- "fullName": "Sajad Saraf-Moghadam (sajadsm1979)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732192/medium/bb9cb9241c6d42b09206ec449534d22f.jpeg",
- "joined": "2021-04-29 22:28:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732280",
- "username": "Brandonly1000",
- "fullName": "Brandon Ly (Brandonly1000)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732280/medium/ba8443c236c809ee8b2bf88d5da9706d.jpeg",
- "joined": "2021-04-30 00:49:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732326",
- "username": "yoav.shacham",
- "fullName": "יואב שחם (yoav.shacham)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732326/medium/66ae20d2b4f80439a484c8583c04579a.jpeg",
- "joined": "2021-04-30 01:42:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14732424",
- "username": "WUBAOYU",
- "fullName": "WUBAOYU",
- "avatarUrl": "https://www.gravatar.com/avatar/46770842d09b2550627b9248c530fdf5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 03:38:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 10,
- "negativeVotes": 0,
- "winning": 163
- },
- {
- "user": {
- "id": "14732454",
- "username": "Eliseowzy",
- "fullName": "WangZY (Eliseowzy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732454/medium/02ecbccec638f087235f25edb54b61e4.png",
- "joined": "2021-04-30 04:17:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 228
- },
- {
- "user": {
- "id": "14732520",
- "username": "matteo.boffo",
- "fullName": "Matteo Boffo (matteo.boffo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14732520/medium/5c3707bf4dd91f58d154eae8cab347dd.png",
- "joined": "2021-04-30 05:32:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733026",
- "username": "iborba",
- "fullName": "Israel Machado de Borba (iborba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733026/medium/ffb6aa67fea863e4898aa8a6e5c69e87.jpeg",
- "joined": "2021-04-30 10:52:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 68,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14733134",
- "username": "5rovic",
- "fullName": "5rovic",
- "avatarUrl": "https://www.gravatar.com/avatar/f861c4c39057970932d63c3e9759ddd3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 11:54:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733302",
- "username": "mandagala",
- "fullName": "mandagala",
- "avatarUrl": "https://www.gravatar.com/avatar/efc73254f033c8fbd2a69839cbd28454?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 14:09:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 61,
- "negativeVotes": 5,
- "winning": 0
- },
- {
- "user": {
- "id": "14733356",
- "username": "isadorasst",
- "fullName": "Isadora Tavares (isadorasst)",
- "avatarUrl": "https://www.gravatar.com/avatar/6a01ad71354d5af2ca10746a52f835ca?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 16:06:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733382",
- "username": "volkan2",
- "fullName": "volkan2",
- "avatarUrl": "https://www.gravatar.com/avatar/577aace7bd128ec8342b6c47c401e604?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 16:22:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733500",
- "username": "Ehsan1985",
- "fullName": "Ehsan1985",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733500/medium/7ee27652961f1750b613dae1397202b1.jpg",
- "joined": "2021-04-30 19:11:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733510",
- "username": "Tessoroma",
- "fullName": "Tessoroma",
- "avatarUrl": "https://www.gravatar.com/avatar/3bb8ef05e13c17a8318ef6ab154fa1b6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-30 19:26:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 19
- },
- {
- "user": {
- "id": "14733694",
- "username": "liugy",
- "fullName": "liugy",
- "avatarUrl": "https://www.gravatar.com/avatar/ee84f1f97a6a977fb3e4b526cccfc70b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 00:30:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735822",
- "username": "tsukasanomori",
- "fullName": "TM (tsukasanomori)",
- "avatarUrl": "https://www.gravatar.com/avatar/159bc9f99bc6f8b607acf7cd9c0c716d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 22:44:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 3,
- "winning": 114
- },
- {
- "user": {
- "id": "14734892",
- "username": "Kutsalwador",
- "fullName": "Kutsalwador",
- "avatarUrl": "https://www.gravatar.com/avatar/0e8d910780be135b30f8a24c6f2f7947?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 01:51:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735762",
- "username": "ivanmaznak",
- "fullName": "Иван Мазняк (ivanmaznak)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735762/medium/97a4221450b51adfd5d9ba72171bc900.png",
- "joined": "2021-05-02 21:00:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735650",
- "username": "olcay6535",
- "fullName": "olcay6535",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735650/medium/4341c54d8d7e44932f04fc7a3988005b.png",
- "joined": "2021-05-02 17:39:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735538",
- "username": "feidar",
- "fullName": "feidar",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14735538/medium/35ad0eec06bbf6d8889c8e0b7cc50c05.jpeg",
- "joined": "2021-05-02 14:58:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 11,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14735294",
- "username": "Bernard_T",
- "fullName": "Bernard Tan (Bernard_T)",
- "avatarUrl": "https://www.gravatar.com/avatar/13b077930bac3e190d67692a8076414d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-02 09:50:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734966",
- "username": "emih.antonijo",
- "fullName": "Antonijo Emih (emih.antonijo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734966/medium/d8828625eab1f5da6826a88b8bb62b94.jpeg",
- "joined": "2021-05-02 03:48:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734944",
- "username": "cringkamp020",
- "fullName": "C FR (cringkamp020)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734944/medium/e7472a21cad9c623f91536e9daeb41a2.png",
- "joined": "2021-05-02 03:20:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734748",
- "username": "kenliu322",
- "fullName": "kenliu322",
- "avatarUrl": "https://www.gravatar.com/avatar/180ac0a58f9783eda6cf1217f7f7f81f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 21:29:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733758",
- "username": "Hamed441",
- "fullName": "Hamed441",
- "avatarUrl": "https://www.gravatar.com/avatar/e4ea59c9865f3797beacc451b3b32b5d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 01:51:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734482",
- "username": "kleberlima",
- "fullName": "kleberlima",
- "avatarUrl": "https://www.gravatar.com/avatar/7c9e1252522d501ab6adc892ec18352f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-01 15:33:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734478",
- "username": "munozorellanan90",
- "fullName": "nathaly de los angeles muñoz orellana (munozorellanan90)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734478/medium/089f2aa3d243d0980304bebc4b8c9e42.png",
- "joined": "2021-05-01 15:30:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734372",
- "username": "oliver-soeser",
- "fullName": "Oliver Söser (oliver-soeser)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734372/medium/4ef6d9d2327019661cc5b9191ce2ad32.png",
- "joined": "2021-05-01 14:05:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14734234",
- "username": "bangbh",
- "fullName": "Bohyun Bang (bangbh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14734234/medium/bf059263d9072bed946895eda4d418ec.jpeg",
- "joined": "2021-05-01 11:27:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733942",
- "username": "amrux",
- "fullName": "Amr Ali (amrux)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733942/medium/44d5aa6a83c77e1c0881a272e70f4e22.jpeg",
- "joined": "2021-05-01 06:03:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14733806",
- "username": "PlutoXI",
- "fullName": "Pluto (PlutoXI)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733806/medium/e09f8d8ae5c644cb039288e6af0a18cf.jpeg",
- "joined": "2021-05-01 03:22:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 364
- },
- {
- "user": {
- "id": "14724864",
- "username": "deepweed",
- "fullName": "deepweed",
- "avatarUrl": "https://www.gravatar.com/avatar/237a5f302ee077d06f14071dbf8e4775?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 09:27:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724692",
- "username": "adamlaska",
- "fullName": "Адамласка (adamlaska)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724692/medium/7e5d108d470e50bde1397858e2e63f31.jpeg",
- "joined": "2021-05-15 05:53:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738168",
- "username": "KS.Park",
- "fullName": "Kyusuh Park (KS.Park)",
- "avatarUrl": "https://www.gravatar.com/avatar/36596a0ecfe66ec6e15351ecf01b3d78?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-04 15:19:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710992",
- "username": "nihadermina2010",
- "fullName": "Nihad Mahovic (nihadermina2010)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710992/medium/47ec1a0e2ee639420cf6fbf258eefd7f.jpg",
- "joined": "2021-04-14 01:43:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709210",
- "username": "mm.shirinnezhad",
- "fullName": "Mohammad Mehdi (mm.shirinnezhad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709210/medium/4f91166a36102f000bfd7c53769952aa.jpeg",
- "joined": "2021-04-12 19:19:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709216",
- "username": "iliyaashrafi",
- "fullName": "iliyaashrafi",
- "avatarUrl": "https://www.gravatar.com/avatar/71c700fd076a14976925411a9716706f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 19:36:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709226",
- "username": "Hishler",
- "fullName": "Hishler",
- "avatarUrl": "https://www.gravatar.com/avatar/1d641208816a310273798a47294a4393?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 20:00:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709234",
- "username": "Maha_balieash",
- "fullName": "Maha_balieash",
- "avatarUrl": "https://www.gravatar.com/avatar/aa338505ce5ec408182ea0801620ce2e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 20:17:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709246",
- "username": "Mymaridae",
- "fullName": "Alexandre Mota (Mymaridae)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709246/medium/b89620beb67e38c9d555c753c3b01784.jpeg",
- "joined": "2021-05-10 14:43:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709304",
- "username": "car63",
- "fullName": "car63",
- "avatarUrl": "https://www.gravatar.com/avatar/55f3c079c98cd77a06d13de9dcec8167?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 21:51:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709308",
- "username": "andortree",
- "fullName": "Ziang Chen (andortree)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709308/medium/0069b2309f3e553d592492b2980c4fc2.jpg",
- "joined": "2021-04-12 22:05:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 13
- },
- {
- "user": {
- "id": "14709490",
- "username": "jtrhb",
- "fullName": "jtrhb",
- "avatarUrl": "https://www.gravatar.com/avatar/f456a9a88ae6bcdc91f4a8f1beb2e39e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 01:22:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709730",
- "username": "ArkadiaDev",
- "fullName": "Massimiliano Pighi (ArkadiaDev)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709730/medium/2d56160896fed391c482f06f729b0f58.jpeg",
- "joined": "2021-04-13 04:42:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14709736",
- "username": "A-R-V",
- "fullName": "A-R-V",
- "avatarUrl": "https://www.gravatar.com/avatar/0715bda33b948822cc269d7c526c3e28?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 04:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709844",
- "username": "Bohdan_Hoisa",
- "fullName": "Arbeneen (Bohdan_Hoisa)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709844/medium/aea7b7ba52207c45f8dadf36a8d43f71.jpeg",
- "joined": "2021-04-13 06:20:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710314",
- "username": "Almadepato",
- "fullName": "Almadepato",
- "avatarUrl": "https://www.gravatar.com/avatar/f725d06abbea057d95a1db4daf9775e3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-13 12:22:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710538",
- "username": "StayCoolDK",
- "fullName": "Frankieboy93 (StayCoolDK)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710538/medium/43522513b3c357f3de6b6e0e0be597aa.jpg",
- "joined": "2021-04-13 15:41:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14710684",
- "username": "sort0905291712",
- "fullName": "蔡加盟 (sort0905291712)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14710684/medium/9fa52441908f577f867b51a43ac00aac.jpg",
- "joined": "2021-04-13 18:40:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711482",
- "username": "rfcheung",
- "fullName": "Ring Fai Cheung (rfcheung)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711482/medium/541ada9b93f309d11b396afb79efbce5.jpeg",
- "joined": "2021-04-14 08:25:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708840",
- "username": "dsantin95",
- "fullName": "dsantin95",
- "avatarUrl": "https://www.gravatar.com/avatar/f54449d40f99af23a219cfdf97eb7113?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 12:38:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711642",
- "username": "kenowlee",
- "fullName": "Ronaldo Santos (kenowlee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711642/medium/cc1ab7ad933f06b0fc99de7457c6b3c9.jpeg",
- "joined": "2021-04-14 10:26:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711740",
- "username": "cakirbyrm77",
- "fullName": "B. Alp Çakır (cakirbyrm77)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711740/medium/69a977f19dd2b244307801c85fd448be.jpeg",
- "joined": "2021-04-14 11:41:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711782",
- "username": "zxc.zxc122222",
- "fullName": "بندر المطيري (zxc.zxc122222)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711782/medium/df77868137f4e7885e9cb614df5d4481.jpeg",
- "joined": "2021-04-14 12:33:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14711810",
- "username": "malzebu",
- "fullName": "Gustavo BJ (malzebu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711810/medium/cd03191615e232f82ead1a505c725868.jpeg",
- "joined": "2021-04-14 13:23:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 9,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14712008",
- "username": "clembappe",
- "fullName": "Clemzer (clembappe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712008/medium/14474686f1dfa0b727f91acf51f46d8e.jpg",
- "joined": "2021-04-14 17:05:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712126",
- "username": "maudmcok",
- "fullName": "Maud (maudmcok)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712126/medium/9c0f3fa093a2a2354b275243d3061276.png",
- "joined": "2021-04-14 19:28:11"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14712250",
- "username": "XiG",
- "fullName": "Steve Hu (XiG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712250/medium/cf8f4951e71da77514310bcd86b2a825.jpeg",
- "joined": "2021-04-14 22:15:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 78
- },
- {
- "user": {
- "id": "14712452",
- "username": "liujingran",
- "fullName": "liujingran",
- "avatarUrl": "https://www.gravatar.com/avatar/10911cd16e304479e47b38dce533cbf3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 03:03:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712604",
- "username": "zazadjo",
- "fullName": "zazadjo",
- "avatarUrl": "https://www.gravatar.com/avatar/dd69e93d6809444464f55340db534f08?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 05:07:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712650",
- "username": "vahidkm86",
- "fullName": "vahid kazemian moghaddam (vahidkm86)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712650/medium/fc40402b0c476b09b1a38fd944f53dff.jpeg",
- "joined": "2021-04-15 05:34:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712730",
- "username": "Jameslee1989",
- "fullName": "Jameslee1989",
- "avatarUrl": "https://www.gravatar.com/avatar/e0c596f756f98eab7e666671d099f6e1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 06:41:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712840",
- "username": "FelipeMaitan",
- "fullName": "FelipeMaitan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14712840/medium/cfd99eb4dba39d60d3f78be48724cebe.png",
- "joined": "2021-04-15 08:18:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 28,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712944",
- "username": "jrovez",
- "fullName": "jrovez",
- "avatarUrl": "https://www.gravatar.com/avatar/454973b99bdf0550b3af3babdfbcb86f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 09:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14712994",
- "username": "bordakito",
- "fullName": "bordakito",
- "avatarUrl": "https://www.gravatar.com/avatar/d45cd8bd66936fba5670921c72bc970c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 10:14:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14709176",
- "username": "AboHamed",
- "fullName": "Abo Hamed (AboHamed)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14709176/medium/c6b325862fa60edc08bb896cccd6eef5.jpg",
- "joined": "2021-04-12 18:36:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708720",
- "username": "DanielLopezSainz",
- "fullName": "DanielLopezSainz",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708720/medium/61502a29fddc4e6ceca1e731a593dfc3.png",
- "joined": "2021-04-12 10:56:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713364",
- "username": "Miqpico",
- "fullName": "Miqpico",
- "avatarUrl": "https://www.gravatar.com/avatar/5215d09f67517d96d858b9d5b69b6c6d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 15:13:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707282",
- "username": "galuhoracel",
- "fullName": "Galuh Panduriksa Buana (galuhoracel)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707282/medium/3850731d92534b6096de77e15292eb27.jpg",
- "joined": "2021-04-11 09:46:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705502",
- "username": "Majid959",
- "fullName": "Majid959",
- "avatarUrl": "https://www.gravatar.com/avatar/9333ec4d3f01f3a82c8cfd538bc5c55d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 21:12:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705630",
- "username": "markfherwig",
- "fullName": "markfherwig",
- "avatarUrl": "https://www.gravatar.com/avatar/9676acf7dc15de5553c0b07e8be9dfd5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-09 23:52:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705756",
- "username": "near_",
- "fullName": "near_",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705756/medium/291add958fcab6d68ed7be8fdf4fbc73.jpg",
- "joined": "2021-04-10 03:24:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14705794",
- "username": "arusatava",
- "fullName": "Arusatava Diсokusay (arusatava)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705794/medium/7f35490773280819aaf885372c69589a.jpeg",
- "joined": "2021-04-10 04:28:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 198
- },
- {
- "user": {
- "id": "14705796",
- "username": "seladigitaltrading",
- "fullName": "jakob medina (seladigitaltrading)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14705796/medium/45f9b46fda15609f204ff40ccb176998.jpg",
- "joined": "2021-04-10 04:05:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 4,
- "negativeVotes": 1,
- "winning": 37
- },
- {
- "user": {
- "id": "14705886",
- "username": "jsssyc",
- "fullName": "jsssyc",
- "avatarUrl": "https://www.gravatar.com/avatar/80a4686cdfc3ce699c4ce9031432b3e8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 06:21:40"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 180
- },
- {
- "user": {
- "id": "14706332",
- "username": "AlexD10S",
- "fullName": "alexd10s (AlexD10S)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706332/medium/bcc3c3226163167446b575fe615e96d2.jpeg",
- "joined": "2021-04-10 14:08:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706522",
- "username": "SebastianJorg",
- "fullName": "SebastianJorg",
- "avatarUrl": "https://www.gravatar.com/avatar/31cfe7d7873b42f0a790c9bc9a3f1d8f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 17:33:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14706566",
- "username": "amagiddmxh",
- "fullName": "Amagi DDmxh (amagiddmxh)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14706566/medium/8e4b6fd81dc8bcf21955428c0277ec3c.jpg",
- "joined": "2021-04-10 18:31:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 54
- },
- {
- "user": {
- "id": "14706598",
- "username": "uricata",
- "fullName": "uricata",
- "avatarUrl": "https://www.gravatar.com/avatar/c89771e0a5a03ba90fe8c3cbf7c5a798?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 19:25:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 25
- },
- {
- "user": {
- "id": "14706680",
- "username": "Eliasdf",
- "fullName": "Eliasdf",
- "avatarUrl": "https://www.gravatar.com/avatar/07d060decf321695437230d032a0ebcf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-10 21:58:24"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14706884",
- "username": "Touka228",
- "fullName": "Touka228",
- "avatarUrl": "https://www.gravatar.com/avatar/30a47d6969a44689faeebb0a7c2f9a2b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 02:37:51"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707204",
- "username": "962241455",
- "fullName": "weichao (962241455)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707204/medium/db57ab04312e7e22708d09efc96b367a.png",
- "joined": "2021-04-11 08:45:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707230",
- "username": "M1ting",
- "fullName": "AKA.miting (M1ting)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707230/medium/ee5de7436e01ca1fae88b235cfa6adec.png",
- "joined": "2021-04-11 09:06:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 173
- },
- {
- "user": {
- "id": "14707288",
- "username": "canerdundar",
- "fullName": "canerdundar",
- "avatarUrl": "https://www.gravatar.com/avatar/0a322693a378cac44da61d515f4e001d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 10:03:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708696",
- "username": "wmswms938",
- "fullName": "Moshi Wei (wmswms938)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708696/medium/2303f2ec8760f6fa46ad1117e61d23b5.jpg",
- "joined": "2021-04-12 10:30:54"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 91
- },
- {
- "user": {
- "id": "14707394",
- "username": "AntonioPelli",
- "fullName": "AntonioPelli",
- "avatarUrl": "https://www.gravatar.com/avatar/ef8a216fb930be15aece0e72e6128cb9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 11:29:45"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707408",
- "username": "Stev110",
- "fullName": "Stev110",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707408/medium/06bb638d445604925d0bcaa58768558b.png",
- "joined": "2021-04-11 11:43:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707446",
- "username": "rafael007",
- "fullName": "rafael007",
- "avatarUrl": "https://www.gravatar.com/avatar/12ac8242f0b549cafb2e414cc29ebef5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 12:29:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707448",
- "username": "byoriolserra",
- "fullName": "byoriolserra",
- "avatarUrl": "https://www.gravatar.com/avatar/b69cf204eb793bc36d6755f9ee7938b5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 12:29:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 100
- },
- {
- "user": {
- "id": "14707492",
- "username": "Yousuf_104",
- "fullName": "Yousuf_104",
- "avatarUrl": "https://www.gravatar.com/avatar/52d618e862dd6e76c70ef87fe4cc3628?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 13:15:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707524",
- "username": "kali77",
- "fullName": "kali77",
- "avatarUrl": "https://www.gravatar.com/avatar/4f6ac0259323a40da42e4d0da87100f8?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-11 13:59:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14707756",
- "username": "Khapouey",
- "fullName": "Nicolas Bueche (Khapouey)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14707756/medium/e47aebc801e052936c4f617c8a70d1af.jpeg",
- "joined": "2021-04-11 18:36:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708002",
- "username": "Yongy-vers",
- "fullName": "Yongy-vers",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708002/medium/158184073958629bcb405fed4f8cd0e6.png",
- "joined": "2021-04-12 01:09:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708254",
- "username": "nilsdethlefsen",
- "fullName": "nilsdethlefsen",
- "avatarUrl": "https://www.gravatar.com/avatar/5c1b5ce5f7a6b8c097158de47f6e8bc2?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-12 05:05:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708306",
- "username": "eln_ferdi_17120",
- "fullName": "Ferdi Elmas (eln_ferdi_17120)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708306/medium/7db13590f56454f87cc7593a2e0d6d6a.jpeg",
- "joined": "2021-04-12 05:50:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708418",
- "username": "binanceczrahim",
- "fullName": "Rahim Pourrahimi (binanceczrahim)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708418/medium/8ec39aea97de9826679a60cf359138f8.jpg",
- "joined": "2021-04-12 07:23:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708432",
- "username": "karozkan",
- "fullName": "Özkan Göktaş (karozkan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708432/medium/fb9fc661d43315af3a7ed65bf1bedc04.jpeg",
- "joined": "2021-04-12 07:30:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 32
- },
- {
- "user": {
- "id": "14708658",
- "username": "adrian.olguin-ext",
- "fullName": "Adrian OLGUIN (adrian.olguin-ext)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708658/medium/b4843de838470aeb9a3c36510431bbb1.jpeg",
- "joined": "2021-10-30 13:49:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14708670",
- "username": "antoniodepaos",
- "fullName": "Toño Pallarés (antoniodepaos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708670/medium/088fdcb540084a684d4a8f04acfd7144.jpg",
- "joined": "2021-04-12 10:19:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 242
- },
- {
- "user": {
- "id": "14713310",
- "username": "aravion",
- "fullName": "aravion",
- "avatarUrl": "https://www.gravatar.com/avatar/34c265ee06f81b5c7b922dfc9c0e3280?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 14:27:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713486",
- "username": "Mr.sajad_shirazi",
- "fullName": "Sajad Shirazi (Mr.sajad_shirazi)",
- "avatarUrl": "https://www.gravatar.com/avatar/998b7b85f1a4c127a0d1d0e7257320a7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 17:01:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724502",
- "username": "barcaglobalservices",
- "fullName": "barcaglobalservices",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724502/medium/5270f924a12ffb55ce9f1f060c95ac51.png",
- "joined": "2021-04-24 03:44:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722162",
- "username": "Gengshanhe",
- "fullName": "Gengshanhe",
- "avatarUrl": "https://www.gravatar.com/avatar/f760f521a90eb200cae08c77323280f1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-22 07:35:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718088",
- "username": "lh430051",
- "fullName": "lh430051",
- "avatarUrl": "https://www.gravatar.com/avatar/ad89f50a49f4f4be32a2e9b6ee053e99?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 10:01:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718106",
- "username": "xenwilliam",
- "fullName": "XENWILLIAM (xenwilliam)",
- "avatarUrl": "https://www.gravatar.com/avatar/0193309e1c9718da74e8031173710153?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 10:21:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 74
- },
- {
- "user": {
- "id": "14718170",
- "username": "Mhakimfh",
- "fullName": "Mhakimfh",
- "avatarUrl": "https://www.gravatar.com/avatar/145c239816a75ad35e8c56040b904c8d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 11:02:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718240",
- "username": "sallimibehbood20",
- "fullName": "Behbood Sallimi (sallimibehbood20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718240/medium/292875e637ccc216bc7b67d5b1a8afba.jpeg",
- "joined": "2021-04-19 12:04:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718510",
- "username": "truewarlock",
- "fullName": "Truewarlock (truewarlock)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718510/medium/ee2b5821e0cfda1fb4e191cb0e3d89be.png",
- "joined": "2021-04-19 16:35:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718672",
- "username": "Al7eroglu",
- "fullName": "Al7eroglu",
- "avatarUrl": "https://www.gravatar.com/avatar/98c51c1cc547518ee67f9e4539ebbad5?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 20:05:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718748",
- "username": "piglet1989",
- "fullName": "piglet1989",
- "avatarUrl": "https://www.gravatar.com/avatar/a0931dda1a7e9e0fc46c8287fec78762?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 22:00:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718940",
- "username": "Vojtch",
- "fullName": "Vojtch",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718940/medium/18bee628523146dfcfbac68c4cb8367d.png",
- "joined": "2021-04-20 02:08:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14719400",
- "username": "SammyJkns",
- "fullName": "SammyJkns",
- "avatarUrl": "https://www.gravatar.com/avatar/0fb696919afd133eb20ef7beffe4c1f3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 08:12:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720048",
- "username": "dkngalam86",
- "fullName": "dkngalam86",
- "avatarUrl": "https://www.gravatar.com/avatar/ce4a0cbcc02580f25fa4b2f0d7301f5c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-20 17:34:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720182",
- "username": "Mosaibah",
- "fullName": "Mosaibah",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720182/medium/abb7b48d789902353a50db327f236806.jpeg",
- "joined": "2021-04-20 20:35:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720212",
- "username": "Mehdiamirirad",
- "fullName": "MehdiAmirirad (Mehdiamirirad)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720212/medium/cfed5497d031cd84d81707be8efd1bd8.jpg",
- "joined": "2021-04-22 11:11:14"
- },
- "languages": [
- {
- "id": "fa",
- "name": "Persian"
- }
- ],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 8,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14720896",
- "username": "KishPan",
- "fullName": "LEBEAU Pacôme (KishPan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14720896/medium/d59de134453124a475302b52d5e7ab54.jpg",
- "joined": "2021-04-21 09:17:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 62
- },
- {
- "user": {
- "id": "14721452",
- "username": "abedirhan",
- "fullName": "abedirhan",
- "avatarUrl": "https://www.gravatar.com/avatar/45790482c9a92962180e914b267a0dcd?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-21 18:26:58"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722610",
- "username": "aldobr80",
- "fullName": "aldobr80",
- "avatarUrl": "https://www.gravatar.com/avatar/263ec92e408bff9a7f60e23302d85363?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-22 13:41:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718060",
- "username": "patrykremiszewski95",
- "fullName": "Patryk Remiszewski (patrykremiszewski95)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14718060/medium/703056468685f001cd29edf00e36549b.png",
- "joined": "2021-04-19 09:47:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722914",
- "username": "vitalikovalchuk",
- "fullName": "Vitalii Ko (vitalikovalchuk)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722914/medium/6bab43c8cbf3e596e7d209f1ce7eed33.jpeg",
- "joined": "2021-04-22 20:41:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14722958",
- "username": "colstuwjx",
- "fullName": "Jacky Wu (colstuwjx)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14722958/medium/bbb68b3330ed7ad572b7e987330078c4.jpg",
- "joined": "2021-04-25 23:33:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723100",
- "username": "JohnHeatz",
- "fullName": "Erick Gomez (JohnHeatz)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723100/medium/572e16e10fed6641f8f3fae258157f53.jpeg",
- "joined": "2021-04-23 00:48:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723446",
- "username": "DoGame5",
- "fullName": "DoGame5",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723446/medium/7dacda0b245cc793a6e0f617b699b92a.png",
- "joined": "2021-06-24 12:27:03"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723736",
- "username": "CDrosos",
- "fullName": "Christopher Drosos (CDrosos)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723736/medium/9ed57e05be46fff5a97dba4af259a3ea.jpg",
- "joined": "2021-04-23 11:09:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723820",
- "username": "NOT_DECENT",
- "fullName": "NOT_DECENT",
- "avatarUrl": "https://www.gravatar.com/avatar/61aef0952edd798ba69afa6c386334b9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 12:07:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723852",
- "username": "Jesucripto",
- "fullName": "mcjotaemedj (Jesucripto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723852/medium/f84506bd3a8ceab96b024dd73d8d7c55.jpg",
- "joined": "2021-04-23 12:29:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723930",
- "username": "Ebisuzawa_Kurumi",
- "fullName": "Yuki Takeya (Ebisuzawa_Kurumi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723930/medium/2d6585159bd9080dcc59df93a2056fe7.jpeg",
- "joined": "2021-04-23 13:32:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14723976",
- "username": "hadifarzipour",
- "fullName": "hadi farzipour (hadifarzipour)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14723976/medium/36b4fdd006e31b3568685828aad778c5.jpeg",
- "joined": "2021-04-23 14:26:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724040",
- "username": "novak.primoz88",
- "fullName": "Primoz Novak (novak.primoz88)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724040/medium/e251041b3f0c7892719ebf6dd03925ea.jpeg",
- "joined": "2021-04-23 15:54:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 42
- },
- {
- "user": {
- "id": "14724324",
- "username": "BadaevDenis",
- "fullName": "BadaevDenis",
- "avatarUrl": "https://www.gravatar.com/avatar/f2ad363045553d75ec1354568b36e51a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-23 22:36:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724348",
- "username": "diksinbaba",
- "fullName": "Bitcoin Gezgini (diksinbaba)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724348/medium/29098b09a0fc57983cd5f9cad8e8728e.jpeg",
- "joined": "2021-04-23 23:04:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724390",
- "username": "robsonp2109",
- "fullName": "robsonp2109",
- "avatarUrl": "https://www.gravatar.com/avatar/159ffdb921fd1535caee08517f904554?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-24 00:34:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14724498",
- "username": "arashmo1990",
- "fullName": "Arash Mo (arashmo1990)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14724498/medium/23abcfc2a156b50d443e9e7eb65d3447.png",
- "joined": "2021-04-24 03:45:01"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718082",
- "username": "subekti_87",
- "fullName": "Subekti (subekti_87)",
- "avatarUrl": "https://www.gravatar.com/avatar/86c71ab75f5d8fbf99bcecd64e034fd4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 09:54:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14718040",
- "username": "BXS1001",
- "fullName": "BXS1001",
- "avatarUrl": "https://www.gravatar.com/avatar/021246c2d0d014a20365c486197f1735?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 09:28:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 1,
- "winning": 23
- },
- {
- "user": {
- "id": "14713532",
- "username": "Espn",
- "fullName": "Espn",
- "avatarUrl": "https://www.gravatar.com/avatar/00fa4a281618b853eaef2c6481ee9ff7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-06-12 22:42:48"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715690",
- "username": "chrischengdzonglee",
- "fullName": "Nru Dzong (chrischengdzonglee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715690/medium/b16e71c8140694d52d36a746d33d78d7.jpeg",
- "joined": "2021-04-17 11:55:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 276
- },
- {
- "user": {
- "id": "14713644",
- "username": "rizv033",
- "fullName": "rizv033",
- "avatarUrl": "https://www.gravatar.com/avatar/89d5cc937d98db6813966b32073e282b?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:02:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713656",
- "username": "jeffersonqs",
- "fullName": "jeffersonqs",
- "avatarUrl": "https://www.gravatar.com/avatar/2d3c9b727f4415e178a76ac7e2ec517a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:11:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713664",
- "username": "joaopaulomoraes",
- "fullName": "João Paulo Moraes (joaopaulomoraes)",
- "avatarUrl": "https://www.gravatar.com/avatar/4405735f6f3129e0286d9d43e7b460d0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-15 20:25:09"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14713748",
- "username": "flyng12",
- "fullName": "flyng12",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14713748/medium/c9ee0ecb2c8ecdb140bc6fdf8e7002b4.jpg",
- "joined": "2021-04-15 23:08:55"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714186",
- "username": "WizerPlay",
- "fullName": "WizerPlay",
- "avatarUrl": "https://www.gravatar.com/avatar/7aec6156a0a5905d2d262a5338eb49ee?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 09:12:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714470",
- "username": "samedmertoglu",
- "fullName": "Samed Mertoğlu (samedmertoglu)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714470/medium/1da0c147be6e060995a0bfb20ed7a92f.jpeg",
- "joined": "2021-04-16 10:23:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 829
- },
- {
- "user": {
- "id": "14714636",
- "username": "dvincent157",
- "fullName": "David Vincent (dvincent157)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714636/medium/9f04d33ad23f86ccf3a50ed2ef84e3ef.png",
- "joined": "2021-04-16 13:17:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14714742",
- "username": "medved2940",
- "fullName": "Миша Колбасов (medved2940)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14714742/medium/84509228b3f68874da3bb8089ee82ec8.jpg",
- "joined": "2021-04-16 14:48:30"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714940",
- "username": "2-hill",
- "fullName": "2-hill",
- "avatarUrl": "https://www.gravatar.com/avatar/4faf6f5f29f8583d0337617a6fcdb000?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 18:37:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14714982",
- "username": "Kfar",
- "fullName": "Kfar",
- "avatarUrl": "https://www.gravatar.com/avatar/f826f7f5f38f24349fdd473c333e2faf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-16 19:48:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 32
- },
- {
- "user": {
- "id": "14715154",
- "username": "AURICHEST",
- "fullName": "AURICHEST",
- "avatarUrl": "https://www.gravatar.com/avatar/be1895e0f0de06d5fd9a2dc15821bca4?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 00:34:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715238",
- "username": "woryakarimi7995",
- "fullName": "وریا کریمی (woryakarimi7995)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715238/medium/9574e9228d0a3c841402b47b24ade382.jpg",
- "joined": "2021-04-17 02:58:32"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715364",
- "username": "ethanglezbarreto",
- "fullName": "ETHANGB González (ethanglezbarreto)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715364/medium/ba72b5832f36c2daf1c95a751c15b32d.jpg",
- "joined": "2021-04-17 05:44:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715384",
- "username": "kemallbangus123",
- "fullName": "Muhamad Kemal Pebriansyah (kemallbangus123)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715384/medium/1882a3be104737a70d57a761e223b721.jpeg",
- "joined": "2021-04-17 06:21:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 7,
- "negativeVotes": 2,
- "winning": 0
- },
- {
- "user": {
- "id": "14715694",
- "username": "faresallan",
- "fullName": "國王FARES (faresallan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14715694/medium/8145f1cd9b6908d9e96233abac00e53f.jpeg",
- "joined": "2021-04-17 12:02:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717736",
- "username": "Milo4ka",
- "fullName": "Milo4ka",
- "avatarUrl": "https://www.gravatar.com/avatar/3ae11cea942d03283e004c796c936316?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-19 05:04:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717068",
- "username": "realtho",
- "fullName": "daniellesniak (realtho)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717068/medium/a598805684a9d5a1fcf970131ce59963.jpeg",
- "joined": "2021-04-18 15:33:21"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 4
- },
- {
- "user": {
- "id": "14717710",
- "username": "damianmartelletti",
- "fullName": "Damian Martelletti (damianmartelletti)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717710/medium/519dad3fb3793a299c0c24f5e9ec46f6.jpg",
- "joined": "2021-04-19 04:44:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14717614",
- "username": "juniorphb",
- "fullName": "Fco Veras Jr (juniorphb)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717614/medium/7a7c2429a4f8c7d13e760203abc0a708.jpeg",
- "joined": "2021-04-19 02:56:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 1,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717562",
- "username": "PeterTakahashi",
- "fullName": "Peter Takahashi (PeterTakahashi)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717562/medium/0a655e422c3b96351c89bb35120cdb02.jpeg",
- "joined": "2021-04-19 01:58:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717554",
- "username": "daviswong888",
- "fullName": "立即看以下連結 (daviswong888)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717554/medium/c8d726281f2436bec681f541c5654779.jpeg",
- "joined": "2021-04-19 01:37:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14717284",
- "username": "merthoca",
- "fullName": "Mert Hoca Efendi ile Sahura Doğru (merthoca)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14717284/medium/7f8c88453b5f3a9f5fe732b0beeaf699.jpeg",
- "joined": "2021-04-18 20:18:08"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 2
- },
- {
- "user": {
- "id": "14717086",
- "username": "hendddd",
- "fullName": "hendddd",
- "avatarUrl": "https://www.gravatar.com/avatar/15f0a9c5bc03284f34a4550aaa6f507d?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 16:10:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716942",
- "username": "EmalHamza",
- "fullName": "EmalHamza",
- "avatarUrl": "https://www.gravatar.com/avatar/935cf54759907b371e411100e93e1bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 12:58:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715830",
- "username": "robbisg",
- "fullName": "robbisg",
- "avatarUrl": "https://www.gravatar.com/avatar/0c2e75f7e279b1132a4cf1e49075b0a6?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 14:20:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716836",
- "username": "HerrisonF",
- "fullName": "HerrisonF",
- "avatarUrl": "https://www.gravatar.com/avatar/b6004c320677400f09b742b4c184ae0c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 11:22:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716740",
- "username": "Felipao31",
- "fullName": "Felipao31",
- "avatarUrl": "https://www.gravatar.com/avatar/378116e3462f59f845ce864703d77a63?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 10:09:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716724",
- "username": "3Juhwan",
- "fullName": "3Juhwan",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14716724/medium/9fa3d45ad0f2a09825dbbdd17edf9a2a.jpeg",
- "joined": "2021-04-18 10:24:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716408",
- "username": "hokbe",
- "fullName": "hokbe",
- "avatarUrl": "https://www.gravatar.com/avatar/1b5cf03b2a63dbc9c895a1fcc92e854f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-18 05:10:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14716180",
- "username": "LuchoDio",
- "fullName": "LuchoDio",
- "avatarUrl": "https://www.gravatar.com/avatar/f80c88b7f7d2cfc226ab59b7c86a6e1f?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 22:45:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14715874",
- "username": "thanhtiktok",
- "fullName": "thanhtiktok",
- "avatarUrl": "https://www.gravatar.com/avatar/c8b96071ea6b74d33f3a7715cc8b9228?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-04-17 14:57:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738074",
- "username": "AleksRG",
- "fullName": "Aleksandar Georgiev (AleksRG)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738074/medium/20137575cc3af9d5601ae8706e4d90f0.jpeg",
- "joined": "2021-05-05 04:00:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14738174",
- "username": "viniciusfortuna",
- "fullName": "Vinicius Fortunato (viniciusfortuna)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14738174/medium/a23ee260095a908ffd92c2aa8dd6d7e6.jpeg",
- "joined": "2021-05-04 15:35:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 8,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14778950",
- "username": "diplomaticone66",
- "fullName": "diplomaticone66",
- "avatarUrl": "https://www.gravatar.com/avatar/2c8a4711e2887877dfbbba99b5c09a6e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-30 14:45:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763818",
- "username": "fontainepr9",
- "fullName": "Pierre Fontaine (fontainepr9)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763818/medium/7fe833564b2595abbcb1908ceada87bf.png",
- "joined": "2021-05-19 08:37:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761046",
- "username": "Marcello087",
- "fullName": "Marcello087",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761046/medium/e8c304e5afacfaab6c6d8242294739bc.png",
- "joined": "2021-05-17 11:37:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761440",
- "username": "Azael.",
- "fullName": "Azael.",
- "avatarUrl": "https://www.gravatar.com/avatar/5185f1e89dbda1e6c6e031f9c0d4b92e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 16:35:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761562",
- "username": "Klodbeer",
- "fullName": "Klodbeer",
- "avatarUrl": "https://www.gravatar.com/avatar/19f68ab96ec38c94649343c8fb1a87a0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 18:24:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761818",
- "username": "ilogyk",
- "fullName": "ilogyk",
- "avatarUrl": "https://www.gravatar.com/avatar/0247ebbb97cc06d67eece0dfab3bfd00?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 01:15:35"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761822",
- "username": "PomaPoma1",
- "fullName": "PomaPoma1",
- "avatarUrl": "https://www.gravatar.com/avatar/479a18bfde9075f956427ebd61645f9e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 01:24:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761864",
- "username": "stevensun9046",
- "fullName": "Steven Sun (stevensun9046)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14761864/medium/040069d06c6dc89e287ef60bde6c7968.png",
- "joined": "2021-05-18 02:15:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14762030",
- "username": "hendra.herviawan",
- "fullName": "M Hendra Herviawan (hendra.herviawan)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762030/medium/5b0aca21e7e52bd490df7b009d924f40.jpeg",
- "joined": "2021-05-18 04:56:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762352",
- "username": "Atefemoe",
- "fullName": "Atef Emor (Atefemoe)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762352/medium/e7ee7b58349b6ed082fc8fdc8409d13f.jpg",
- "joined": "2021-05-18 09:03:52"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762488",
- "username": "4191235872",
- "fullName": "4191235872",
- "avatarUrl": "https://www.gravatar.com/avatar/f1e8401423d8f23d8aa8dd3fccf961db?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 10:27:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14762626",
- "username": "mykolasalata7",
- "fullName": "Mykola Salata (mykolasalata7)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762626/medium/ef496f3afd20230d8775e3cfb6175c14.jpeg",
- "joined": "2021-05-18 11:56:05"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14762702",
- "username": "heathcliff",
- "fullName": "heathcliff",
- "avatarUrl": "https://www.gravatar.com/avatar/5af0e75a21458996716e217cd4e9e123?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 13:00:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 188
- },
- {
- "user": {
- "id": "14762802",
- "username": "IvanaEth",
- "fullName": "IvanaEth",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14762802/medium/bf27721f20f228816129b84335301a7f.jpg",
- "joined": "2021-05-18 14:54:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763166",
- "username": "coencoem",
- "fullName": "Wiro Dharmo (coencoem)",
- "avatarUrl": "https://www.gravatar.com/avatar/ef0936564d2d522606fd250f0700ecd0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-18 21:59:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763728",
- "username": "polowong5",
- "fullName": "wong polo (polowong5)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763728/medium/d720628694a0e5f789553c9cf1526327.jpeg",
- "joined": "2021-05-19 07:46:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14763978",
- "username": "rayxeden",
- "fullName": "Ray Eden (rayxeden)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763978/medium/4f9c92629cbbd74784e018e397fbf629.png",
- "joined": "2021-05-19 10:17:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 88
- },
- {
- "user": {
- "id": "14760876",
- "username": "Flipper98rus",
- "fullName": "Flipper98rus",
- "avatarUrl": "https://www.gravatar.com/avatar/f287e36edaf044d5cc1fefcd8aea59fa?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 09:38:57"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764350",
- "username": "mosfetti",
- "fullName": "mosfetti",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764350/medium/d84a713e1a14175198ac72212f6b3d05.png",
- "joined": "2021-05-19 14:25:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764370",
- "username": "RivaSergio",
- "fullName": "RivaSergio",
- "avatarUrl": "https://www.gravatar.com/avatar/fcdaf3e9afb9e8a3e31562fc79984d61?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-19 14:35:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764738",
- "username": "semprepk13",
- "fullName": "Sempre Patricia Kelly (semprepk13)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764738/medium/dc4b07533773785e8353c86472ba6fe0.jpeg",
- "joined": "2021-05-19 21:38:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14764846",
- "username": "mrvuong.bitcoin",
- "fullName": "Ngọc Vương Trương (mrvuong.bitcoin)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14764846/medium/68d83ddd0632b9ff5d0ab6b85b038317.jpeg",
- "joined": "2021-05-20 00:06:25"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765250",
- "username": "syamjayaraj",
- "fullName": "Syamlal C M (syamjayaraj)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765250/medium/bf911d033e60adbf046de5f66fb0b8a0.jpeg",
- "joined": "2021-05-20 06:57:56"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 2,
- "negativeVotes": 0,
- "winning": 16
- },
- {
- "user": {
- "id": "14765612",
- "username": "mintleaf",
- "fullName": "Shawna Lee (mintleaf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14765612/medium/95146c9af272a6aa0fe1ee9060d19ab4.jpeg",
- "joined": "2021-05-20 11:18:22"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14765916",
- "username": "nsuki",
- "fullName": "Mert Gülmüş (nsuki)",
- "avatarUrl": "https://www.gravatar.com/avatar/f18495d1aba6ae6350fa10a1d87847f0?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 15:31:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766056",
- "username": "george.vslv",
- "fullName": "George V (george.vslv)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766056/medium/154d4f8776f49bc3b56ac57c0c2b02c9.png",
- "joined": "2021-05-20 17:44:43"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766176",
- "username": "Kussov",
- "fullName": "Kussov",
- "avatarUrl": "https://www.gravatar.com/avatar/2ca94e6cc967b1cc45808fa81b5b5ba3?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-20 20:23:37"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766386",
- "username": "shamekhi.ali",
- "fullName": "ali shamekhi (shamekhi.ali)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14766386/medium/5a6c7247fbce5af5ba2830e1b988f2c6.png",
- "joined": "2021-05-21 01:29:17"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14766920",
- "username": "Trinhquan1988",
- "fullName": "Trinhquan1988",
- "avatarUrl": "https://www.gravatar.com/avatar/5cf9a2ff70e8524d5e747dc410cfb79e?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-21 09:53:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767082",
- "username": "necouo",
- "fullName": "Nemanja Stefanović (necouo)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767082/medium/0fccf3a82fbadce0ebb0435a070a3bdf.png",
- "joined": "2021-05-21 13:56:02"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767094",
- "username": "joshuaoliverdouglas",
- "fullName": "Joshua Douglas (joshuaoliverdouglas)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767094/medium/3114c0487b19c05afa8dc283c94c3a76.png",
- "joined": "2021-05-21 12:26:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 11
- },
- {
- "user": {
- "id": "14767322",
- "username": "Matcenko",
- "fullName": "Pavel Matsenko (Matcenko)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767322/medium/660180b8eea7b731dad55d908dbb6b3f.jpeg",
- "joined": "2021-05-21 16:14:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14761026",
- "username": "Dagestan13",
- "fullName": "Dagestan13",
- "avatarUrl": "https://www.gravatar.com/avatar/343224e689e6d7b63884741fdeb69ca7?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 11:22:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760746",
- "username": "centaurian",
- "fullName": "centaurian",
- "avatarUrl": "https://www.gravatar.com/avatar/1f48400ab68be9e2848fb312c9dc6230?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 08:15:19"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767666",
- "username": "chengDu20",
- "fullName": "Huan Rainy (chengDu20)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767666/medium/47a20ae9302d71170d1613138da1e5f1.png",
- "joined": "2021-05-21 23:52:12"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758900",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/49090229849f3c49d5049a1434605122?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 02:12:41"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757760",
- "username": "makshatsenko",
- "fullName": "makshatsenko",
- "avatarUrl": "https://www.gravatar.com/avatar/2485f32a34bd303fa6e0ffb75178dfd9?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 05:23:07"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757788",
- "username": "zeririzakaria10",
- "fullName": "ninja games (zeririzakaria10)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757788/medium/58c27779ad2481afce1af14d09bed24f.png",
- "joined": "2021-05-15 05:46:29"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757860",
- "username": "hzpws",
- "fullName": "hzpws",
- "avatarUrl": "https://www.gravatar.com/avatar/c8fcc3a1a580329a970a57d9cc5708a1?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 07:02:16"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757938",
- "username": "WuGi89",
- "fullName": "Wojciech Gebicki (WuGi89)",
- "avatarUrl": "https://www.gravatar.com/avatar/3c23fdb40027692ff48eeccc2750850a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-25 06:26:10"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757940",
- "username": "androx",
- "fullName": "androx",
- "avatarUrl": "https://www.gravatar.com/avatar/ec1937d5a33dc737e4500e7735ce74f0?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 08:51:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 23
- },
- {
- "user": {
- "id": "14758100",
- "username": "Wisheechia",
- "fullName": "Marco Abate (Wisheechia)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758100/medium/420cea9c5114f42804b9bfde2e438c38.png",
- "joined": "2021-05-15 10:18:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758114",
- "username": "sandsbai",
- "fullName": "sandsbai",
- "avatarUrl": "https://www.gravatar.com/avatar/5fe0e525079b61509b15de7f880e153a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 10:42:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758430",
- "username": "Maitha01",
- "fullName": "Maitha01",
- "avatarUrl": "https://www.gravatar.com/avatar/740fbf77f98b5235c9b65b1c5f607bdf?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-15 15:38:15"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758456",
- "username": "AmirDeveloper",
- "fullName": "Amirjon Rajabov (AmirDeveloper)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758456/medium/b93489a116fc73d4aed09dddf8e29541.png",
- "joined": "2021-05-15 15:56:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758486",
- "username": "martinh2",
- "fullName": "martinh2",
- "avatarUrl": "https://www.gravatar.com/avatar/8110ea29ba7e021792151be9e17763ae?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-10-29 12:32:06"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758532",
- "username": "manu55a",
- "fullName": "Mariano F. (manu55a)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758532/medium/a8628399954ffeaa70d3614014c851f6.png",
- "joined": "2021-05-15 17:03:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758828",
- "username": "shiftcm",
- "fullName": "Shift CM (shiftcm)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758828/medium/789fac20720b9fedb35242f98b6d37f0.jpeg",
- "joined": "2021-05-16 00:41:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758844",
- "username": "Oldleo76",
- "fullName": "Oldleo76",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758844/medium/011d0875b2d6dab274acc9e2d028dbfc.jpg",
- "joined": "2021-05-16 01:07:34"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758876",
- "username": "yezgan_16",
- "fullName": "yezgan_16",
- "avatarUrl": "https://www.gravatar.com/avatar/821b8362ce99a75fa0b2196d4ba13706?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 01:47:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14758970",
- "username": "JJulles",
- "fullName": "JJulles",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14758970/medium/2f15c96da08e09ca5186337bcebc19a8.png",
- "joined": "2021-05-16 04:40:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 15
- },
- {
- "user": {
- "id": "14760728",
- "username": "amicod9r",
- "fullName": "AwiR (amicod9r)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760728/medium/2905324afa04498f40bdcde399b96d47.jpeg",
- "joined": "2021-05-17 07:53:47"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759220",
- "username": "arturlesniewski",
- "fullName": "Artur Leśniewski (arturlesniewski)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759220/medium/ce0dfc426c882d10a157bb152afe3a16.png",
- "joined": "2021-05-16 07:03:04"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 829
- },
- {
- "user": {
- "id": "14759230",
- "username": "mojtabafazelee",
- "fullName": "مجتبی فاضلیث (mojtabafazelee)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759230/medium/85e221e3f6d74ef8ff725baa0da4e36e.png",
- "joined": "2021-05-16 07:15:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759260",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/5b96ffce5b4fd476cec3890b501a5e35?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 09:13:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14759534",
- "username": "ThTy56",
- "fullName": "Thomas T. (ThTy56)",
- "avatarUrl": "https://www.gravatar.com/avatar/4cac9a501952bdb258c2b786bac7335a?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 11:07:13"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759618",
- "username": "PanteaNegra",
- "fullName": "Maryana Pantea (PanteaNegra)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759618/medium/ed23a37bb50ec664979f34807af1ed31.jpg",
- "joined": "2021-05-16 12:24:36"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759682",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/b93e7425aa8f14a9be4e163b0dc1d651?s=48&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 13:20:23"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759692",
- "username": "ank23",
- "fullName": "ank23",
- "avatarUrl": "https://www.gravatar.com/avatar/bc8ae154070703d7052271a75af85090?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-16 13:27:53"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14759828",
- "username": "FSJGus",
- "fullName": "Gustavo Lima (FSJGus)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759828/medium/2ab0d05afed7232420ed8bb10abe5513.jpeg",
- "joined": "2021-05-16 15:45:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14759974",
- "username": "onurf",
- "fullName": "Onur F. Özben (onurf)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14759974/medium/f4393009ab051483d1e3fb647bff34bb.png",
- "joined": "2021-05-16 18:13:00"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 5
- },
- {
- "user": {
- "id": "14760114",
- "username": "keinstn",
- "fullName": "keinstn",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760114/medium/5b3fa243c923f93b7a7c7560a00b69cc.jpeg",
- "joined": "2021-05-16 21:23:50"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 3,
- "negativeVotes": 0,
- "winning": 6
- },
- {
- "user": {
- "id": "14760278",
- "username": "1st.tati",
- "fullName": "Wisavaponr Tati (1st.tati)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760278/medium/757ae458617fb31da8ec9b4d38fcf55e.jpeg",
- "joined": "2021-05-17 01:16:28"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760436",
- "username": "Samarth",
- "fullName": "Samarth",
- "avatarUrl": "https://www.gravatar.com/avatar/113b48269478627f239bdabbfd8c9f93?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-17 03:51:38"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760586",
- "username": "floandy",
- "fullName": "Florian Krippner (floandy)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760586/medium/57f87df59f24a82082b8210539f6e3c4.jpeg",
- "joined": "2021-05-17 05:38:39"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14760662",
- "username": "stepanov0808200",
- "fullName": "MoolCooV (stepanov0808200)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14760662/medium/0f50d9b003a29eec10bcce9ced1e43e4.jpeg",
- "joined": "2021-05-17 06:57:46"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767556",
- "username": "JenMerino",
- "fullName": "Jen (JenMerino)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767556/medium/8e9b6fc5b596521ce4e332d78fd7df40.jpeg",
- "joined": "2021-05-21 21:12:18"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14767676",
- "username": "julianocbmfc",
- "fullName": "Juliano Barcelos (julianocbmfc)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14767676/medium/788df8caf2776168c8c27cfa6b801cb0.jpeg",
- "joined": "2021-05-22 00:07:31"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14757574",
- "username": "anilgr.agr",
- "fullName": "anil gr (anilgr.agr)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14757574/medium/85827672f55103be185e54169d693067.jpeg",
- "joined": "2021-05-15 02:23:59"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14776866",
- "username": "Piter666",
- "fullName": "Piter666",
- "avatarUrl": "https://www.gravatar.com/avatar/23e91ffae232d25364aa0dd4c8d8eaff?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-28 16:14:14"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774492",
- "username": "osmanliperde46",
- "fullName": "Osmanlı Perde (osmanliperde46)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774492/medium/bac7237fa5c3b19cf42e68a90e98e016.jpeg",
- "joined": "2021-05-27 00:56:33"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14774556",
- "username": "yipu0v0",
- "fullName": "yipu0v0",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774556/medium/dc85181aa42b536fe5c1130fbbd398b0.png",
- "joined": "2021-05-27 02:05:27"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 87
- },
- {
- "user": {
- "id": "14774728",
- "username": "matyukhin04",
- "fullName": "М М (matyukhin04)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14774728/medium/29acb7ec37f7d43284d880ce09e68776.png",
- "joined": "2021-05-27 04:52:42"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775032",
- "username": "fadeltd",
- "fullName": "Fadel Trivandi Dipantara (fadeltd)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775032/medium/6055b8485797870254f6f76e17aafd3c.jpeg",
- "joined": "2021-05-27 09:00:49"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 6,
- "negativeVotes": 1,
- "winning": 0
- },
- {
- "user": {
- "id": "14775092",
- "username": "alexsenchin",
- "fullName": "alexsenchin",
- "avatarUrl": "https://www.gravatar.com/avatar/9aab7074203a4c051ab2a23acf134c6c?s=96&d=https%3A%2F%2Fcrowdin.com%2Fimages%2Fuser-picture.png",
- "joined": "2021-05-27 09:47:44"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 10
- },
- {
- "user": {
- "id": "14775170",
- "username": "sy.199.as",
- "fullName": "احمد مجدمي (sy.199.as)",
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775170/medium/2db7266809e5769a4057c423167dedc6.jpeg",
- "joined": "2021-05-27 10:34:20"
- },
- "languages": [],
- "translated": 0,
- "target": 0,
- "approved": 0,
- "voted": 0,
- "positiveVotes": 0,
- "negativeVotes": 0,
- "winning": 0
- },
- {
- "user": {
- "id": "14775416",
- "username": "REMOVED_USER",
- "fullName": "REMOVED_USER",
- "avatarUrl": "https://www.gravatar.com/avatar/6497883f93acdfc4506f4fffe6d43a0a?s=48&d